diff --git a/.github/workflows/test_python.yml b/.github/workflows/test_python.yml index d52b6522..23f1c2a8 100644 --- a/.github/workflows/test_python.yml +++ b/.github/workflows/test_python.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 @@ -29,6 +29,7 @@ jobs: python -m pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi python -m pip install git+https://github.com/CMIP-Data-Request/CMIP7_DReq_Software.git + python -m pip install git+https://github.com/ESGF/esgf-vocab.git - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names @@ -39,5 +40,4 @@ jobs: run: | export CMIP7_DR_API_CONFIGFILE=$PWD/dr2xml/dr_interface/CMIP7_config python3 -m data_request_api.command_line.config offline true - for f in $(ls tests/test_*/__init__.py); do echo $f; python3 -m unittest $f; done - for f in $(ls tests/test_*.py); do echo $f; python3 -m unittest $f; done + bash launch_tests.sh diff --git a/.gitignore b/.gitignore index 2f422181..d8274d96 100644 --- a/.gitignore +++ b/.gitignore @@ -26,7 +26,7 @@ pycallgraph_tree/ dr2xml_*.xml pycallgraph_use.py .coverage -create_file_defs.sh +create_file_defs*.sh tests/htmlcov tests/test*/output_* /sphinx/build/ diff --git a/dr2xml/Xwrite.py b/dr2xml/Xwrite.py index 08040f36..ba983c3e 100644 --- a/dr2xml/Xwrite.py +++ b/dr2xml/Xwrite.py @@ -430,10 +430,13 @@ def write_xios_file_def(filename, svars_per_table, year, dummies, skipped_vars_p required_components = internal_dict["required_model_components"] if not isinstance(required_components, list): required_components = [required_components, ] + required_components = [elt.lower() for elt in required_components] allowed_components = internal_dict["additional_allowed_model_components"] if not isinstance(allowed_components, list): allowed_components = [allowed_components, ] + allowed_components = [elt.lower() for elt in allowed_components] actual_components = source_type.split(" ") + actual_components = [elt.lower() for elt in actual_components] ok = True for c in required_components: if c not in actual_components: @@ -547,30 +550,33 @@ def write_xios_file_def_for_svars_list(vars_list, hgrid, xml_file_definition, fr internal_dict = get_settings_values("internal") context = internal_dict["context"] prefix = internal_dict["ping_variables_prefix"] - # Initialize xml file - xml_file = DR2XMLElement(tag="file", default_tag="file_output", - output_freq=freq, split_freq=split_freq, - split_freq_format=split_freq_format, split_start_offset=split_start_offset, - split_end_offset=split_end_offset, split_last_date=split_last_date, grid=grid_description, - grid_label=grid_label, nominal_resolution=grid_resolution, variable=vars_list, - context=context, table_id=table) - # Add several attributes - for name, value in sorted(list(attributes)): - xml_file.append(wrv(name, value)) - non_stand_att = internal_dict["non_standard_attributes"] - for name in sorted(list(non_stand_att)): - xml_file.append(wrv(name, non_stand_att[name])) - # For each variable, add the elements about the variable - found = False - found_A = False - found_AH = False - found_begin_A = False - freq_ps = vars_list[0].frequency + # Check if this file should be written + real_vars_list = list() for svar in sorted(vars_list): rep = find_alias(svar, skipped_vars_per_table, debug) if rep is not None: + real_vars_list.append((svar, rep)) + if len(real_vars_list) > 0: + # Initialize xml file + xml_file = DR2XMLElement(tag="file", default_tag="file_output", + output_freq=freq, split_freq=split_freq, + split_freq_format=split_freq_format, split_start_offset=split_start_offset, + split_end_offset=split_end_offset, split_last_date=split_last_date, grid=grid_description, + grid_label=grid_label, nominal_resolution=grid_resolution, variable=[real_vars_list[0][0], ], + context=context, table_id=table) + # Add several attributes + for name, value in sorted(list(attributes)): + xml_file.append(wrv(name, value)) + non_stand_att = internal_dict["non_standard_attributes"] + for name in sorted(list(non_stand_att)): + xml_file.append(wrv(name, non_stand_att[name])) + # For each variable, add the elements about the variable + found_A = False + found_AH = False + found_begin_A = False + freq_ps = real_vars_list[0][0].frequency + for (svar, rep) in sorted(real_vars_list): alias, alias_ping = rep - found = True if svar.spatial_shp.startswith("XY-A") or svar.spatial_shp.startswith("S-A"): found_begin_A = True if svar.spatial_shp in ["XY-A", "S-A"]: @@ -584,12 +590,11 @@ def write_xios_file_def_for_svars_list(vars_list, hgrid, xml_file_definition, fr xml_file.append(end_field) actually_written_vars.append((svar.label, svar.long_name, svar.stdname, svar.mipTable, svar.frequency, svar.Priority, svar.spatial_shp)) - # Add content to xml_file to out - if found: + # Add content to xml_file to out if found_begin_A: # create a field_def entry for surface pressure # print "Searching for ps for var %s, freq %s="%(alias,freq) - sv_psol = get_simplevar("ps", table, freq_ps) + sv_psol = get_simplevar("ps", real_vars_list[0][0]) if sv_psol: # if not sv_psol.cell_measures : sv_psol.cell_measures = "cell measure is not specified in DR "+ diff --git a/dr2xml/__init__.py b/dr2xml/__init__.py index 8379055b..be39fbdf 100644 --- a/dr2xml/__init__.py +++ b/dr2xml/__init__.py @@ -652,6 +652,7 @@ def generate_file_defs(year, enddate, context, pingfiles=None, dummies='include' from .settings_interface import get_settings_values + init_settings = get_settings_values("init") internal_settings = get_settings_values("internal") print("\n {}\n*".format(50 * "*")) @@ -663,7 +664,7 @@ def generate_file_defs(year, enddate, context, pingfiles=None, dummies='include' # TBS# from os import path as os_path # TBS# prog_path=os_path.abspath(os_path.split(__file__)[0]) - print("* %29s" % "{} Data Request version: ".format(internal_settings["data_request_used"]), get_dr_object("get_data_request").get_version()) + print("* %29s" % "{} Data Request version: ".format(init_settings["data_request_used"]), get_dr_object("get_data_request").get_version()) print("\n*\n {}".format(50 * "*")) logger = get_logger() diff --git a/dr2xml/analyzer.py b/dr2xml/analyzer.py index b9b2bf15..f4967f77 100644 --- a/dr2xml/analyzer.py +++ b/dr2xml/analyzer.py @@ -256,6 +256,15 @@ def analyze_cell_time_method(cm, label, table): " for %15s in table %s is well handled by 'detect_missing'" % (label, table)) operation = "average" detect_missing = True + # ---------------------------------------------------------------------------------------------------------------- + elif "time: mean where land" in cm: + # Weighted Time Mean on Land Tiles + add_value_in_list_config_variable("cell_method_warnings", + ('time: mean where land', label, table)) + logger.info("Note: assuming that 'time: mean where land' " + " for %15s in table %s is well handled by 'detect_missing'" % (label, table)) + operation = "average" + detect_missing = True # ---------------------------------------------------------------------------------------------------------------- elif "time: mean where crops" in cm: # [amc-twm]: Weighted Time Mean on Crops (uniquement des diff --git a/dr2xml/dr_interface/C3S.py b/dr2xml/dr_interface/C3S.py index c58ef42a..3a2beea6 100644 --- a/dr2xml/dr_interface/C3S.py +++ b/dr2xml/dr_interface/C3S.py @@ -18,7 +18,7 @@ from .definition import SimpleDim as SimpleDimBasic from dr2xml.settings_interface import get_settings_values -data_request_path = get_settings_values("internal", "data_request_path") +data_request_path = get_settings_values("init", "data_request_path") if data_request_path is not None: data_request_filename = os.path.basename(data_request_path) data_request_module = SourceFileLoader(data_request_filename, data_request_path).load_module(data_request_filename) @@ -88,6 +88,9 @@ def get_cmorvars_list(self, **kwargs): rep[id].add(grid) return rep + def get_ps_data(self, reference_var): + return None + def initialize_data_request(): global data_request diff --git a/dr2xml/dr_interface/CMIP6.py b/dr2xml/dr_interface/CMIP6.py index 246cee81..4b9621d2 100644 --- a/dr2xml/dr_interface/CMIP6.py +++ b/dr2xml/dr_interface/CMIP6.py @@ -21,15 +21,15 @@ from .definition import SimpleObject from .definition import SimpleDim as SimpleDimBasic from .definition import SimpleCMORVar as SimpleCMORVarBasic -from ..projects.dr2xml import format_sizes -from ..utils import Dr2xmlError, print_struct, is_elt_applicable, convert_string_to_year +from dr2xml.projects.dr2xml_func import format_sizes +from dr2xml.utils import Dr2xmlError, print_struct, is_elt_applicable, convert_string_to_year from dr2xml.settings_interface import get_settings_values, get_values_from_internal_settings -data_request_path = get_settings_values("internal", "data_request_path") +data_request_path = get_settings_values("init", "data_request_path") if data_request_path is not None: sys.path.insert(0, data_request_path) -data_request_content_version = get_settings_values("internal", "data_request_content_version") +data_request_content_version = get_settings_values("init", "data_request_content_version") if data_request_content_version not in ["latest_stable", "stable", "latest"]: reset_manifest = True os.environ["DRQ_CONFIG_DIR"] = data_request_content_version @@ -177,7 +177,7 @@ def _check_requestitem_for_exp_and_year(self, ri, experiment, year, filter_on_re if ri_applies_to_experiment: logger.debug("Year considered: %s %s" % (year, type(year))) - if year is None: + if year is False: rep = True endyear = None logger.debug(" ..applies because arg year is None") @@ -514,6 +514,25 @@ def _get_vars_by_request_link(self, request_link, pmax): request_link = [request_link, ] return self.scope.varsByRql(request_link, pmax) + def get_ps_data(self, reference_var): + rep = None + table = reference_var.mipTable + freq = reference_var.frequency + if freq in ["3h", "3hr", "3hrPt"]: + rep = dict(label='ps', mipTable='E3hrPt') + elif freq in ["6h", "6hr"]: + rep = dict(label='ps', mipTable='6hrLev') + elif freq in ["day", ]: + rep = dict(label='ps', mipTable='CFday') + elif freq in ["mon", "1mo"]: + rep = dict(label='ps', mipTable='Emon') + elif freq in ["subhr", ]: + if table in ["CFsubhr", ]: + rep = dict(label='ps', mipTable='CFsubhr') + else: + rep = dict(label='ps', mipTable='Esubhr') + return rep + data_request = None diff --git a/dr2xml/dr_interface/CMIP7.py b/dr2xml/dr_interface/CMIP7.py index ea6d59ac..6391621e 100644 --- a/dr2xml/dr_interface/CMIP7.py +++ b/dr2xml/dr_interface/CMIP7.py @@ -18,11 +18,11 @@ from .definition import SimpleCMORVar as SimpleCMORVarBasic from .definition import SimpleDim as SimpleDimBasic from dr2xml.settings_interface import get_settings_values -from ..utils import Dr2xmlError, is_elt_applicable +from dr2xml.utils import Dr2xmlError, is_elt_applicable -data_request_path = get_settings_values("internal", "data_request_path") +data_request_path = get_settings_values("init", "data_request_path") sys.path.append(data_request_path) -os.environ["CMIP7_DR_API_CONFIGFILE"] = get_settings_values("internal", "data_request_config") +os.environ["CMIP7_DR_API_CONFIGFILE"] = get_settings_values("init", "data_request_config") from data_request_api.query.vocabulary_server import ConstantValueObj from data_request_api.query.data_request import DataRequest as CMIP7DataRequest from data_request_api.content.dump_transformation import get_transformed_content @@ -100,7 +100,12 @@ def get_element_uid(self, id=None, elt_type=None, error_msg=None, raise_on_error if elt_type is None: raise ValueError("Unable to find out uid with elt_type None") if id is None: - return self.data_request.get_elements_per_kind(elt_type) + rep = self.data_request.get_elements_per_kind(elt_type) + if elt_type in ["variable", ]: + rep = [SimpleCMORVar.get_from_dr(elt, id=elt.id, **kwargs) for elt in rep] + elif elt_type in ["dimension", ]: + rep = [SimpleDim.get_from_dr(elt, id=elt.id) for elt in rep] + return rep else: if elt_type in ["dim", ]: elt_type = "dimension" @@ -137,26 +142,29 @@ def get_single_levels_list(self): def get_grids_dict(self): rep = OrderedDict() dims = self.get_list_by_id("coordinates_and_dimensions") - for dim in dims.items: + for dim in dims: rep[dim.name] = dim.id return rep def get_dimensions_dict(self): rep = OrderedDict() - for spshp in self.get_list_by_id("spatial_shape").items: - dims = [elt.name for elt in spshp.dimensions] - new_dims = list() - for key in ["longitude", "latitude"]: - if key in dims: - dims.remove(key) - new_dims.append(key) - new_dims.extend(sorted(dims)) - new_dims = "|".join([str(dim) for dim in new_dims]) - rep[new_dims] = str(spshp.name) + excluded_spshapes = get_settings_values("internal", "excluded_spshapes_lset") + for spshp in self.get_list_by_id("spatial_shape"): + shape_name = str(spshp.name) + if shape_name not in excluded_spshapes: + dims = [elt.name for elt in spshp.dimensions] + new_dims = list() + for key in ["longitude", "latitude"]: + if key in dims: + dims.remove(key) + new_dims.append(key) + new_dims.extend(sorted(dims)) + new_dims = "|".join([str(dim) for dim in new_dims]) + rep[new_dims] = str(shape_name) return rep def _is_timesubset_applicable(self, year, select_on_year, time_subset): - if year is None or select_on_year is None: + if year is False or select_on_year is False: return None, None else: return ((time_subset.start is None or (time_subset.start <= int(year))) and @@ -166,9 +174,11 @@ def _get_filtering_elements(self, experiment=None, variable=None): internal_dict = get_settings_values("internal") request_dict_all_of_any = dict(opportunities=internal_dict["select_included_opportunities"], variable_groups=internal_dict["select_included_vargroups"], + experiment_groups=internal_dict["select_included_expgroups"], max_priority_level=internal_dict["select_max_priority"]) not_request_dict_any = dict(opportunity=internal_dict["select_excluded_opportunities"], - variable_groups=internal_dict["select_excluded_vargroups"]) + variable_groups=internal_dict["select_excluded_vargroups"], + experiment_groups=internal_dict["select_excluded_expgroups"]) select_mips = internal_dict["select_mips"] if len(select_mips) > 0: request_dict_all_of_any["mip"] = select_mips @@ -218,12 +228,17 @@ def get_endyear_for_cmorvar(self, cmorvar, experiment, year, internal_dict): else: return max(time_subsets) + def get_ps_data(self, reference_var): + rep = dict(label="ps", frequency=reference_var.frequency, spatial_shp=reference_var.spatial_shp, + temporal_shp=reference_var.temporal_shp) + return rep + def initialize_data_request(): global data_request if data_request is None: - internal_dict = get_settings_values("internal") - data_request_content_version = internal_dict["data_request_content_version"] + init_dict = get_settings_values("init") + data_request_content_version = init_dict["data_request_content_version"] content = get_transformed_content(version=data_request_content_version, force_retrieve=False) data_request = DataRequest(CMIP7DataRequest.from_separated_inputs(**content), print_DR_errors=True, @@ -266,14 +281,17 @@ def get_from_dr(cls, input_var, **kwargs): cell_measures = [cell_measures, ] else: cell_measures = [cell_measures.name, ] + cell_measures = " ".join([str(elt) for elt in cell_measures]) cell_methods = input_var.cell_methods.cell_methods + official_label = str(input_var.branded_variable_name) logger = get_logger() - logger.debug(f"Variable considered: {input_var.name}") + logger.debug(f"Variable considered: {input_var.name} (branded name {input_var.branded_variable_name}, official label {official_label})") return cls(from_dr=True, - type=input_var.type, + type="cmor", modeling_realm=[realm.id for realm in input_var.modelling_realm], label=input_var.physical_parameter.name, mipVarLabel=input_var.physical_parameter.name, + official_label=official_label, label_without_psuffix=input_var.physical_parameter.name, label_non_ambiguous=input_var.name, frequency=input_var.cmip7_frequency.name, @@ -291,7 +309,8 @@ def get_from_dr(cls, input_var, **kwargs): temporal_shp=input_var.temporal_shape.name, id=input_var.id, cmvar=input_var, - Priority=data_request.data_request.find_priority_per_variable(input_var) + Priority=data_request.data_request.find_priority_per_variable(input_var), + region=input_var.region ) diff --git a/dr2xml/dr_interface/__init__.py b/dr2xml/dr_interface/__init__.py index 22d73009..10fd8e49 100644 --- a/dr2xml/dr_interface/__init__.py +++ b/dr2xml/dr_interface/__init__.py @@ -46,7 +46,7 @@ def load_correct_dr(): global data_request, DataRequest, initialize_data_request, get_data_request, \ normalize_grid, SimpleDim, SimpleObject, SimpleCMORVar - data_request_version = get_settings_values("internal", "data_request_used") + data_request_version = get_settings_values("init", "data_request_used") if data_request_version in ["CMIP6", ]: from .CMIP6 import data_request, DataRequest, initialize_data_request, get_data_request, \ diff --git a/dr2xml/dr_interface/definition.py b/dr2xml/dr_interface/definition.py index 1ed049b6..a191622a 100644 --- a/dr2xml/dr_interface/definition.py +++ b/dr2xml/dr_interface/definition.py @@ -136,6 +136,9 @@ def find_exp_end_year(exp_endyear, end_year=False): def get_cmorvars_list(self, **kwargs): return dict() + def get_ps_data(self, reference_var): + raise NotImplementedError() + class ListWithItems(list): @@ -198,7 +201,7 @@ def __init__(self, type=False, modeling_realm=list(), grids=[""], label=None, mi cell_methods=None, cell_measures=None, spatial_shp=None, temporal_shp=None, experiment=None, Priority=1, mip_era=False, prec="float", missing=1.e+20, cmvar=None, ref_var=None, mip=None, sdims=dict(), comments=None, coordinates=None, cm=False, id=None, flag_meanings=None, flag_values=None, - **kwargs): + region="undef", official_label=None, extravar=None, **kwargs): self.type = type self.modeling_realm = modeling_realm self.set_modeling_realms = set() @@ -231,12 +234,18 @@ def __init__(self, type=False, modeling_realm=list(), grids=[""], label=None, mi self.prec = prec self.missing = missing self.cmvar = cmvar # corresponding CMORvar, if any + self.extravar = extravar # corresponding CMORvar, if any self.ref_var = ref_var self.comments = comments self.coordinates = coordinates self.id = id self.flag_meanings = flag_meanings self.flag_values = flag_values + self.region = region + if official_label is None: + self.official_label = self.label + else: + self.official_label = official_label super(SimpleCMORVar, self).__init__(**kwargs) def set_attributes(self, **kwargs): @@ -265,7 +274,7 @@ def __gt__(self, other): return self.label > other.label def __str__(self): - return (f"SimpleCMORVar {self.label} of priority {self.Priority} " + return (f"SimpleCMORVar {self.label} of type {self.type} and priority {self.Priority} " f"(with standard name {self.stdname} and units {self.units})") def __repr__(self): @@ -287,7 +296,8 @@ def get_from_extra(cls, input_var, mip_era=None, freq=None, table=None, **kwargs cell_methods=input_var["cell_methods"], cell_measures=input_var["cell_measures"], positive=input_var["positive"], Priority=float(input_var[mip_era.lower() + "_priority"]), label_without_psuffix=input_var["out_name"], - coordinates=input_var.get("dimensions", None)) + coordinates=input_var.get("dimensions", None), + extravar=input_var) return cls(**input_var_dict) diff --git a/dr2xml/dr_interface/no.py b/dr2xml/dr_interface/no.py index c94cbb8e..25bde0b8 100644 --- a/dr2xml/dr_interface/no.py +++ b/dr2xml/dr_interface/no.py @@ -53,6 +53,9 @@ def get_grids_dict(self): def get_dimensions_dict(self): return OrderedDict() + def get_ps_data(self, reference_var): + return None + def initialize_data_request(): global data_request diff --git a/dr2xml/grids.py b/dr2xml/grids.py index d11630fb..b3672a4a 100644 --- a/dr2xml/grids.py +++ b/dr2xml/grids.py @@ -318,7 +318,7 @@ def create_axis_from_dim(dim, labels, axis_ref): constructs generating CMIP6 requested attributes """ axis_id = "DR_" + dim.label + "_" + axis_ref - axis_name = dim.name + axis_name = dim.out_name if axis_id in get_config_variable("axis_defs"): return axis_id, axis_name # @@ -327,7 +327,7 @@ def create_axis_from_dim(dim, labels, axis_ref): dim_name = None label = None if dim.type not in ["character", ]: - if dim.requested not in ['', ]: + if dim.requested not in ['', 'undef']: nb = len(dim.requested.split()) value = "(0,{})[ {} ]".format(nb, dim.requested.strip()) if isinstance(dim.boundsRequested, list): diff --git a/dr2xml/laboratories/__init__.py b/dr2xml/laboratories/__init__.py index 9098c7ae..275526de 100644 --- a/dr2xml/laboratories/__init__.py +++ b/dr2xml/laboratories/__init__.py @@ -18,8 +18,8 @@ def initialize_laboratory_settings(): global laboratory_source if laboratory_source is None: from dr2xml.settings_interface import get_settings_values - internal_dict = get_settings_values("internal") - institution_id = internal_dict["institution_id"] + init_dict = get_settings_values("init") + institution_id = init_dict["institution_id"] if institution_id in ["CNRM-CERFACS", "CNRM", "lfpw"]: from . import CNRM_CERFACS laboratory_source = CNRM_CERFACS @@ -27,7 +27,7 @@ def initialize_laboratory_settings(): from . import IPSL laboratory_source = IPSL else: - laboratory_used = internal_dict["laboratory_used"] + laboratory_used = init_dict["laboratory_used"] if laboratory_used is not None: if os.path.isfile(laboratory_used): laboratory_source = SourceFileLoader(os.path.basename(laboratory_used), diff --git a/dr2xml/pingfiles_interface.py b/dr2xml/pingfiles_interface.py index fa3493c0..5cb9b41c 100644 --- a/dr2xml/pingfiles_interface.py +++ b/dr2xml/pingfiles_interface.py @@ -258,6 +258,9 @@ def ping_file_for_realms_list(context, svars, lrealms, path_special, dummy="fiel label = v.label_non_ambiguous else: label = v.label_without_psuffix + logger.info("Found the following descriptions for label %s:" % label) + for elt in sorted(best_prio[label], key=lambda x: x.Priority): + logger.info(" Priority %s, Frequency %s, Description %s" % (elt.Priority, elt.frequency, elt.description)) if v.label in debug: logger.debug("pingFile ... processing %s in table %s, label=%s" % (v.label, v.mipTable, label)) diff --git a/dr2xml/projects/C3S-SF.json b/dr2xml/projects/C3S-SF.json new file mode 100644 index 00000000..fc4ac020 --- /dev/null +++ b/dr2xml/projects/C3S-SF.json @@ -0,0 +1,359 @@ +{ + "parent_project_settings": "basics", + "functions_file": "C3S-SF_func.py", + "common": { + "grid_mapping": { + "help": "Grid mapping name.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["grid_mapping"] + } + ] + }, + "forecast_reference_time": { + "help": "Reference time for the forecast done in the simulation.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["forecast_reference_time"] + } + ] + }, + "forecast_type": { + "help": "Type of forecast done.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["forecast_type"] + } + ] + }, + "convention_str": { + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["convention_str"] + } + ] + }, + "commit": { + "help": "Id of the commits associated with the model.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["commit"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["commit"] + } + ] + }, + "summary": { + "help": "Short explanation about the simulation.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["summary"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["summary"] + } + ] + }, + "keywords": { + "help": "Keywords associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["keywords"], + "format": { + "type": "func", + "origin": "self", + "keys": ["join"], + "template": ", " + } + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["keywords"], + "format": { + "type": "func", + "origin": "self", + "keys": ["join"], + "template": ", " + } + } + ] + } + }, + "project_settings": { + "file_output": { + "attrs_constraints": { + "name": { + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": ["build_filename"], + "options": { + "frequency": { + "type": "func", + "origin": "functions_file", + "keys": ["convert_frequency"], + "options": { + "freq": { + "type": "value", + "origin": "variable", + "keys": ["frequency"] + } + } + }, + "expid_in_filename": { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + }, + "date_range": { + "type": "value", + "origin": "common", + "keys": ["date_range"] + }, + "list_perso_dev_file": { + "type": "value", + "origin": "common", + "keys": ["list_perso_dev_file"] + }, + "var_type": { + "type": "value", + "origin": "variable", + "keys": ["type"] + }, + "label": { + "type": "value", + "origin": "variable", + "keys": ["label"] + }, + "realm": { + "type": "func", + "origin": "functions_file", + "keys": ["convert_realm"], + "options": { + "realm": { + "type": "value", + "origin": "variable", + "keys": ["modeling_realm"] + } + } + } + } + } + ] + }, + "uuid_name": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["uuid_name"] + }, + "uuid" + ] + }, + "uuid_format": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["uuid_format"] + }, + "%uuid%" + ] + } + }, + "vars_list": ["description", "title", "source", "institution_id", "institution", "contact", "project", "comment", + "forecast_type", "realm", "frequency", "level_type", "history", "references", "commit", "summary", + "keywords", "forecast_reference_time"], + "vars_constraints": { + "institution_id": { + "output_key": "institute_id" + }, + "project": { + "help": "Project associated with the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["project"] + } + ] + }, + "keywords": { + "help": "Keywords associated with the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["keywords"] + } + ] + }, + "forecast_type": { + "help": "Forecast type associated with the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["forecast_type"] + }, + { + "type": "value", + "origin": "common", + "keys": ["forecast_type"] + } + ] + }, + "realm": { + "output_key": "modeling_realm", + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": [ + "convert_realm" + ], + "options": { + "realm": { + "type": "value", + "origin": "attrs", + "keys": ["realm"] + } + } + }, + { + "type": "func", + "origin": "functions_file", + "keys": [ + "convert_realm" + ], + "options": { + "realm": { + "type": "value", + "origin": "variable", + "keys": ["modeling_realm"] + } + } + } + ] + }, + "level_type": { + "help": "Level type associated with the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["level_type"] + }, + { + "type": "value", + "origin": "variable", + "keys": ["level_type"] + } + ] + }, + "commit": { + "help": "Commit associated with the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["commit"] + }, + { + "type": "value", + "origin": "common", + "keys": ["commit"] + } + ] + }, + "summary": { + "help": "Summary associated with the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["summary"] + }, + { + "type": "value", + "origin": "common", + "keys": ["summary"] + } + ] + }, + "forecast_reference_time": { + "help": "Forecast reference time associated with the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["forecast_reference_time"] + }, + { + "type": "value", + "origin": "common", + "keys": ["forecast_reference_time"] + } + ] + } + } + }, + "field_output": { + "vars_list": ["standard_name", "long_name", "coordinates", "grid_mapping", "units"], + "vars_constraints": { + "grid_mapping": { + "help": "Grid mapping associated with the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["grid_mapping"] + }, + { + "type": "value", + "origin": "common", + "keys": ["grid_mapping"] + } + ] + }, + "coordinates": { + "help": "Coordinates of the output field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["coordinates"] + }, + { + "type": "value", + "origin": "variable", + "keys": ["coordinates"] + } + ] + } + } + } + } +} \ No newline at end of file diff --git a/dr2xml/projects/C3S-SF.py b/dr2xml/projects/C3S-SF.py deleted file mode 100644 index 55dfcecd..00000000 --- a/dr2xml/projects/C3S-SF.py +++ /dev/null @@ -1,226 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -""" -CMIP6 python tools -""" - -from __future__ import print_function, division, absolute_import, unicode_literals - -from dr2xml.projects.projects_interface_definitions import ParameterSettings, ValueSettings, FunctionSettings, \ - TagSettings, ConditionSettings - -parent_project_settings = "basics" - - -def build_filename(expid_in_filename, realm, frequency, label, date_range, var_type, list_perso_dev_file): - if isinstance(realm, (list, tuple)): - realm = realm[0] - filename = "_".join(([expid_in_filename, realm, frequency, label])) - if var_type in ["perso", "dev"]: - with open(list_perso_dev_file, mode="a", encoding="utf-8") as list_perso_and_dev: - list_perso_and_dev.write("{}.*\n".format(filename)) - filename = "_".join([filename, date_range + ".nc"]) - return filename - - -def convert_frequency(freq): - if freq.endswith("hr"): - freq = freq.replace("hr", "hourly") - elif freq.endswith("h"): - freq = freq.replace("h", "hourly") - elif freq in ["day", ]: - freq = "daily" - elif freq in ["mon", ]: - freq = "monthly" - return freq - - -def convert_realm(realm): - if not isinstance(realm, (list, set, tuple)): - realm = [realm, ] - if "ocean" in realm or "seaIce" in realm: - realm = "nemo", - elif "land" in realm: - realm = "atmo" - elif len(realm) == 1: - realm = list(realm)[0] - else: - raise ValueError("Unable to figure out the realm to be used.") - return realm - - -def build_string_from_list(args): - return ", ".join(args) - - -internal_values = dict() - -common_values = dict( - grid_mapping=ParameterSettings( - key="grid_mapping", - default_values=[ - ValueSettings(key_type="simulation", keys="grid_mapping") - ], - help="Grid mapping name." - ), - forecast_reference_time=ParameterSettings( - key="forecast_reference_time", - default_values=[ - ValueSettings(key_type="simulation", keys="forecast_reference_time") - ], - help="Reference time for the forecast done in the simulation." - ), - forecast_type=ParameterSettings( - key="forecast_type", - default_values=[ - ValueSettings(key_type="simulation", keys="forecast_type") - ], - help="Type of forecast done." - ), - convention_str=ParameterSettings( - key="convention_str", - default_values=[ - ValueSettings(key_type="laboratory", keys="convention_str") - ] - ), - commit=ParameterSettings( - key="commit", - default_values=[ - ValueSettings(key_type="simulation", keys="commit"), - ValueSettings(key_type="laboratory", keys="commit") - ], - help="Id of the commits associated with the model." - ), - summary=ParameterSettings( - key="summary", - default_values=[ - ValueSettings(key_type="simulation", keys="summary"), - ValueSettings(key_type="laboratory", keys="summary") - ], - help="Short explanation about the simulation." - ), - keywords=ParameterSettings( - key="keywords", - default_values=[ - ValueSettings(key_type="simulation", keys="keywords", - func=FunctionSettings(func=build_string_from_list)), - ValueSettings(key_type="laboratory", keys="summary", - func=FunctionSettings(func=build_string_from_list)) - ], - help="Keywords associated with the simulation." - ) -) - -project_settings = dict( - file_output=TagSettings( - attrs_constraints=dict( - name=ParameterSettings( - key="name", - default_values=[ - ValueSettings(func=FunctionSettings( - func=build_filename, - options=dict( - frequency=ValueSettings(key_type="variable", keys="frequency", - func=FunctionSettings(func=convert_frequency)), - expid_in_filename=ValueSettings(key_type="common", keys="expid_in_filename"), - date_range=ValueSettings(key_type="common", keys="date_range"), - list_perso_dev_file=ValueSettings(key_type="common", keys="list_perso_dev_file"), - var_type=ValueSettings(key_type="variable", keys="type"), - label=ValueSettings(key_type="variable", keys="label"), - realm=ValueSettings(key_type="variable", keys="modeling_realm", - func=FunctionSettings(func=convert_realm)) - ) - )) - ], - fatal=True - ), - uuid_name=ParameterSettings( - key="uuid_name", - default_values=["uuid", ] - ), - uuid_format=ParameterSettings( - key="uuid_format", - default_values=["%uuid%", ] - ) - ), - vars_list=["description", "title", "source", "institution_id", "institution", "contact", "project", "comment", - "forecast_type", "realm", "frequency", "level_type", "history", "references", "commit", "summary", - "keywords", "forecast_reference_time"], - vars_constraints=dict( - institution_id=ParameterSettings( - key="institution_id", - output_key="institute_id" - ), - project=ParameterSettings( - key="project", - help="Project associated with the file." - ), - keywords=ParameterSettings( - key="keywords", - help="Keywords associated with the file." - ), - forecast_type=ParameterSettings( - key="forecast_type", - help="Forecast type associated with the file.", - default_values=[ - ValueSettings(key_type="common", keys="forecast_type") - ] - ), - realm=ParameterSettings( - key="realm", - output_key="modeling_realm", - default_values=[ - ValueSettings(key_type="variable", keys="modeling_realm", func=FunctionSettings(func=convert_realm)) - ] - ), - level_type=ParameterSettings( - key="level_type", - help="Level type associated with the file.", - default_values=[ - ValueSettings(key_type="variable", keys="level_type") - ] - ), - commit=ParameterSettings( - key="commit", - help="Commit associated with the file.", - default_values=[ - ValueSettings(key_type="common", keys="commit") - ] - ), - summary=ParameterSettings( - key="summary", - help="Summary associated with the file.", - default_values=[ - ValueSettings(key_type="common", keys="summary") - ] - ), - forecast_reference_time=ParameterSettings( - key="forecast_reference_time", - help="Forecast reference time associated with the file.", - default_values=[ - ValueSettings(key_type="common", keys="forecast_reference_time") - ] - ) - ) - ), - field_output=TagSettings( - vars_list=["standard_name", "long_name", "coordinates", "grid_mapping", "units"], - vars_constraints=dict( - grid_mapping=ParameterSettings( - key="grid_mapping", - help="Grid mapping associated with the field.", - default_values=[ - ValueSettings(key_type="common", keys="grid_mapping") - ] - ), - coordinates=ParameterSettings( - key="coordinates", - help="Coordinates of the output field.", - default_values=[ - ValueSettings(key_type="variable", keys="coordinates") - ] - ) - ) - ) -) diff --git a/dr2xml/projects/C3S-SF_func.py b/dr2xml/projects/C3S-SF_func.py new file mode 100644 index 00000000..9ea40c3e --- /dev/null +++ b/dr2xml/projects/C3S-SF_func.py @@ -0,0 +1,49 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +C3S python tools +""" + +from __future__ import print_function, division, absolute_import, unicode_literals + + +from dr2xml.projects.dr2xml_func import sort_mips, format_sizes +from dr2xml.projects.basics_func import build_external_variables, compute_nb_days + + +def build_filename(expid_in_filename, realm, frequency, label, date_range, var_type, list_perso_dev_file): + if isinstance(realm, (list, tuple)): + realm = realm[0] + filename = "_".join(([expid_in_filename, realm, frequency, label])) + if var_type in ["perso", "dev"]: + with open(list_perso_dev_file, mode="a", encoding="utf-8") as list_perso_and_dev: + list_perso_and_dev.write("{}.*\n".format(filename)) + filename = "_".join([filename, date_range + ".nc"]) + return filename + + +def convert_frequency(freq): + if freq.endswith("hr"): + freq = freq.replace("hr", "hourly") + elif freq.endswith("h"): + freq = freq.replace("h", "hourly") + elif freq in ["day", ]: + freq = "daily" + elif freq in ["mon", ]: + freq = "monthly" + return freq + + +def convert_realm(realm): + if not isinstance(realm, (list, set, tuple)): + realm = [realm, ] + if "ocean" in realm or "seaIce" in realm: + realm = "nemo", + elif "land" in realm: + realm = "atmo" + elif len(realm) == 1: + realm = list(realm)[0] + else: + raise ValueError("Unable to figure out the realm to be used.") + return realm diff --git a/dr2xml/projects/CMIP6.json b/dr2xml/projects/CMIP6.json new file mode 100644 index 00000000..36e1dc41 --- /dev/null +++ b/dr2xml/projects/CMIP6.json @@ -0,0 +1,803 @@ +{ + "parent_project_settings": "basics", + "functions_file": "CMIP6_func.py", + "internal": { + "additional_allowed_model_components": { + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "additional_allowed_model_components"] + } + ] + }, + "CV_experiment": { + "help": "Controlled vocabulary file containing experiment characteristics.", + "values": [ + { + "type": "file", + "origin": "json", + "src": { + "type": "func", + "origin": "self", + "keys": "format", + "template": "{cvspath}{project}_experiment_id.json", + "options": { + "cvspath": { + "type": "value", + "origin": "dict", + "keys": ["cvspath"] + }, + "project": { + "type": "value", + "origin": "init", + "keys": ["project"] + } + } + }, + "keys": [ + "experiment_id", + { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + } + ] + } + ] + }, + "required_model_components": { + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "required_model_components"] + } + ] + } + }, + "common": { + "activity_id": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "activity_id"] + } + ] + }, + "commercial_license": { + "help": "Either commercial or not commercial license", + "fatal": true, + "choices": ["", "NonCommercial-"], + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["commercial_license"] + }, + "NonCommercial-" + ] + }, + "conventions_version": { + "help": "Version of the conventions used.", + "values": [ + { + "type": "value", + "origin": "config", + "keys": ["CMIP6_conventions_version"] + } + ] + }, + "HDL": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["HDL"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["HDL"] + }, + "21.14100" + ] + }, + "institution": { + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["institution"] + }, + { + "type": "file", + "origin": "json", + "src": { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{cvspath}{project}_institution_id.json", + "options": { + "cvspath": { + "type": "value", + "origin": "dict", + "keys": ["cvspath"] + }, + "project": { + "type": "value", + "origin": "init", + "keys": ["project"] + } + } + }, + "keys": [ + "institution_id", + { + "type": "value", + "origin": "init", + "keys": ["institution_id"] + } + ] + } + ] + }, + "license": { + "help": "Text of the license which applies", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["license_file", 0] + }, + { + "type": "value", + "origin": "common", + "keys": ["license_file", "license"] + } + ] + }, + "license_file": { + "help": "File where the license associated with the produced output files can be found.", + "fatal": true, + "values": [ + { + "type": "file", + "origin": "json", + "src": { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{cvspath}{project}_license.json", + "options": { + "cvspath": { + "type": "value", + "origin": "dict", + "keys": ["cvspath"] + }, + "project": { + "type": "value", + "origin": "init", + "keys": ["project"] + } + } + }, + "keys": ["license"] + } + ] + }, + "license_id": { + "help": "License id", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "common", + "keys": [ + "license_file", + "license", + { + "type": "value", + "origin": "laboratory", + "keys": ["license_id"] + }, + "license_id" + ] + }, + { + "type": "value", + "origin": "common", + "keys": ["license_file", "license_options", "CC BY-NC-SA 4.0", "license_id"] + }, + "" + ] + }, + "license_url": { + "help": "License url", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "common", + "keys": [ + "license_file", + "license", + { + "type": "value", + "origin": "laboratory", + "keys": ["license_id"] + }, + "license_url" + ] + }, + { + "type": "value", + "origin": "common", + "keys": ["license_file", "license_options", "CC BY-NC-SA 4.0", "license_url"] + }, + "https://creativecommons.org/licenses" + ] + }, + "license_terms": { + "help": "Terms of the license", + "fatal": true, + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": ["fill_license"], + "options": { + "value": { + "type": "value", + "origin": "common", + "keys": ["license"] + }, + "institution_id": { + "type": "value", + "origin": "init", + "keys": ["institution_id"] + }, + "info_url": { + "type": "value", + "origin": "common", + "keys": ["info_url"] + }, + "commercial_license": { + "type": "value", + "origin": "common", + "keys": ["commercial_license"] + }, + "license_id": { + "type": "value", + "origin": "common", + "keys": ["license_id"] + }, + "license_url": { + "type": "value", + "origin": "common", + "keys": ["license_url"] + } + } + } + ] + }, + "member_id": { + "help": "Id of the member done.", + "forbidden_patterns": ["none-.*"], + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{sub_exp}-{variant}", + "options": { + "sub_exp": { + "type": "value", + "origin": "common", + "keys": ["sub_experiment_id"] + }, + "variant": { + "type": "value", + "origin": "common", + "keys": ["variant_label"] + } + } + }, + { + "type": "value", + "origin": "common", + "keys": ["variant_label"] + } + ] + }, + "parent_activity_id": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_activity_id"] + }, + { + "type": "value", + "origin": "simulation", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["parent_activity_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "parent_activity_id"] + } + ] + }, + "parent_experiment_id": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_experiment_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["parent_experiment_id"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "parent_experiment_id"] + } + ] + }, + "source": { + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": ["make_source_string"], + "options": { + "source": { + "type": "file", + "origin": "json", + "src": { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{cvspath}{project}_source_id.json", + "options": { + "cvspath": { + "type": "value", + "origin": "dict", + "keys": ["cvspath"] + }, + "project": { + "type": "value", + "origin": "init", + "keys": ["project"] + } + } + }, + "keys": [ + "source_id", + { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + ] + }, + "source_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + } + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["source"] + } + ] + }, + "variant_label": { + "help": "Label of the variant done.", + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "r{realization}i{initialization}p{physics}f{forcing}", + "options": { + "realization": { + "type": "value", + "origin": "internal", + "keys": ["realization_index"] + }, + "initialization": { + "type": "value", + "origin": "common", + "keys": ["initialization_index"] + }, + "physics": { + "type": "value", + "origin": "common", + "keys": ["physics_index"] + }, + "forcing": { + "type": "value", + "origin": "common", + "keys": ["forcing_index"] + } + } + } + ] + } + }, + "project_settings": { + "context": { + "comments_list": ["DR_version", "CV_version", "conventions_version", "dr2xml_version", "lab_settings", "simulation_settings", "year"], + "comments_constraints": { + "CV_version": { + "help": "Controled vocabulary version used.", + "values": ["CMIP6-CV version ??"] + }, + "conventions_version": { + "help": "Conventions version used.", + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["conventions_version"], + "format": "CMIP6_conventions_version {}" + } + ] + } + } + }, + "file_output": { + "attrs_constraints": { + "name": { + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": ["build_filename"], + "options": { + "frequency": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "frequency"] + }, + "prefix": { + "type": "value", + "origin": "common", + "keys": ["prefix"] + }, + "table": { + "type": "value", + "origin": "dict", + "keys": ["table_id"] + }, + "source_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + }, + "expid_in_filename": { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + }, + "member_id": { + "type": "value", + "origin": "common", + "keys": ["member_id"] + }, + "grid_label": { + "type": "value", + "origin": "dict", + "keys": ["grid_label"] + }, + "date_range": { + "type": "value", + "origin": "common", + "keys": ["date_range"] + }, + "var_type": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "type"] + }, + "list_perso_dev_file": { + "type": "value", + "origin": "common", + "keys": ["list_perso_dev_file"] + }, + "label": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "label"] + }, + "mipVarLabel": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "mipVarLabel"] + }, + "use_cmorvar": { + "type": "value", + "origin": "internal", + "keys": ["use_cmorvar_label_in_filename"] + } + } + } + ] + } + }, + "vars_constraints": { + "CMIP6_CV_latest_tag": { + "help": "Last tag of CMIP6 CVs.", + "values": [ + { + "type": "file", + "origin": "json", + "src": { + "type": "func", + "origin": "self", + "keys": "format", + "template": "{cvspath}{project}_experiment_id.json", + "options": { + "cvspath": { + "type": "value", + "origin": "dict", + "keys": ["cvspath"] + }, + "project": { + "type": "value", + "origin": "init", + "keys": ["project"] + } + } + }, + "keys": ["version_metadata", "latest_tag_metadata"] + }, + "no more value in CMIP6_CV" + ] + }, + "description": { + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + }, + "check_to_perform": "eq", + "reference_values": [ + { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + } + ], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["description"] + }, + { + "type": "value", + "origin": "common", + "keys": ["description"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "description"] + } + ] + } + ] + }, + "experiment": { + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + }, + "check_to_perform": "eq", + "reference_values": [ + { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + } + ], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["experiment"] + }, + { + "type": "value", + "origin": "common", + "keys": ["experiment"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "experiment"] + } + ] + } + ] + }, + "further_info_url": { + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["mip_era_lset"] + }, + "check_to_perform": "eq", + "reference_values": [null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["mip_era_sset"] + }, + "check_to_perform": "eq", + "reference_values": [null], + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "https://furtherinfo.es-doc.org/{mip_era}.{institution_id}.{source_id}.{expid}.{sub_exp}.{variant}", + "options": { + "mip_era": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "mip_era"] + }, + "institution_id": { + "type": "value", + "origin": "init", + "keys": ["institution_id"] + }, + "source_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + }, + "expid": { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + }, + "sub_exp": { + "type": "value", + "origin": "common", + "keys": ["sub_experiment_id"] + }, + "variant": { + "type": "value", + "origin": "common", + "keys": ["variant_label"] + } + } + } + ] + } + ] + } + ] + }, + "license": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["license"] + }, + { + "type": "value", + "origin": "common", + "keys": ["license_terms"] + } + ] + }, + "realm": { "corrections": { + "ocnBgChem": "ocnBgchem" + } + }, + "source": { + "fatal": true + }, + "title_desc": { + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + }, + "check_to_perform": "eq", + "reference_values": [ + { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + } + ], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["description"] + }, + { + "type": "value", + "origin": "common", + "keys": ["description"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "description"] + } + ] + } + ] + }, + "variable_id": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["variable_id"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "mipVarLabel"] + } + ] + } + } + } + } +} \ No newline at end of file diff --git a/dr2xml/projects/CMIP6.py b/dr2xml/projects/CMIP6.py deleted file mode 100644 index 7aee91fb..00000000 --- a/dr2xml/projects/CMIP6.py +++ /dev/null @@ -1,398 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -""" -CMIP6 python tools -""" - -from __future__ import print_function, division, absolute_import, unicode_literals - -from dr2xml.projects.projects_interface_definitions import ParameterSettings, ValueSettings, FunctionSettings, \ - TagSettings, ConditionSettings - -parent_project_settings = "basics" - - -def make_source_string(source, source_id): - """ - From the dic of sources in CMIP6-CV, Creates the string representation of a - given model (source_id) according to doc on global_file_attributes, so : - - (): atmosphere: (, ); - ocean: (, ); sea_ice: (); - land: (); aerosol: (); - atmospheric_chemistry (); ocean_biogeochemistry (); - land_ice (); - - """ - # mpmoine_correction:make_source_string: pour lire correctement le fichier 'CMIP6_source_id.json' - components = source['model_component'] - rep = source_id + " (" + source['release_year'] + "):" - for realm in ["aerosol", "atmos", "atmosChem", "land", "ocean", "ocnBgchem", "seaIce"]: - component = components[realm] - description = component['description'] - if description != "none": - rep = rep + "\n" + realm + ": " + description - return rep - - -def build_filename(frequency, prefix, table, source_id, expid_in_filename, member_id, grid_label, date_range, - var_type, list_perso_dev_file, label, mipVarLabel, use_cmorvar=False): - if "fx" in frequency: - varname_for_filename = label - else: - if use_cmorvar: - varname_for_filename = label - else: - varname_for_filename = mipVarLabel - # DR21 has a bug with tsland : the MIP variable is named "ts" - if label in ["tsland", ]: - varname_for_filename = "tsland" - filename = "_".join(([varname_for_filename, table, source_id, expid_in_filename, member_id, grid_label])) - if var_type in ["perso", "dev"]: - with open(list_perso_dev_file, mode="a", encoding="utf-8") as list_perso_and_dev: - list_perso_and_dev.write(".*{}.*\n".format(filename)) - filename = prefix + filename - if "fx" not in frequency: - if frequency in ["1hrCM", "monC"]: - suffix = "-clim" - else: - suffix = "" - filename = "_".join([filename, date_range + suffix]) - return filename - - -def fill_license(value, institution_id, info_url): - value = value.replace("", institution_id) - # TODO: Adapt next line - value = value.replace("[NonCommercial-]", "NonCommercial-") - value = value.replace("[ and at ]", " and at " + info_url) - return value - - -internal_values = dict( - required_model_components=ParameterSettings( - key="required_model_components", - default_values=[ - ValueSettings( - key_type="internal", - keys=["CV_experiment", "required_model_components"] - ) - ] - ), - additional_allowed_model_components=ParameterSettings( - key="additional_allowed_model_components", - default_values=[ - ValueSettings( - key_type="internal", - keys=["CV_experiment", "additional_allowed_model_components"] - ) - ] - ), - CV_experiment=ParameterSettings( - key="CV_experiment", - default_values=[ - ValueSettings( - key_type="json", - keys=[ - "experiment_id", - ValueSettings(key_type="internal", keys="experiment_id") - ], - src=ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="dict", keys="cvspath"), - ValueSettings(key_type="internal", keys="project") - ], - fmt="{}{}_experiment_id.json" - ) - ) - ], - help="Controlled vocabulary file containing experiment characteristics." - ) -) - -common_values = dict( - conventions_version=ParameterSettings( - key="conventions_version", - default_values=[ - ValueSettings(key_type="config", keys="CMIP6_conventions_version") - ], - help="Version of the conventions used." - ), - activity_id=ParameterSettings( - key="activity_id", - default_values=[ - ValueSettings(key_type="simulation", keys="activity_id"), - ValueSettings(key_type="laboratory", keys="activity_id"), - ValueSettings(key_type="internal", keys=["CV_experiment", "activity_id"]) - ] - ), - parent_activity_id=ParameterSettings( - key="parent_activity_id", - default_values=[ - ValueSettings(key_type="simulation", keys="parent_activity_id"), - ValueSettings(key_type="simulation", keys="activity_id"), - ValueSettings(key_type="laboratory", keys="parent_activity_id"), - ValueSettings(key_type="laboratory", keys="activity_id"), - ValueSettings(key_type="internal", keys=["CV_experiment", "parent_activity_id"]) - ] - ), - HDL=ParameterSettings( - key="HDL", - default_values=[ - ValueSettings(key_type="simulation", keys="HDL"), - ValueSettings(key_type="laboratory", keys="HDL"), - "21.14100" - ] - ), - source=ParameterSettings( - key="source", - default_values=[ - ValueSettings( - key_type="json", - keys=[ - "source_id", - ValueSettings(key_type="internal", keys="source_id") - ], - src=ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="dict", keys="cvspath"), - ValueSettings(key_type="internal", keys="project") - ], - fmt="{}{}_source_id.json" - ), - func=FunctionSettings( - func=make_source_string, - options=dict(source_id=ValueSettings(key_type="internal", keys="source_id")) - ) - ), - ValueSettings(key_type="laboratory", keys="source") - ] - ), - institution=ParameterSettings( - key="institution", - default_values=[ - ValueSettings(key_type="laboratory", keys="institution"), - ValueSettings( - key_type="json", - keys=[ - "institution_id", - ValueSettings(key_type="internal", keys="institution_id") - ], - src=ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="dict", keys="cvspath"), - ValueSettings(key_type="internal", keys="project") - ], - fmt="{}{}_institution_id.json" - ) - ) - ] - ), - license=ParameterSettings( - key="license", - default_values=[ - ValueSettings( - key_type="json", - keys=["license", 0], - src=ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="dict", keys="cvspath"), - ValueSettings(key_type="internal", keys="project") - ], - fmt="{}{}_license.json" - ) - ) - ], - help="File where the license associated with the produced output files can be found." - ), - parent_experiment_id=ParameterSettings( - key="parent_experiment_id", - default_values=[ - ValueSettings(key_type="simulation", keys="parent_experiment_id"), - ValueSettings(key_type="laboratory", keys="parent_experiment_id"), - ValueSettings(key_type="internal", keys=["CV_experiment", "parent_experiment_id"]) - ] - ), - variant_label=ParameterSettings( - key="variant_label", - default_values=[ - ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="internal", keys="realization_index"), - ValueSettings(key_type="common", keys="initialization_index"), - ValueSettings(key_type="common", keys="physics_index"), - ValueSettings(key_type="common", keys="forcing_index") - ], - fmt="r{}i{}p{}f{}" - ) - ], - help="Label of the variant done." - ), - member_id=ParameterSettings( - key="member_id", - default_values=[ - ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="common", keys="sub_experiment_id"), - ValueSettings(key_type="common", keys="variant_label"), - ], - fmt="{}-{}" - ), - ValueSettings(key_type="common", keys="variant_label") - ], - forbidden_patterns=["none-.*", ], - help="Id of the member done." - ) -) - -project_settings = dict( - context=TagSettings( - comments_list=["DR_version", "CV_version", "conventions_version", "dr2xml_version", "lab_settings", - "simulation_settings", "year"], - comments_constraints=dict( - CV_version=ParameterSettings( - key="CV_version", - help="Controled vocabulary version used.", - default_values=["CMIP6-CV version ??", ] - ), - conventions_version=ParameterSettings( - key="conventions_version", - help="Conventions version used.", - default_values=[ - ValueSettings(key_type="common", keys="conventions_version", fmt="CMIP6_conventions_version {}") - ] - ) - ) - ), - file_output=TagSettings( - attrs_constraints=dict( - name=ParameterSettings( - key="name", - default_values=[ - ValueSettings(func=FunctionSettings( - func=build_filename, - options=dict( - frequency=ValueSettings(key_type="variable", keys="frequency"), - prefix=ValueSettings(key_type="common", keys="prefix"), - table=ValueSettings(key_type="dict", keys="table_id"), - source_id=ValueSettings(key_type="internal", keys="source_id"), - expid_in_filename=ValueSettings(key_type="common", keys="expid_in_filename"), - member_id=ValueSettings(key_type="common", keys="member_id"), - grid_label=ValueSettings(key_type="dict", keys="grid_label"), - date_range=ValueSettings(key_type="common", keys="date_range"), - var_type=ValueSettings(key_type="variable", keys="type"), - list_perso_dev_file=ValueSettings(key_type="common", keys="list_perso_dev_file"), - label=ValueSettings(key_type="variable", keys="label"), - mipVarLabel=ValueSettings(key_type="variable", keys="mipVarLabel"), - use_cmorvar=ValueSettings(key_type="internal", keys="use_cmorvar_label_in_filename") - ) - )) - ], - fatal=True - ) - ), - vars_constraints=dict( - variable_id=ParameterSettings( - key="variable_id", - default_values=[ - ValueSettings(key_type="variable", keys="mipVarLabel") - ] - ), - description=ParameterSettings( - key="description", - default_values=[ - ValueSettings(key_type="common", keys="description"), - ValueSettings(key_type="internal", keys=["CV_experiment", "description"]) - ] - ), - title_desc=ParameterSettings( - key="title_desc", - default_values=[ - ValueSettings(key_type="common", keys="description"), - ValueSettings(key_type="internal", keys=["CV_experiment", "description"]) - ] - ), - experiment=ParameterSettings( - key="experiment", - default_values=[ - ValueSettings(key_type="common", keys="experiment"), - ValueSettings(key_type="internal", keys=["CV_experiment", "experiment"]) - ] - ), - CMIP6_CV_latest_tag=ParameterSettings( - key="CMIP6_CV_latest_tag", - default_values=[ - ValueSettings( - key_type="json", - keys=["version_metadata", "latest_tag_metadata"], - src=ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="dict", keys="cvspath"), - ValueSettings(key_type="internal", keys="project") - ], - fmt="{}{}_experiment_id.json" - ) - ), - "no more value in CMIP6_CV" - ] - ), - source=ParameterSettings( - key="source", - fatal=True - ), - further_info_url=ParameterSettings( - key="further_info_url", - default_values=[ - ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="variable", keys="mip_era"), - ValueSettings(key_type="internal", keys="institution_id"), - ValueSettings(key_type="internal", keys="source_id"), - ValueSettings(key_type="common", keys="expid_in_filename"), - ValueSettings(key_type="common", keys="sub_experiment_id"), - ValueSettings(key_type="common", keys="variant_label") - ], - fmt="https://furtherinfo.es-doc.org/{}.{}.{}.{}.{}.{}" - ) - ], - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="laboratory", keys="mip_era"), - check_to_do="eq", reference_values=list()), - ConditionSettings(check_value=ValueSettings(key_type="simulation", keys="mip_era"), - check_to_do="eq", reference_values=list()) - ] - ), - license=ParameterSettings( - key="license", - default_values=[ - ValueSettings( - key_type="common", - keys="license", - func=FunctionSettings( - func=fill_license, - options=dict( - institution_id=ValueSettings(key_type="internal", keys="institution_id"), - info_url=ValueSettings(key_type="common", keys="info_url") - ) - ) - ) - ] - ), - realm=ParameterSettings( - key="realm", - corrections=dict( - ocnBgChem="ocnBgchem" - ) - ) - ) - ) -) diff --git a/dr2xml/projects/CMIP6_esgvoc.json b/dr2xml/projects/CMIP6_esgvoc.json new file mode 100644 index 00000000..4d76ffe4 --- /dev/null +++ b/dr2xml/projects/CMIP6_esgvoc.json @@ -0,0 +1,825 @@ +{ + "parent_project_settings": "basics", + "functions_file": "CMIP6_esgvoc_func.py", + "init": { + "vocabulary_used": { + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["vocabulary_used"] + }, + "dr2xml_default" + ] + } + }, + "internal": { + "additional_allowed_model_components": { + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "additional_allowed_model_components"], + "format": { + "type": "func", + "origin": "functions_file", + "keys": ["get_ids_from_list"] + } + } + ] + }, + "CV_experiment": { + "help": "Controlled vocabulary file containing experiment characteristics.", + "forbidden_values": [null, ""], + "fatal": true, + "values": [ + { + "type": "func", + "origin": "vocabulary_server", + "keys": ["get_term_in_collection"], + "options": { + "project_id": { + "type": "value", + "origin": "init", + "keys": ["vocabulary_project"] + }, + "collection_id": "experiment_id", + "term_id": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + } + } + } + ] + }, + "required_model_components": { + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "required_model_components"], + "format": { + "type": "func", + "origin": "functions_file", + "keys": ["get_ids_from_list"] + } + } + ] + } + }, + "common": { + "activity_id": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "activity"], + "format": { + "type": "func", + "origin": "self", + "keys": ["upper"] + } + } + ] + }, + "commercial_license": { + "help": "Either commercial or not commercial license", + "fatal": true, + "choices": ["", "NonCommercial-"], + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["commercial_license"] + }, + "NonCommercial-" + ] + }, + "conventions_version": { + "help": "Version of the conventions used.", + "values": [ + { + "type": "value", + "origin": "config", + "keys": ["CMIP6_conventions_version"] + } + ] + }, + "HDL": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["HDL"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["HDL"] + }, + "21.14100" + ] + }, + "institution": { + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["institution"] + }, + { + "type": "value", + "origin": "common", + "keys": ["institution_input", "description"] + } + ] + }, + "institution_input": { + "help": "Institution information from input", + "fatal": true, + "forbidden_values": [null, ""], + "values": [ + { + "type": "func", + "origin": "vocabulary_server", + "keys": ["get_term_in_collection"], + "options": { + "project_id": { + "type": "value", + "origin": "init", + "keys": ["vocabulary_project"] + }, + "collection_id": "institution_id", + "term_id": { + "type": "value", + "origin": "init", + "keys": ["institution_id"], + "format": { + "type": "func", + "origin": "self", + "keys": ["lower"] + } + } + } + } + ] + }, + "license": { + "help": "Text of the license which applies", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["license_file", 0] + }, + { + "type": "value", + "origin": "common", + "keys": ["license_file", "license"] + } + ] + }, + "license_file": { + "help": "File where the license associated with the produced output files can be found.", + "fatal": true, + "values": [ + { + "type": "file", + "origin": "json", + "src": { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{cvspath}{project}_license.json", + "options": { + "cvspath": { + "type": "value", + "origin": "dict", + "keys": ["cvspath"] + }, + "project": { + "type": "value", + "origin": "init", + "keys": ["project"] + } + } + }, + "keys": ["license"] + } + ] + }, + "license_id": { + "help": "License id", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "common", + "keys": [ + "license_file", + "license", + { + "type": "value", + "origin": "laboratory", + "keys": ["license_id"] + }, + "license_id" + ] + }, + { + "type": "value", + "origin": "common", + "keys": ["license_file", "license_options", "CC BY-NC-SA 4.0", "license_id"] + }, + "" + ] + }, + "license_url": { + "help": "License url", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "common", + "keys": [ + "license_file", + "license", + { + "type": "value", + "origin": "laboratory", + "keys": ["license_id"] + }, + "license_url" + ] + }, + { + "type": "value", + "origin": "common", + "keys": ["license_file", "license_options", "CC BY-NC-SA 4.0", "license_url"] + }, + "https://creativecommons.org/licenses" + ] + }, + "member_id": { + "help": "Id of the member done.", + "forbidden_patterns": ["none-.*"], + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{sub_exp}-{variant}", + "options": { + "sub_exp": { + "type": "value", + "origin": "common", + "keys": ["sub_experiment_id"] + }, + "variant": { + "type": "value", + "origin": "common", + "keys": ["variant_label"] + } + } + }, + { + "type": "value", + "origin": "common", + "keys": ["variant_label"] + } + ] + }, + "parent_activity_id": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_activity_id"] + }, + { + "type": "value", + "origin": "simulation", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["parent_activity_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "parent_activity"] + } + ] + }, + "parent_experiment_id": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_experiment_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["parent_experiment_id"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "parent_experiment"] + } + ] + }, + "source": { + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": ["make_source_string"], + "options": { + "source": { + "type": "value", + "origin": "common", + "keys": ["source_input", "__dict__"] + }, + "source_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + } + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["source"] + } + ] + }, + "source_input": { + "help": "Source information from input", + "fatal": true, + "forbidden_values": [null, ""], + "values": [ + { + "type": "func", + "origin": "vocabulary_server", + "keys": ["get_term_in_collection"], + "options": { + "project_id": { + "type": "value", + "origin": "init", + "keys": ["vocabulary_project"] + }, + "collection_id": "source_id", + "term_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"], + "format": { + "type": "func", + "origin": "self", + "keys": ["lower"] + } + } + } + } + ] + }, + "variant_label": { + "help": "Label of the variant done.", + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "r{realization}i{initialization}p{physics}f{forcing}", + "options": { + "realization": { + "type": "value", + "origin": "internal", + "keys": ["realization_index"] + }, + "initialization": { + "type": "value", + "origin": "common", + "keys": ["initialization_index"] + }, + "physics": { + "type": "value", + "origin": "common", + "keys": ["physics_index"] + }, + "forcing": { + "type": "value", + "origin": "common", + "keys": ["forcing_index"] + } + } + } + ] + } + }, + "project_settings": { + "context": { + "comments_list": ["DR_version", "CV_version", "conventions_version", "dr2xml_version", "lab_settings", "simulation_settings", "year"], + "comments_constraints": { + "CV_version": { + "help": "Controled vocabulary version used.", + "values": ["CMIP6-CV version ??"] + }, + "conventions_version": { + "help": "Conventions version used.", + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["conventions_version"], + "format": "CMIP6_conventions_version {}" + } + ] + } + } + }, + "file_output": { + "attrs_constraints": { + "name": { + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": ["build_filename"], + "options": { + "frequency": { + "type": "value", + "origin": "variable", + "keys": ["frequency"] + }, + "prefix": { + "type": "value", + "origin": "common", + "keys": ["prefix"] + }, + "table": { + "type": "value", + "origin": "dict", + "keys": ["table_id"] + }, + "source_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + }, + "expid_in_filename": { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + }, + "member_id": { + "type": "value", + "origin": "common", + "keys": ["member_id"] + }, + "grid_label": { + "type": "value", + "origin": "dict", + "keys": ["grid_label"] + }, + "date_range": { + "type": "value", + "origin": "common", + "keys": ["date_range"] + }, + "var_type": { + "type": "value", + "origin": "variable", + "keys": ["type"] + }, + "list_perso_dev_file": { + "type": "value", + "origin": "common", + "keys": ["list_perso_dev_file"] + }, + "label": { + "type": "value", + "origin": "variable", + "keys": ["label"] + }, + "mipVarLabel": { + "type": "value", + "origin": "variable", + "keys": ["mipVarLabel"] + }, + "use_cmorvar": { + "type": "value", + "origin": "internal", + "keys": ["use_cmorvar_label_in_filename"] + } + } + } + ] + } + }, + "vars_constraints": { + "CMIP6_CV_latest_tag": { + "help": "Last tag of CMIP6 CVs.", + "values": [ + { + "type": "file", + "origin": "json", + "src": { + "type": "func", + "origin": "self", + "keys": "format", + "template": "{cvspath}{project}_experiment_id.json", + "options": { + "cvspath": { + "type": "value", + "origin": "dict", + "keys": ["cvspath"] + }, + "project": { + "type": "value", + "origin": "init", + "keys": ["project"] + } + } + }, + "keys": ["version_metadata", "latest_tag_metadata"] + }, + "no more value in CMIP6_CV" + ] + }, + "description": { + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + }, + "check_to_perform": "eq", + "reference_values": [ + { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + } + ], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["description"] + }, + { + "type": "value", + "origin": "common", + "keys": ["description"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "description"] + } + ] + } + ] + }, + "experiment": { + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + }, + "check_to_perform": "eq", + "reference_values": [ + { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + } + ], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["experiment"] + }, + { + "type": "value", + "origin": "common", + "keys": ["experiment"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "id"], + "format": { + "type": "func", + "origin": "self", + "keys": ["upper"] + } + } + ] + } + ] + }, + "further_info_url": { + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["mip_era_lset"] + }, + "check_to_perform": "eq", + "reference_values": [null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["mip_era_sset"] + }, + "check_to_perform": "eq", + "reference_values": [null], + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "https://furtherinfo.es-doc.org/{mip_era}.{institution_id}.{source_id}.{expid}.{sub_exp}.{variant}", + "options": { + "mip_era": { + "type": "value", + "origin": "variable", + "keys": ["mip_era"] + }, + "institution_id": { + "type": "value", + "origin": "init", + "keys": ["institution_id"] + }, + "source_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + }, + "expid": { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + }, + "sub_exp": { + "type": "value", + "origin": "common", + "keys": ["sub_experiment_id"] + }, + "variant": { + "type": "value", + "origin": "common", + "keys": ["variant_label"] + } + } + } + ] + } + ] + } + ] + }, + "license": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["license"] + }, + { + "type": "func", + "origin": "functions_file", + "keys": ["fill_license"], + "options": { + "value": { + "type": "value", + "origin": "common", + "keys": ["license"] + }, + "institution_id": { + "type": "value", + "origin": "init", + "keys": ["institution_id"] + }, + "info_url": { + "type": "value", + "origin": "common", + "keys": ["info_url"] + }, + "commercial_license": { + "type": "value", + "origin": "common", + "keys": ["commercial_license"] + }, + "license_id": { + "type": "value", + "origin": "common", + "keys": ["license_id"] + }, + "license_url": { + "type": "value", + "origin": "common", + "keys": ["license_url"] + } + } + } + ] + }, + "realm": { + "corrections": { + "ocnBgChem": "ocnBgchem" + } + }, + "source": { + "fatal": true + }, + "title_desc": { + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + }, + "check_to_perform": "eq", + "reference_values": [ + { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + } + ], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["description"] + }, + { + "type": "value", + "origin": "common", + "keys": ["description"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "description"] + } + ] + } + ] + }, + "variable_id": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["variable_id"] + }, + { + "type": "value", + "origin": "variable", + "keys": ["mipVarLabel"] + } + ] + } + } + } + } +} \ No newline at end of file diff --git a/dr2xml/projects/CMIP6_esgvoc_func.py b/dr2xml/projects/CMIP6_esgvoc_func.py new file mode 100644 index 00000000..f45bf80f --- /dev/null +++ b/dr2xml/projects/CMIP6_esgvoc_func.py @@ -0,0 +1,79 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +CMIP6 python tools +""" + +from __future__ import print_function, division, absolute_import, unicode_literals + +import six + +from dr2xml.projects.dr2xml_func import sort_mips, format_sizes +from dr2xml.projects.basics_func import build_external_variables, compute_nb_days + + +def make_source_string(source, source_id): + """ + From the dic of sources in CMIP6-CV, Creates the string representation of a + given model (source_id) according to doc on global_file_attributes, so : + + (): atmosphere: (, ); + ocean: (, ); sea_ice: (); + land: (); aerosol: (); + atmospheric_chemistry (); ocean_biogeochemistry (); + land_ice (); + + """ + # mpmoine_correction:make_source_string: pour lire correctement le fichier 'CMIP6_source_id.json' + components = source['model_component'] + rep = source_id + " (" + str(source['release_year']) + "):" + for realm in ["aerosol", "atmos", "atmosChem", "land", "ocean", "ocnBgchem", "seaIce"]: + description = components[realm] + if description != "none": + rep = rep + "\n" + realm + ": " + description + return rep + + +def build_filename(frequency, prefix, table, source_id, expid_in_filename, member_id, grid_label, date_range, + var_type, list_perso_dev_file, label, mipVarLabel, use_cmorvar=False): + if "fx" in frequency: + varname_for_filename = label + else: + if use_cmorvar: + varname_for_filename = label + else: + varname_for_filename = mipVarLabel + # DR21 has a bug with tsland : the MIP variable is named "ts" + if label in ["tsland", ]: + varname_for_filename = "tsland" + filename = "_".join(([varname_for_filename, table, source_id, expid_in_filename, member_id, grid_label])) + if var_type in ["perso", "dev"]: + with open(list_perso_dev_file, mode="a", encoding="utf-8") as list_perso_and_dev: + list_perso_and_dev.write(".*{}.*\n".format(filename)) + filename = prefix + filename + if "fx" not in frequency: + if frequency in ["1hrCM", "monC"]: + suffix = "-clim" + else: + suffix = "" + filename = "_".join([filename, date_range + suffix]) + return filename + + +def fill_license(value, institution_id, info_url, license_id, license_url, commercial_license): + value = value.replace("", institution_id) + value = value.replace("", institution_id) + # TODO: Adapt next line + value = value.replace("[NonCommercial-]", commercial_license) + value = value.replace("", license_id) + value = value.replace("[ and at ]", " and at " + info_url) + value = value.replace("", license_url) + return value + + +def get_ids_from_list(value): + if isinstance(value, list): + return [elt if isinstance(elt, six.string_types) else elt.id for elt in value] + else: + raise ValueError("Input must be a list, not %s" % type(value)) diff --git a/dr2xml/projects/CMIP6_func.py b/dr2xml/projects/CMIP6_func.py new file mode 100644 index 00000000..78c38b34 --- /dev/null +++ b/dr2xml/projects/CMIP6_func.py @@ -0,0 +1,72 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +CMIP6 python tools +""" + +from __future__ import print_function, division, absolute_import, unicode_literals + + +from dr2xml.projects.dr2xml_func import sort_mips, format_sizes +from dr2xml.projects.basics_func import build_external_variables, compute_nb_days + + +def make_source_string(source, source_id): + """ + From the dic of sources in CMIP6-CV, Creates the string representation of a + given model (source_id) according to doc on global_file_attributes, so : + + (): atmosphere: (, ); + ocean: (, ); sea_ice: (); + land: (); aerosol: (); + atmospheric_chemistry (); ocean_biogeochemistry (); + land_ice (); + + """ + # mpmoine_correction:make_source_string: pour lire correctement le fichier 'CMIP6_source_id.json' + components = source['model_component'] + rep = source_id + " (" + source['release_year'] + "):" + for realm in ["aerosol", "atmos", "atmosChem", "land", "ocean", "ocnBgchem", "seaIce"]: + component = components[realm] + description = component['description'] + if description != "none": + rep = rep + "\n" + realm + ": " + description + return rep + + +def build_filename(frequency, prefix, table, source_id, expid_in_filename, member_id, grid_label, date_range, + var_type, list_perso_dev_file, label, mipVarLabel, use_cmorvar=False): + if "fx" in frequency: + varname_for_filename = label + else: + if use_cmorvar: + varname_for_filename = label + else: + varname_for_filename = mipVarLabel + # DR21 has a bug with tsland : the MIP variable is named "ts" + if label in ["tsland", ]: + varname_for_filename = "tsland" + filename = "_".join(([varname_for_filename, table, source_id, expid_in_filename, member_id, grid_label])) + if var_type in ["perso", "dev"]: + with open(list_perso_dev_file, mode="a", encoding="utf-8") as list_perso_and_dev: + list_perso_and_dev.write(".*{}.*\n".format(filename)) + filename = prefix + filename + if "fx" not in frequency: + if frequency in ["1hrCM", "monC"]: + suffix = "-clim" + else: + suffix = "" + filename = "_".join([filename, date_range + suffix]) + return filename + + +def fill_license(value, institution_id, info_url, license_id, license_url, commercial_license): + value = value.replace("", institution_id) + value = value.replace("", institution_id) + # TODO: Adapt next line + value = value.replace("[NonCommercial-]", commercial_license) + value = value.replace("", license_id) + value = value.replace("[ and at ]", " and at " + info_url) + value = value.replace("", license_url) + return value diff --git a/dr2xml/projects/CMIP7.json b/dr2xml/projects/CMIP7.json new file mode 100644 index 00000000..6950b7fc --- /dev/null +++ b/dr2xml/projects/CMIP7.json @@ -0,0 +1,1271 @@ +{ + "parent_project_settings": "basics", + "functions_file": "CMIP7_func.py", + "init": { + "project": { + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["project"] + }, + "CMIP7" + ] + }, + "vocabulary_used": { + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["vocabulary_used"] + }, + "dr2xml_default" + ] + } + }, + "internal": { + "additional_allowed_model_components": { + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "additional_allowed_model_components"], + "format": { + "type": "func", + "origin": "functions_file", + "keys": ["get_ids_from_list"] + } + } + ] + }, + "CV_experiment": { + "help": "Controlled vocabulary file containing experiment characteristics.", + "forbidden_values": [null, ""], + "fatal": true, + "values": [ + { + "type": "func", + "origin": "vocabulary_server", + "keys": ["get_term_in_collection"], + "options": { + "project_id": { + "type": "value", + "origin": "init", + "keys": ["vocabulary_project"] + }, + "collection_id": "experiment", + "term_id": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"], + "format": { + "type": "func", + "origin": "self", + "keys": "lower" + } + } + } + } + ] + }, + "required_model_components": { + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "required_model_components"], + "format": { + "type": "func", + "origin": "functions_file", + "keys": ["get_ids_from_list"] + } + } + ] + }, + "realization_index": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["realization_index"], + "format": { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "r{}" + } + }, + "r1" + ] + } + }, + "common": { + "activity_id": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "activity"], + "format": { + "type": "func", + "origin": "self", + "keys": ["upper"] + } + } + ] + }, + "commercial_license": { + "help": "Either commercial or not commercial license", + "fatal": true, + "choices": ["", "NonCommercial-"], + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["commercial_license"] + }, + "NonCommercial-" + ] + }, + "conventions_version": { + "help": "Version of the conventions used.", + "values": [ + { + "type": "func", + "origin": "vocabulary_server", + "keys": ["get_all_terms_in_collection"], + "options": { + "project_id": { + "type": "value", + "origin": "init", + "keys": ["vocabulary_project"] + }, + "collection_id": "conventions" + } + } + ] + }, + "data_specs_version": { + "help": "version label for the set of requirements and CVs followed in creating a file", + "values": [ + { + "type": "func", + "origin": "vocabulary_server", + "keys": ["get_all_terms_in_collection"], + "options": { + "project_id": { + "type": "value", + "origin": "init", + "keys": ["vocabulary_project"] + }, + "collection_id": "data_specs_version" + } + } + ] + }, + "drs_specs": { + "help": "label identifying the data reference syntax used to name files, define directory trees, and uniquely identify datasets.", + "values": [ + { + "type": "func", + "origin": "vocabulary_server", + "keys": ["get_all_terms_in_collection"], + "options": { + "project_id": { + "type": "value", + "origin": "init", + "keys": ["vocabulary_project"] + }, + "collection_id": "drs_specs" + } + } + ] + }, + "experiment": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["experiment"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "description"] + } + ] + }, + "forcing_index": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["forcing_index"], + "format": { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "f{}" + } + }, + "f1" + ] + }, + "HDL": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["HDL"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["HDL"] + }, + "21.14107" + ] + }, + "initialization_index": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["initialization_index"], + "format": { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "i{}" + } + }, + "i1" + ] + }, + "institution": { + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["institution"] + }, + { + "type": "value", + "origin": "common", + "keys": ["institution_input", "description"] + } + ] + }, + "institution_input": { + "help": "Institution information from input", + "forbidden_values": [null, ""], + "values": [ + { + "type": "func", + "origin": "vocabulary_server", + "keys": ["get_term_in_collection"], + "options": { + "project_id": { + "type": "value", + "origin": "init", + "keys": ["vocabulary_project"] + }, + "collection_id": "organisation", + "term_id": { + "type": "value", + "origin": "init", + "keys": ["institution_id"], + "format": { + "type": "func", + "origin": "functions_file", + "keys": ["format_id"] + } + } + } + } + ] + }, + "license": { + "help": "License elements", + "fatal": true, + "forbidden_values": [null, ""], + "values": [ + { + "type": "func", + "origin": "vocabulary_server", + "keys": ["get_term_in_collection"], + "options": { + "project_id": { + "type": "value", + "origin": "init", + "keys": ["vocabulary_project"] + }, + "collection_id": "license", + "term_id": { + "type": "value", + "origin": "common", + "keys": [ + "license_id" + ], + "format": { + "type": "func", + "origin": "self", + "keys": ["lower"] + } + } + } + } + ] + }, + "license_id": { + "help": "License id", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["license_id"] + }, + "cc-by-4-0" + ] + }, + "license_url": { + "help": "License url", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["license", "url"] + }, + "https://creativecommons.org/licenses" + ], + "target_type": "str" + }, + "member_id": { + "help": "Id of the member done.", + "forbidden_patterns": ["none-.*"], + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{sub_exp}-{variant}", + "options": { + "sub_exp": { + "type": "value", + "origin": "common", + "keys": ["sub_experiment_id"] + }, + "variant": { + "type": "value", + "origin": "common", + "keys": ["variant_label"] + } + } + }, + { + "type": "value", + "origin": "common", + "keys": ["variant_label"] + } + ] + }, + "mip_era_esgvoc": { + "help": "label to indicate the CMIP phase when an experiment was designed", + "values": [ + { + "type": "func", + "origin": "vocabulary_server", + "keys": ["get_all_terms_in_collection"], + "options": { + "project_id": { + "type": "value", + "origin": "init", + "keys": ["vocabulary_project"] + }, + "collection_id": "mip_era" + } + } + ] + }, + "mip_era": { + "help": "label to indicate the CMIP phase when an experiment was designed", + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["mip_era_esgvoc", 0, "drs_name"] + } + ] + }, + "parent_activity_id": { + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_activity_id"] + }, + { + "type": "value", + "origin": "simulation", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["parent_activity_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "parent_activity", "drs_name"] + } + ] + }, + "parent_experiment_id": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_experiment_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["parent_experiment_id"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "parent_experiment", "drs_name"] + } + ] + }, + "parent_mip_era": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_mip_era"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["CV_experiment", "parent_mip_era", "drs_name"] + } + ] + }, + "physics_index": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["physics_index"], + "format": { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "p{}" + } + }, + "p1" + ] + }, + "source": { + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": ["make_source_string"], + "options": { + "source": { + "type": "value", + "origin": "common", + "keys": ["source_input", "__dict__"] + }, + "source_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + } + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["source"] + } + ] + }, + "source_input": { + "help": "Source information from input", + "fatal": true, + "forbidden_values": [null, ""], + "values": [ + { + "type": "func", + "origin": "vocabulary_server", + "keys": ["get_term_in_collection"], + "options": { + "project_id": { + "type": "value", + "origin": "init", + "keys": ["vocabulary_project"] + }, + "collection_id": "model", + "term_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"], + "format": { + "type": "func", + "origin": "functions_file", + "keys": ["format_id"] + } + } + } + } + ] + }, + "title": { + "help": "Title to be put on output files", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": "title" + }, + { + "type": "value", + "origin": "laboratory", + "keys": "title" + }, + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{mip_era} {experiment_id} results from the {source_id} model.", + "options": { + "mip_era": { + "type": "value", + "origin": "common", + "keys": ["mip_era"] + }, + "experiment_id": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + }, + "source_id":{ + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + } + } + ] + }, + "variant_label": { + "help": "Label of the variant done.", + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{realization}{initialization}{physics}{forcing}", + "options": { + "realization": { + "type": "value", + "origin": "internal", + "keys": ["realization_index"] + }, + "initialization": { + "type": "value", + "origin": "common", + "keys": ["initialization_index"] + }, + "physics": { + "type": "value", + "origin": "common", + "keys": ["physics_index"] + }, + "forcing": { + "type": "value", + "origin": "common", + "keys": ["forcing_index"] + } + } + } + ] + } + }, + "project_settings": { + "context": { + "comments_list": ["DR_version", "CV_version", "conventions_version", "dr2xml_version", "lab_settings", "simulation_settings", "year"], + "comments_constraints": { + "CV_version": { + "help": "Controled vocabulary version used.", + "values": ["CMIP7-CV version ??"] + }, + "conventions_version": { + "help": "Conventions version used.", + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["conventions_version", 0, "drs_name"], + "format": "CMIP7_conventions_version {}" + } + ] + } + } + }, + "file_output": { + "common_list": ["variable", "variable_esgvoc", "branding_suffix"], + "common_constraints": { + "variable_esgvoc": { + "help": "Variable information from esgvoc", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "func", + "origin": "vocabulary_server", + "keys": "get_term_in_collection", + "options": { + "project_id": { + "type": "value", + "origin": "init", + "keys": ["vocabulary_project"] + }, + "collection_id": "branded_variable", + "term_id": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "official_label"], + "format": { + "type": "func", + "origin": "self", + "keys": ["lower"] + } + } + } + } + ] + }, + "branding_suffix": { + "help": "Suffix in the branded variable name", + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["branding_suffix"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "cmvar", "branding_suffix"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable_esgvoc", "branding_suffix_name"] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "type"] + }, + "check_to_perform": "neq", + "reference_values": ["cmor"], + "values": [ + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "mipTable"] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "type"] + }, + "check_to_perform": "neq", + "reference_values": ["cmor"], + "values": ["undef"] + } + ] + } + }, + "attrs_list": ["id", "name", "output_freq", "append", "output_level", "compression_level", "split_freq", + "split_freq_format", "split_start_offset", "split_end_offset", "split_last_date", "time_units", + "time_counter_name", "time_counter", "time_stamp_name", "time_stamp_format", "uuid_name", + "uuid_format", "convention_str", "synchronisation_frequency", "format"], + "attrs_constraints": { + "id": { + "help": "Id of the output file", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["id"] + }, + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{variable}_{branding_suffix}_{frequency}_{region}_{grid}", + "options": { + "branding_suffix": { + "type": "value", + "origin": "common_tag", + "keys": ["branding_suffix"] + }, + "frequency": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "frequency"] + }, + "grid": { + "type": "value", + "origin": "attrs", + "keys": ["grid_label"] + }, + "region": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "region"] + }, + "variable": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "label"] + } + } + } + ] + }, + "format": { + "values": ["netcdf4_classic"] + }, + "name": { + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": ["build_filename"], + "options": { + "variable_id": { + "type": "value", + "origin": "common_tag", + "keys": ["variable","label"] + }, + "branding_suffix": { + "type": "value", + "origin": "common_tag", + "keys": ["branding_suffix"] + }, + "frequency": { + "type": "value", + "origin": "common_tag", + "keys": ["variable","frequency"] + }, + "region": { + "type": "value", + "origin": "common_tag", + "keys": ["variable","region"] + }, + "grid_label": { + "type": "value", + "origin": "dict", + "keys": ["grid_label"] + }, + "source_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + }, + "expid_in_filename": { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + }, + "variant_label": { + "type": "value", + "origin": "common", + "keys": ["variant_label"] + }, + "date_range": { + "type": "value", + "origin": "common", + "keys": ["date_range"] + }, + "var_type": { + "type": "value", + "origin": "common_tag", + "keys": ["variable","type"] + }, + "list_perso_dev_file": { + "type": "value", + "origin": "common", + "keys": ["list_perso_dev_file"] + }, + "prefix": { + "type": "value", + "origin": "common", + "keys": ["prefix"] + } + } + } + ] + } + }, + "vars_list": ["activity_id", "area_label", "branch_time_in_child", "branch_time_in_parent", "branded_variable", + "branding_suffix", "Conventions", "data_specs_version", "drs_specs", "experiment", "expid_in_filename", + "external_variables", "forcing_index", "frequency", "grid_label", "history", "horizontal_label", + "initialization_index", "institution", "institution_id", "license", "mip_era", "nominal_resolution", + "parent_activity_id", "parent_experiment_id", "parent_mip_era", "parent_source_id", "parent_time_units", + "parent_variant_label","physics_index", "product", "realization_index", "realm", "region", "source_id", + "temporal_label", "variable_id", "variant_label", "vertical_label", "dr2xml_version" + ], + "vars_constraints": { + "activity_id": { + "fatal": true + }, + "area_label": { + "help": "Identifier of unmasked area type", + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["area_label"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "cmvar", "area_label"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable_esgvoc", "area_label"] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "type"] + }, + "check_to_perform": "neq", + "reference_values": ["cmor"], + "values": ["undef"] + } + ] + }, + "branded_variable": { + "help": "Full branded variable name", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["branded_variable"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable","official_label"] + } + ] + }, + "branding_suffix": { + "help": "Suffix in the branded variable name", + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "common_tag", + "keys": ["branding_suffix"] + } + ] + }, + "Conventions": { + "help": "CF version governing data (along with any other conventions applied)", + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["Conventions"] + }, + { + "type": "value", + "origin": "common", + "keys": ["conventions_version", 0, "drs_name"] + } + ] + }, + "cmip6_compound_name": { + "help": "Legacy table/variable name consistent with CMIP6", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["cmip6_compound_name"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "cmip6_compound_name"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable_esgvoc", "cmip6_compound_name"] + } + ] + }, + "data_specs_version": { + "help": "version label for the set of requirements and CVs followed in creating a file", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["data_specs_version"] + }, + { + "type": "value", + "origin": "common", + "keys": ["data_specs_version", 0, "drs_name"] + } + ] + }, + "drs_specs": { + "help": "version label for the set of requirements and CVs followed in creating a file", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["drs_specs"] + }, + { + "type": "value", + "origin": "common", + "keys": ["drs_specs", 0, "drs_name"] + } + ] + }, + "experiment_id": { + "fatal": true + }, + "forcing_index": { + "fatal": true, + "num_type": "string" + }, + "frequency": { + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["frequency"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "frequency"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable_esgvoc", "frequency"] + } + ] + }, + "grid_label": { + "fatal": true + }, + "horizontal_label": { + "help": "identifier of horizontal structure/sampling", + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["horizontal_label"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "cmvar", "horizontal_label"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable_esgvoc", "horizontal_label"] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "type"] + }, + "check_to_perform": "neq", + "reference_values": ["cmor"], + "values": ["undef"] + } + ] + }, + "initialization_index": { + "fatal": true, + "num_type": "string" + }, + "institution_id": { + "fatal": true + }, + "license": { + "fatal": true, + "output_key": "license_id", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["license"] + }, + { + "type": "value", + "origin": "common", + "keys": ["license", "drs_name"] + } + ] + }, + "mip_era": { + "help": "label to indicate the CMIP phase when an experiment was designed", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["mip_era"] + }, + { + "type": "value", + "origin": "common", + "keys": ["mip_era"] + } + ] + }, + "nominal_resolution": { + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["nominal_resolution"], + "format": { + "type": "func", + "origin": "self", + "keys": "replace", + "template": [" ", "-"] + } + } + ] + }, + "physics_index": { + "fatal": true, + "num_type": "string" + }, + "product": { + "fatal": true + }, + "realization_index": { + "fatal": true, + "num_type": "string" + }, + "realm": { + "fatal": true + }, + "region": { + "help": "the domain over which data are reported", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["region"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "region"] + } + ] + }, + "source_id": { + "fatal": true + }, + "temporal_label": { + "help": "Identifier of type of temporal sampling applied", + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["temporal_label"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "cmvar", "temporal_label"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable_esgvoc", "temporal_label"] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "type"] + }, + "check_to_perform": "neq", + "reference_values": ["cmor"], + "values": ["undef"] + } + ] + }, + "title": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["title"] + }, + { + "type": "value", + "origin": "common", + "keys": ["title"] + } + ] + }, + "variable_id": { + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["variable_id"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "label"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable_esgvoc", "variable_root_name"] + } + ] + }, + "variant_info": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["variant_info"] + }, + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{variant_info}. Information provided by this attribute may be flawed. Users can find more comprehensive and up-to-date documentation elsewhere.", + "options": { + "variant_info": { + "type": "value", + "origin": "common", + "keys": ["variant_info"] + } + } + } + ] + }, + "variant_label": { + "fatal": true + }, + "vertical_label": { + "help": "Identifier of vertical sampling applied", + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["vertical_label"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "cmvar", "vertical_label"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable_esgvoc", "vertical_label"] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "type"] + }, + "check_to_perform": "neq", + "reference_values": ["cmor"], + "values": ["undef"] + } + ] + } + } + } + } +} \ No newline at end of file diff --git a/dr2xml/projects/CMIP7.py b/dr2xml/projects/CMIP7.py deleted file mode 100644 index e59bbc01..00000000 --- a/dr2xml/projects/CMIP7.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -""" -CMIP7 python tools -""" - -from __future__ import print_function, division, absolute_import, unicode_literals - -from dr2xml.projects.projects_interface_definitions import ParameterSettings, ValueSettings, FunctionSettings, \ - TagSettings, ConditionSettings - -parent_project_settings = "CMIP6" - -internal_values = dict() - -common_values = dict() - -project_settings = dict() diff --git a/dr2xml/projects/CMIP7_func.py b/dr2xml/projects/CMIP7_func.py new file mode 100644 index 00000000..3ffd6fc5 --- /dev/null +++ b/dr2xml/projects/CMIP7_func.py @@ -0,0 +1,69 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +CMIP7 python tools +""" + +from __future__ import print_function, division, absolute_import, unicode_literals + + +from dr2xml.projects.dr2xml_func import sort_mips, format_sizes, get_logger +from dr2xml.projects.basics_func import build_external_variables, compute_nb_days +from dr2xml.projects.CMIP6_esgvoc_func import get_ids_from_list + + +def format_id(input_id): + return input_id.replace("-", "_").lower() + + +def make_source_string(source, source_id): + """ + From the dic of sources in CMIP6-CV, Creates the string representation of a + given model (source_id) according to doc on global_file_attributes, so : + + (): atmosphere: (, ); + ocean: (, ); sea_ice: (); + land: (); aerosol: (); + atmospheric_chemistry (); ocean_biogeochemistry (); + land_ice (); + + """ + # mpmoine_correction:make_source_string: pour lire correctement le fichier 'CMIP6_source_id.json' + logger = get_logger() + components = source['model_components'] + rep = source_id + " (" + str(source['release_year']) + "):" + for realm in ["aerosol", "atmos", "atmosChem", "land", "ocean", "ocnBgchem", "seaIce"]: + description = [component for component in components if component["component"] in [realm, ]] + if len(description) != 1: + logger.error("Either no component or several components found for realm %s: %s" % (realm, description)) + raise ValueError("Either no component or several components found for realm %s: %s" % (realm, description)) + else: + description = description[0]["name"] + if description not in ["none", "None", None]: + rep = rep + "\n" + realm + ": " + description + return rep + + +def build_filename(variable_id, branding_suffix, frequency, region, grid_label, source_id, expid_in_filename, + variant_label, date_range, var_type, list_perso_dev_file, prefix): + filename = "_".join(([variable_id, branding_suffix, frequency, region, grid_label, source_id, expid_in_filename, + variant_label])) + if var_type in ["perso", "dev"]: + with open(list_perso_dev_file, mode="a", encoding="utf-8") as list_perso_and_dev: + list_perso_and_dev.write(".*{}.*\n".format(filename)) + filename = prefix + filename + if frequency not in ["fx", ]: + filename = "_".join([filename, date_range]) + return filename + + +def fill_license(value, institution_id, info_url, license_id, license_url, commercial_license): + value = value.replace("", institution_id) + value = value.replace("", institution_id) + # TODO: Adapt next line + value = value.replace("[NonCommercial-]", commercial_license) + value = value.replace("", license_id) + value = value.replace("[ and at ]", " and at " + info_url) + value = value.replace("", license_url) + return value diff --git a/dr2xml/projects/CORDEX-CMIP6.json b/dr2xml/projects/CORDEX-CMIP6.json new file mode 100644 index 00000000..e6e01bba --- /dev/null +++ b/dr2xml/projects/CORDEX-CMIP6.json @@ -0,0 +1,713 @@ +{ + "parent_project_settings": "basics", + "functions_file": "CORDEX-CMIP6_func.py", + "internal": { + "required_model_components": { + "values": [[]] + }, + "additional_allowed_model_components": { + "values": [[]] + } + }, + "common": { + "conventions_version": { + "help": "Version of the conventions used.", + "values": [ + { + "type": "value", + "origin": "config", + "keys": ["CMIP6_conventions_version"] + }, + "CF-1.11", + { + "type": "value", + "origin": "laboratory", + "keys": ["conventions_version"] + } + ] + }, + "HDL": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["HDL"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["HDL"] + }, + "21.14103" + ] + }, + "domain": { + "help": "Dictionary which contains, for each context, the associated domain.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": [ + "domain", + { + "type": "value", + "origin": "internal", + "keys": ["context"] + } + ] + } + ] + }, + "domain_id": { + "help": "Id of the domain.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": [ + "domain_id", + { + "type": "value", + "origin": "internal", + "keys": ["context"] + } + ] + } + ] + }, + "driving_experiment": { + "help": "Name of the driving experiment.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["driving_experiment"] + } + ] + }, + "driving_institution_id": { + "help": "Id of the institution of the driving model.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["driving_institution_id"] + } + ] + }, + "driving_source_id": { + "help": "Id of the driving model.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["driving_source_id"] + } + ] + }, + "driving_variant_label": { + "help": "Variant label of the driving simulation.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["driving_variant_label"] + } + ] + }, + "version_realization": { + "help": "Realization of the current simulation.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["version_realization"] + }, + "v1-r1" + ] + }, + "Lambert_conformal_longitude_of_central_meridian": { + "help": "Longitude of central meridian of the Lambert conformal projection.", + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["Lambert_conformal_longitude_of_central_meridian"] + } + ] + }, + "Lambert_conformal_standard_parallel": { + "help": "Standard parallel of the Lambert conformal projection.", + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["Lambert_conformal_standard_parallel"] + } + ] + }, + "Lambert_conformal_latitude_of_projection_origin": { + "help": "Latitude of central meridian of the Lambert conformal projection.", + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["Lambert_conformal_latitude_of_projection_origin"] + } + ] + } + }, + "project_settings": { + "context": { + "comments_list": ["DR_version", "CV_version", "conventions_version", "dr2xml_version", "lab_settings", "simulation_settings", "year"], + "comments_constraints": { + "CV_version": { + "help": "Controled vocabulary version used.", + "values": ["CMIP6-CV version ??"] + }, + "conventions_version": { + "help": "Conventions version used.", + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["conventions_version"], + "format": "CMIP6_conventions_version {}" + } + ] + } + } + }, + "file_output": { + "attrs_constraints": { + "name": { + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": ["build_filename"], + "options": { + "frequency": { + "type": "value", + "origin": "variable", + "keys": ["frequency"] + }, + "prefix": { + "type": "value", + "origin": "common", + "keys": ["prefix"] + }, + "source_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + }, + "expid_in_filename": { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + }, + "date_range": { + "type": "value", + "origin": "common", + "keys": ["date_range"] + }, + "var_type": { + "type": "value", + "origin": "variable", + "keys": ["type"] + }, + "list_perso_dev_file": { + "type": "value", + "origin": "common", + "keys": ["list_perso_dev_file"] + }, + "label": { + "type": "value", + "origin": "variable", + "keys": ["label"] + }, + "mipVarLabel": { + "type": "value", + "origin": "variable", + "keys": ["mipVarLabel"] + }, + "use_cmorvar": { + "type": "value", + "origin": "internal", + "keys": ["use_cmorvar_label_in_filename"] + }, + "domain_id": { + "type": "value", + "origin": "common", + "keys": ["domain_id"] + }, + "driving_source_id": { + "type": "value", + "origin": "common", + "keys": ["driving_source_id"] + }, + "driving_variant_label": { + "type": "value", + "origin": "common", + "keys": ["driving_variant_label"] + }, + "institution_id": { + "type": "value", + "origin": "init", + "keys": ["institution_id"] + }, + "version_realization": { + "type": "value", + "origin": "common", + "keys": ["version_realization"] + } + } + } + ] + } + }, + "vars_list": ["activity_id", "comment", "contact", "conventions_version", "dr2xml_version", "domain", "domain_id", + "driving_experiment", "driving_experiment_id", "driving_institution_id", "driving_source_id", + "driving_variant_label", "expid_in_filename", "external_variables", "frequency", "grid", "history", + "institution","institution_id", "Lambert_conformal_longitude_of_central_meridian", + "Lambert_conformal_standard_parallel", "Lambert_conformal_latitude_of_projection_origin", + "license", "mip_era", "nominal_resolution", "product", "project_id", "realm", "references", + "source", "source_id", "source_type", "title", "variable_id", "version_realization"], + "vars_constraints": { + "variable_id": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["variable_id"] + }, + { + "type": "value", + "origin": "variable", + "keys": ["mipVarLabel"] + } + ] + }, + "nominal_resolution": { + "output_key": "native_resolution" + }, + "version_realization": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["version_realization"] + }, + { + "type": "value", + "origin": "common", + "keys": ["version_realization"] + } + ] + }, + "conventions_version": { + "output_key": "Conventions", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["conventions_version"] + }, + { + "type": "value", + "origin": "common", + "keys": ["convention_versions"] + } + ] + }, + "domain": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["domain"] + }, + { + "type": "value", + "origin": "common", + "keys": ["domain"] + } + ] + }, + "domain_id": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["domain_id"] + }, + { + "type": "value", + "origin": "common", + "keys": ["domain_id"] + } + ] + }, + "driving_source_id": { + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["driving_source_id"] + }, + { + "type": "value", + "origin": "common", + "keys": ["driving_source_id"] + } + ] + }, + "driving_variant_label": { + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["driving_variant_label"] + }, + { + "type": "value", + "origin": "common", + "keys": ["driving_variant_label"] + } + ] + }, + "driving_experiment_id": { + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["driving_experiment_id"] + }, + { + "type": "value", + "origin": "common", + "keys": ["driving_experiment_id"] + } + ] + }, + "driving_experiment": { + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["driving_experiment"] + }, + { + "type": "value", + "origin": "common", + "keys": ["driving_experiment"] + } + ] + }, + "driving_institution_id": { + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["driving_institution_id"] + }, + { + "type": "value", + "origin": "common", + "keys": ["driving_institution_id"] + } + ] + }, + "further_info_url": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["further_info_url"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["info_url"] + } + ] + }, + "Lambert_conformal_longitude_of_central_meridian": { + "help": "Longitude of central meridian of the Lambert conformal projection.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["context"] + }, + "check_to_perform": "eq", + "reference_values": ["surfex"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["Lambert_conformal_longitude_of_central_meridian"] + }, + { + "type": "value", + "origin": "common", + "keys": ["Lambert_conformal_longitude_of_central_meridian"] + } + ] + } + ] + }, + "Lambert_conformal_standard_parallel": { + "help": "Standard parallel of the Lambert conformal projection.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["context"] + }, + "check_to_perform": "eq", + "reference_values": ["surfex"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["Lambert_conformal_standard_parallel"] + }, + { + "type": "value", + "origin": "common", + "keys": ["Lambert_conformal_standard_parallel"] + } + ] + } + ] + }, + "Lambert_conformal_latitude_of_projection_origin": { + "help": "Latitude of central meridian of the Lambert conformal projection.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["context"] + }, + "check_to_perform": "eq", + "reference_values": ["surfex"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["Lambert_conformal_latitude_of_projection_origin"] + }, + { + "type": "value", + "origin": "common", + "keys": ["Lambert_conformal_latitude_of_projection_origin"] + } + ] + } + ] + }, + "license": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["license"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["license"] + } + ] + }, + "mip_era": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["mip_era"] + }, + { + "type": "value", + "origin": "simulation", + "keys": ["mip_era"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["mip_era"] + }, + "CMIP6" + ] + }, + "product": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["product"] + }, + "model-output" + ] + }, + "project_id": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["project_id"] + }, + "CORDEX-CMIP6" + ] + }, + "source_id": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["source_id"] + }, + { + "type": "value", + "origin": "simulation", + "keys": ["source_id"] + } + ] + }, + "source": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["source"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": [ + "source_description", + { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + ] + } + ] + }, + "source_type": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["source_type"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": [ + "source_types", + { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + ] + } + ] + }, + "title": { + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{source} model output prepared for {project} / {expid} simulation driven by {driving}", + "options": { + "source": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + }, + "project": "CORDEX-CMIP6", + "driving": { + "type": "value", + "origin": "common", + "keys": ["driving_experiment"] + }, + "expid": { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + } + } + } + ] + } + } + }, + "field_output": { + "attrs_constraints": { + "cell_methods": { + "corrections": { + "area: time: mean": "time: mean" + } + } + }, + "vars_list": ["comment", "standard_name", "description", "long_name", "history", "units", + "cell_methods", "cell_measures", "flag_meanings", "flag_values", "grid_mapping"], + "vars_constraints": { + "grid_mapping": { + "help": "Grid mapping associated with the file.", + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["context"] + }, + "check_to_perform": "eq", + "reference_values": ["surfex"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["grid_mapping"] + }, + "crs" + ] + } + ] + }, + "cell_methods": { + "corrections": { + "area: time: mean": "time: mean" + } + } + } + } + } +} \ No newline at end of file diff --git a/dr2xml/projects/CORDEX-CMIP6.py b/dr2xml/projects/CORDEX-CMIP6.py deleted file mode 100644 index 434cefb4..00000000 --- a/dr2xml/projects/CORDEX-CMIP6.py +++ /dev/null @@ -1,458 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -""" -CORDEX python tools -""" - -from __future__ import print_function, division, absolute_import, unicode_literals - -from dr2xml.projects.projects_interface_definitions import ParameterSettings, ValueSettings, TagSettings, \ - FunctionSettings, ConditionSettings - - -def build_filename(frequency, prefix, source_id, expid_in_filename, date_range, var_type, list_perso_dev_file, label, - mipVarLabel, domain_id, driving_source_id, driving_variant_label, institution_id, - version_realization, use_cmorvar=False): - if "fx" in frequency: - varname_for_filename = label - else: - if use_cmorvar: - varname_for_filename = label - else: - varname_for_filename = mipVarLabel - # DR21 has a bug with tsland : the MIP variable is named "ts" - if label in ["tsland", ]: - varname_for_filename = "tsland" - filename = "_".join(([elt for elt in [varname_for_filename, domain_id, driving_source_id, expid_in_filename, - driving_variant_label, institution_id, source_id, - version_realization, frequency] if - len(str(elt)) > 0])) - if var_type in ["perso", "dev"]: - with open(list_perso_dev_file, mode="a", encoding="utf-8") as list_perso_and_dev: - list_perso_and_dev.write(".*{}.*\n".format(filename)) - filename = prefix + filename - if "fx" not in frequency: - if frequency in ["1hrCM", "monC"]: - suffix = "-clim" - else: - suffix = "" - filename = "_".join([filename, date_range + suffix]) - return filename - - -parent_project_settings = "basics" - -internal_values = dict( - required_model_components=ParameterSettings( - key="required_model_components", - default_values=[ - list() - ] - ), - additional_allowed_model_components=ParameterSettings( - key="additional_allowed_model_components", - default_values=[ - list() - ] - ) -) - -common_values = dict( - conventions_version=ParameterSettings( - key="conventions_version", - default_values=[ - "CF-1.11", - ValueSettings(key_type="laboratory", keys="conventions_version") - ] - ), - HDL=ParameterSettings( - key="HDL", - default_values=[ - ValueSettings(key_type="simulation", keys="HDL"), - ValueSettings(key_type="laboratory", keys="HDL"), - "21.14103" - ] - ), - domain=ParameterSettings( - key="domain", - default_values=[ - ValueSettings( - key_type="simulation", - keys=[ - "domain", - ValueSettings(key_type="internal", keys="context") - ] - ) - ] - ), - domain_id=ParameterSettings( - key="domain_id", - default_values=[ - ValueSettings( - key_type="simulation", - keys=[ - "domain_id", - ValueSettings(key_type="internal", keys="context") - ] - ) - ] - ), - driving_experiment=ParameterSettings( - key="driving_experiment", - default_values=[ - ValueSettings( - key_type="simulation", - keys="driving_experiment" - ) - ] - ), - driving_experiment_id=ParameterSettings( - key="driving_experiment_id", - default_values=[ - ValueSettings( - key_type="simulation", - keys="driving_experiment_id" - ) - ] - ), - driving_institution_id=ParameterSettings( - key="driving_institution_id", - default_values=[ - ValueSettings( - key_type="simulation", - keys="driving_institution_id" - ) - ] - ), - driving_source_id=ParameterSettings( - key="driving_source_id", - default_values=[ - ValueSettings( - key_type="simulation", - keys="driving_source_id" - ) - ] - ), - driving_variant_label=ParameterSettings( - key="driving_variant_label", - default_values=[ - ValueSettings( - key_type="simulation", - keys="driving_variant_label" - ) - ] - ), - version_realization=ParameterSettings( - key="version_realization", - default_values=[ - ValueSettings( - key_type="simulation", - keys="version_realization" - ), - "v1-r1" - ] - ), - Lambert_conformal_longitude_of_central_meridian=ParameterSettings( - key="Lambert_conformal_longitude_of_central_meridian", - default_values=[ - ValueSettings( - key_type="simulation", - keys="Lambert_conformal_longitude_of_central_meridian" - ) - ] - ), - Lambert_conformal_standard_parallel=ParameterSettings( - key="Lambert_conformal_standard_parallel", - default_values=[ - ValueSettings( - key_type="simulation", - keys="Lambert_conformal_standard_parallel" - ) - ] - ), - Lambert_conformal_latitude_of_projection_origin=ParameterSettings( - key="Lambert_conformal_latitude_of_projection_origin", - default_values=[ - ValueSettings( - key_type="simulation", - keys="Lambert_conformal_latitude_of_projection_origin" - ) - ] - ), -) - -project_settings = dict( - context=TagSettings( - comments_list=["DR_version", "CV_version", "conventions_version", "dr2xml_version", "lab_settings", - "simulation_settings", "year"], - comments_constraints=dict( - CV_version=ParameterSettings( - key="CV_version", - default_values=["CMIP6-CV version ??", ] - ), - conventions_version=ParameterSettings( - key="conventions_version", - default_values=[ - ValueSettings(key_type="common", keys="conventions_version", fmt="CMIP6_conventions_version {}") - ] - ) - ) - ), - file_output=TagSettings( - attrs_constraints=dict( - name=ParameterSettings( - key="name", - default_values=[ - ValueSettings(func=FunctionSettings( - func=build_filename, - options=dict( - frequency=ValueSettings(key_type="variable", keys="frequency"), - prefix=ValueSettings(key_type="common", keys="prefix"), - source_id=ValueSettings(key_type="internal", keys="source_id"), - expid_in_filename=ValueSettings(key_type="common", keys="expid_in_filename"), - date_range=ValueSettings(key_type="common", keys="date_range"), - var_type=ValueSettings(key_type="variable", keys="type"), - list_perso_dev_file=ValueSettings(key_type="common", keys="list_perso_dev_file"), - label=ValueSettings(key_type="variable", keys="label"), - mipVarLabel=ValueSettings(key_type="variable", keys="mipVarLabel"), - use_cmorvar=ValueSettings(key_type="internal", keys="use_cmorvar_label_in_filename"), - domain_id=ValueSettings(key_type="common", keys="domain_id"), - driving_source_id=ValueSettings(key_type="common", keys="driving_source_id"), - driving_variant_label=ValueSettings(key_type="common", keys="driving_variant_label"), - institution_id=ValueSettings(key_type="internal", keys="institution_id"), - version_realization=ValueSettings(key_type="common", keys="version_realization") - ) - )) - ], - fatal=True - ) - ), - vars_list=["activity_id", "comment", "contact", "conventions_version", "dr2xml_version", - "domain", "domain_id", - "driving_experiment", "driving_experiment_id", "driving_institution_id", - "driving_source_id", "driving_variant_label", - "expid_in_filename", # EXPID - "external_variables", "frequency", "grid", - "history","institution","institution_id", - "Lambert_conformal_longitude_of_central_meridian", "Lambert_conformal_standard_parallel", - "Lambert_conformal_latitude_of_projection_origin", - "license", "mip_era", "nominal_resolution", - "product", "project_id", - "realm", "references", "source", "source_id", "source_type", - "title", "variable_id", "version_realization"], - # rajoutés par xios : creation_date, tracking_id - vars_constraints=dict( - variable_id=ParameterSettings( - key="variable_id", - default_values=[ - ValueSettings(key_type="variable", keys="mipVarLabel") - ] - ), - nominal_resolution=ParameterSettings( - key="nominal_resolution", - output_key="native_resolution" - ), - version_realization=ParameterSettings( - key="version_realization", - default_values=[ - ValueSettings(key_type="common", keys="version_realization") - ] - ), - conventions_version=ParameterSettings( - key="conventions_version", - default_values=[ - ValueSettings(key_type="common", keys="conventions_version") - ], - output_key="Conventions" - ), - domain=ParameterSettings( - key="domain", - default_values=[ - ValueSettings(key_type="common", keys="domain") - ] - ), - domain_id=ParameterSettings( - key="domain_id", - default_values=[ - ValueSettings(key_type="common", keys="domain_id") - ] - ), - driving_source_id=ParameterSettings( - key="driving_source_id", - default_values=[ - ValueSettings(key_type="common", keys="driving_source_id") - ], - fatal=True - ), - driving_variant_label=ParameterSettings( - key="driving_variant_label", - default_values=[ - ValueSettings(key_type="common", keys="driving_variant_label") - ], - fatal=True - ), - driving_experiment_id=ParameterSettings( - key="driving_experiment_id", - default_values=[ - ValueSettings(key_type="common", keys="driving_experiment_id") - ], - fatal=True - ), - driving_experiment=ParameterSettings( - key="driving_experiment", - default_values=[ - ValueSettings(key_type="common", keys="driving_experiment") - ], - fatal=True - ), - driving_institution_id=ParameterSettings( - key="driving_institution_id", - default_values=[ - ValueSettings(key_type="common", keys="driving_institution_id") - ], - fatal=True - ), - further_info_url=ParameterSettings( - key="further_info_url", - default_values=[ - ValueSettings(key_type="laboratory", keys="info_url"), - ] - ), - Lambert_conformal_longitude_of_central_meridian=ParameterSettings( - key="Lambert_conformal_longitude_of_central_meridian", - default_values=[ - ValueSettings(key_type="common", keys="Lambert_conformal_longitude_of_central_meridian") - ], - skip_values=["", "None", None], - conditions=[ - ConditionSettings( - check_value=ValueSettings(key_type="internal", keys="context"), - check_to_do="eq", reference_values="surfex" - ) - ] - ), - Lambert_conformal_standard_parallel=ParameterSettings( - key="Lambert_conformal_standard_parallel", - default_values=[ - ValueSettings(key_type="common", keys="Lambert_conformal_standard_parallel") - ], - skip_values=["", "None", None], - conditions=[ - ConditionSettings( - check_value=ValueSettings(key_type="internal", keys="context"), - check_to_do="eq", reference_values="surfex" - ) - ] - ), - Lambert_conformal_latitude_of_projection_origin=ParameterSettings( - key="Lambert_conformal_latitude_of_projection_origin", - default_values=[ - ValueSettings(key_type="common", keys="Lambert_conformal_latitude_of_projection_origin") - ], - skip_values=["", "None", None], - conditions=[ - ConditionSettings( - check_value=ValueSettings(key_type="internal", keys="context"), - check_to_do="eq", reference_values="surfex" - ) - ] - ), - license=ParameterSettings( - key="license", - default_values=[ - ValueSettings(key_type="laboratory", keys="license"), - ] - ), - mip_era=ParameterSettings( - key="mip_era", - default_values=[ - ValueSettings(key_type="simulation", keys="mip_era"), - ValueSettings(key_type="laboratory", keys="mip_era"), - "CMIP6" - ] - ), - product=ParameterSettings( - key="product", - default_values=["model-output", ] - ), - project_id=ParameterSettings( - key="project_id", - default_values=["CORDEX-CMIP6", ] - ), - source_id=ParameterSettings( - key="source_id", - default_values=[ - ValueSettings(key_type="simulation", keys="source_id"), - ] - ), - source=ParameterSettings( - key="source", - default_values=[ - ValueSettings( - key_type="laboratory", - keys=[ - "source_description", - ValueSettings(key_type="internal", keys="source_id") - ] - ) - ] - ), - source_type=ParameterSettings( - key="source_type", - default_values=[ - ValueSettings( - key_type="laboratory", - keys=[ - "source_types", - ValueSettings(key_type="internal", keys="source_id") - ] - ) - ] - ), - title=ParameterSettings( - key="title", - default_values=[ - ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="internal", keys="source_id"), - "CORDEX-CMIP6", - ValueSettings(key_type="common", keys="expid_in_filename"), - ValueSettings(key_type="common", keys="driving_experiment") - ], - fmt="{} model output prepared for {} / {} simulation driven by {}" - ), - ] - ) - ) - ), - field_output=TagSettings( - attrs_constraints=dict( - cell_methods=ParameterSettings( - key="cell_methods", - corrections={ - "area: time: mean": "time: mean" - } - ) - ), - vars_list=["comment", "standard_name", "description", "long_name", "history", "units", - "cell_methods", "cell_measures", "flag_meanings", "flag_values", "grid_mapping"], - vars_constraints=dict( - grid_mapping=ParameterSettings( - key="grid_mapping", - default_values=["crs", ], - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="internal", keys="context"), - check_to_do="eq", reference_values="surfex") - ] - ), - cell_methods=ParameterSettings( - key="cell_methods", - corrections={ - "area: time: mean": "time: mean" - } - ) - ) - ) -) diff --git a/dr2xml/projects/CORDEX-CMIP6_func.py b/dr2xml/projects/CORDEX-CMIP6_func.py new file mode 100644 index 00000000..c59b947d --- /dev/null +++ b/dr2xml/projects/CORDEX-CMIP6_func.py @@ -0,0 +1,41 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +CMIP6 python tools +""" + +from __future__ import print_function, division, absolute_import, unicode_literals + + +from dr2xml.projects.dr2xml_func import sort_mips, format_sizes +from dr2xml.projects.basics_func import build_external_variables, compute_nb_days + +def build_filename(frequency, prefix, source_id, expid_in_filename, date_range, var_type, list_perso_dev_file, label, + mipVarLabel, domain_id, driving_source_id, driving_variant_label, institution_id, + version_realization, use_cmorvar=False): + if "fx" in frequency: + varname_for_filename = label + else: + if use_cmorvar: + varname_for_filename = label + else: + varname_for_filename = mipVarLabel + # DR21 has a bug with tsland : the MIP variable is named "ts" + if label in ["tsland", ]: + varname_for_filename = "tsland" + filename = "_".join(([elt for elt in [varname_for_filename, domain_id, driving_source_id, expid_in_filename, + driving_variant_label, institution_id, source_id, + version_realization, frequency] if + len(str(elt)) > 0])) + if var_type in ["perso", "dev"]: + with open(list_perso_dev_file, mode="a", encoding="utf-8") as list_perso_and_dev: + list_perso_and_dev.write(".*{}.*\n".format(filename)) + filename = prefix + filename + if "fx" not in frequency: + if frequency in ["1hrCM", "monC"]: + suffix = "-clim" + else: + suffix = "" + filename = "_".join([filename, date_range + suffix]) + return filename \ No newline at end of file diff --git a/dr2xml/projects/CORDEX.json b/dr2xml/projects/CORDEX.json new file mode 100644 index 00000000..efc6ccf5 --- /dev/null +++ b/dr2xml/projects/CORDEX.json @@ -0,0 +1,585 @@ +{ + "parent_project_settings": "basics", + "functions_file": "CORDEX_func.py", + "internal": { + "required_model_components": { + "values": [[]] + }, + "additional_allowed_model_components": { + "values": [[]] + } + }, + "common": { + "conventions_version": { + "help": "Version of the conventions used.", + "values": [ + { + "type": "value", + "origin": "config", + "keys": ["CMIP6_conventions_version"] + } + ] + }, + "HDL": { + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["HDL"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["HDL"] + }, + "21.14103" + ] + }, + "variant_label": { + "help": "Label of the variant done.", + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "r{realization}i{initialization}p{physics}f{forcing}", + "options": { + "realization": { + "type": "value", + "origin": "internal", + "keys": ["realization_index"] + }, + "initialization": { + "type": "value", + "origin": "common", + "keys": ["initialization_index"] + }, + "physics": { + "type": "value", + "origin": "common", + "keys": ["physics_index"] + }, + "forcing": { + "type": "value", + "origin": "common", + "keys": ["forcing_index"] + } + } + } + ] + }, + "CORDEX_domain": { + "help": "Dictionary which contains, for each context, the associated CORDEX domain.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": [ + "CORDEX_domain", + { + "type": "value", + "origin": "internal", + "keys": ["context"] + } + ] + } + ] + }, + "driving_model_id": { + "help": "Id of the driving model.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["driving_model_id"] + } + ] + }, + "driving_model_ensemble_member": { + "help": "Member of the simulation which drives the simulation.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["driving_model_ensemble_member"] + } + ] + }, + "driving_experiment_name": { + "help": "Name of the experiment which drives the current simulation.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["driving_experiment_name"] + } + ] + }, + "driving_experiment": { + "help": "Id of the experiment which drives the current simulation.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["driving_experiment"] + } + ] + }, + "Lambert_conformal_longitude_of_central_meridian": { + "help": "Longitude of central meridian of the Lambert conformal projection.", + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["Lambert_conformal_longitude_of_central_meridian"] + } + ] + }, + "Lambert_conformal_standard_parallel": { + "help": "Standard parallel of the Lambert conformal projection.", + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["Lambert_conformal_standard_parallel"] + } + ] + }, + "Lambert_conformal_latitude_of_projection_origin": { + "help": "Latitude of central meridian of the Lambert conformal projection.", + "fatal": true, + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["Lambert_conformal_latitude_of_projection_origin"] + } + ] + }, + "rcm_version_id": { + "help": "Version id of the regional model used.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["rcm_version_id"] + } + ] + } + }, + "project_settings": { + "context": { + "comments_list": ["DR_version", "CV_version", "conventions_version", "dr2xml_version", "lab_settings", "simulation_settings", "year"], + "comments_constraints": { + "CV_version": { + "help": "Controled vocabulary version used.", + "values": ["CMIP6-CV version ??"] + }, + "conventions_version": { + "help": "Conventions version used.", + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["conventions_version"], + "format": "CMIP6_conventions_version {}" + } + ] + } + } + }, + "file_output": { + "attrs_constraints": { + "name": { + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": ["build_filename"], + "options": { + "frequency": { + "type": "value", + "origin": "variable", + "keys": ["frequency"] + }, + "prefix": { + "type": "value", + "origin": "common", + "keys": ["prefix"] + }, + "source_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + }, + "expid_in_filename": { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + }, + "date_range": { + "type": "value", + "origin": "common", + "keys": ["date_range"] + }, + "var_type": { + "type": "value", + "origin": "variable", + "keys": ["type"] + }, + "list_perso_dev_file": { + "type": "value", + "origin": "common", + "keys": ["list_perso_dev_file"] + }, + "label": { + "type": "value", + "origin": "variable", + "keys": ["label"] + }, + "mipVarLabel": { + "type": "value", + "origin": "variable", + "keys": ["mipVarLabel"] + }, + "use_cmorvar": { + "type": "value", + "origin": "internal", + "keys": ["use_cmorvar_label_in_filename"] + }, + "CORDEX_domain": { + "type": "value", + "origin": "common", + "keys": ["CORDEX_domain"] + }, + "driving_model_id": { + "type": "value", + "origin": "common", + "keys": ["driving_model_id"] + }, + "driving_model_ensemble_member": { + "type": "value", + "origin": "common", + "keys": ["driving_model_ensemble_member"] + }, + "rcm_version_id": { + "type": "value", + "origin": "common", + "keys": ["rcm_version_id"] + } + } + } + ] + } + }, + "vars_list": ["activity_id", "contact", "data_specs_version", "dr2xml_version", "expid_in_filename", + "external_variables", "frequency", "grid", "grid_label", "nominal_resolution", "comment", "history", + "institution_id", "CORDEX_domain", "driving_model_id", "driving_model_ensemble_member", + "driving_experiment_name", "driving_experiment", "Lambert_conformal_longitude_of_central_meridian", + "Lambert_conformal_standard_parallel", "Lambert_conformal_latitude_of_projection_origin", + "institution", "parent_experiment_id", "parent_mip_era", "parent_activity_id", "parent_source_id", + "parent_time_units", "parent_variant_label", "branch_time_in_parent", "branch_time_in_child", + "product", "realization_index", "realm", "references", "source", "source_id", "table_id", "title", + "variable_id"], + "vars_constraints": { + "variable_id": { + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["variable_id"] + }, + { + "type": "value", + "origin": "variable", + "keys": ["mipVarLabel"] + } + ] + }, + "institution_id": { + "output_key": "institute_id" + }, + "CORDEX_domain": { + "help": "Dictionary which contains, for each context, the associated CORDEX domain.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["CORDEX_domain"] + }, + { + "type": "value", + "origin": "common", + "keys": ["CORDEX_domain"] + } + ] + }, + "driving_model_id": { + "help": "Id of the driving model.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["driving_model_id"] + }, + { + "type": "value", + "origin": "common", + "keys": ["driving_model_id"] + } + ] + }, + "driving_model_ensemble_member": { + "help": "Member of the simulation which drives the simulation.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["driving_model_ensemble_member"] + }, + { + "type": "value", + "origin": "common", + "keys": ["driving_model_ensemble_member"] + } + ] + }, + "driving_experiment_name": { + "help": "Name of the experiment which drives the current simulation.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["driving_experiment_name"] + }, + { + "type": "value", + "origin": "common", + "keys": ["driving_experiment_name"] + } + ] + }, + "driving_experiment": { + "help": "Id of the experiment which drives the current simulation.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["driving_experiment"] + }, + { + "type": "value", + "origin": "common", + "keys": ["driving_experiment"] + } + ] + }, + "Lambert_conformal_longitude_of_central_meridian": { + "help": "Longitude of central meridian of the Lambert conformal projection.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["context"] + }, + "check_to_perform": "eq", + "reference_values": ["surfex"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["Lambert_conformal_longitude_of_central_meridian"] + }, + { + "type": "value", + "origin": "common", + "keys": ["Lambert_conformal_longitude_of_central_meridian"] + } + ] + } + ] + }, + "Lambert_conformal_standard_parallel": { + "help": "Standard parallel of the Lambert conformal projection.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["context"] + }, + "check_to_perform": "eq", + "reference_values": ["surfex"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["Lambert_conformal_standard_parallel"] + }, + { + "type": "value", + "origin": "common", + "keys": ["Lambert_conformal_standard_parallel"] + } + ] + } + ] + }, + "Lambert_conformal_latitude_of_projection_origin": { + "help": "Latitude of central meridian of the Lambert conformal projection.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["context"] + }, + "check_to_perform": "eq", + "reference_values": ["surfex"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["Lambert_conformal_latitude_of_projection_origin"] + }, + { + "type": "value", + "origin": "common", + "keys": ["Lambert_conformal_latitude_of_projection_origin"] + } + ] + } + ] + }, + "product": { + "help": "Id of the driving model.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["product"] + }, + "output" + ] + }, + "source": { + "fatal": true, + "output_key": "project_id" + }, + "source_id": { + "output_key": "model_id" + }, + "title": { + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{source} model output prepared for {project} and {activity} / {expid} simulation", + "options": { + "source": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + }, + "project": "CMIP6", + "activity": { + "type": "value", + "origin": "common", + "keys": ["activity_id"] + }, + "expid": { + "type": "value", + "origin": "simulation", + "keys": ["expid_in_filename"] + } + } + }, + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{source} model output prepared for {project} / {activity} {expid}", + "options": { + "source": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + }, + "project": "CMIP6", + "activity": { + "type": "value", + "origin": "common", + "keys": ["activity_id"] + }, + "expid": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + } + } + } + ] + } + } + }, + "field_output": { + "attrs_constraints": { + "cell_methods": { + "corrections": { + "area: time: mean": "time: mean" + } + } + }, + "vars_list": ["comment", "standard_name", "description", "long_name", "history", "units", + "cell_methods", "cell_measures", "flag_meanings", "flag_values", "grid_mapping"], + "vars_constraints": { + "grid_mapping": { + "help": "Grid mapping associated with the file.", + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["context"] + }, + "check_to_perform": "eq", + "reference_values": ["surfex"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["grid_mapping"] + }, + "Lambert_Conformal" + ] + } + ] + }, + "cell_methods": { + "corrections": { + "area: time: mean": "time: mean" + } + } + } + } + } +} \ No newline at end of file diff --git a/dr2xml/projects/CORDEX.py b/dr2xml/projects/CORDEX.py deleted file mode 100644 index ffe372e1..00000000 --- a/dr2xml/projects/CORDEX.py +++ /dev/null @@ -1,405 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -""" -CORDEX python tools -""" - -from __future__ import print_function, division, absolute_import, unicode_literals - -from dr2xml.projects.projects_interface_definitions import ParameterSettings, ValueSettings, TagSettings, \ - FunctionSettings, ConditionSettings - - -def build_filename(frequency, prefix, source_id, expid_in_filename, date_range, var_type, list_perso_dev_file, label, - mipVarLabel, CORDEX_domain, driving_model_id, driving_model_ensemble_member, rcm_version_id, - use_cmorvar=False): - if "fx" in frequency: - varname_for_filename = label - else: - if use_cmorvar: - varname_for_filename = label - else: - varname_for_filename = mipVarLabel - # DR21 has a bug with tsland : the MIP variable is named "ts" - if label in ["tsland", ]: - varname_for_filename = "tsland" - filename = "_".join(([elt for elt in [varname_for_filename, CORDEX_domain, driving_model_id, expid_in_filename, - driving_model_ensemble_member, source_id, rcm_version_id, frequency] if - len(str(elt)) > 0])) - if var_type in ["perso", "dev"]: - with open(list_perso_dev_file, mode="a", encoding="utf-8") as list_perso_and_dev: - list_perso_and_dev.write(".*{}.*\n".format(filename)) - filename = prefix + filename - if "fx" not in frequency: - if frequency in ["1hrCM", "monC"]: - suffix = "-clim" - else: - suffix = "" - filename = "_".join([filename, date_range + suffix]) - return filename - - -parent_project_settings = "basics" - -internal_values = dict( - required_model_components=ParameterSettings( - key="required_model_components", - default_values=[ - list() - ] - ), - additional_allowed_model_components=ParameterSettings( - key="additional_allowed_model_components", - default_values=[ - list() - ] - ) -) - -common_values = dict( - conventions_version=ParameterSettings( - key="conventions_version", - default_values=[ - ValueSettings(key_type="config", keys="CMIP6_conventions_version") - ], - help="Version of the conventions used." - ), - HDL=ParameterSettings( - key="HDL", - default_values=[ - ValueSettings(key_type="simulation", keys="HDL"), - ValueSettings(key_type="laboratory", keys="HDL"), - "21.14103" - ] - ), - variant_label=ParameterSettings( - key="variant_label", - default_values=[ - ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="internal", keys="realization_index"), - ValueSettings(key_type="common", keys="initialization_index"), - ValueSettings(key_type="common", keys="physics_index"), - ValueSettings(key_type="common", keys="forcing_index") - ], - fmt="r{}i{}p{}f{}" - ) - ], - help="Label of the variant done." - ), - CORDEX_domain=ParameterSettings( - key="CORDEX_domain", - default_values=[ - ValueSettings( - key_type="simulation", - keys=[ - "CORDEX_domain", - ValueSettings(key_type="internal", keys="context") - ] - ) - ], - help="Dictionary which contains, for each context, the associated CORDEX domain." - ), - driving_model_id=ParameterSettings( - key="driving_model_id", - default_values=[ - ValueSettings( - key_type="simulation", - keys="driving_model_id" - ) - ], - help="Id of the driving model." - ), - driving_model_ensemble_member=ParameterSettings( - key="driving_model_ensemble_member", - default_values=[ - ValueSettings( - key_type="simulation", - keys="driving_model_ensemble_member" - ) - ], - help="Member of the simulation which drives the simulation." - ), - driving_experiment_name=ParameterSettings( - key="driving_experiment_name", - default_values=[ - ValueSettings( - key_type="simulation", - keys="driving_experiment_name" - ) - ], - help="Name of the experiment which drives the current simulation." - ), - driving_experiment=ParameterSettings( - key="driving_experiment", - default_values=[ - ValueSettings( - key_type="simulation", - keys="driving_experiment" - ) - ], - help="Id of the experiment which drives the current simulation." - ), - Lambert_conformal_longitude_of_central_meridian=ParameterSettings( - key="Lambert_conformal_longitude_of_central_meridian", - default_values=[ - ValueSettings( - key_type="simulation", - keys="Lambert_conformal_longitude_of_central_meridian" - ) - ], - help="Longitude of central meridian of the Lambert conformal projection." - ), - Lambert_conformal_standard_parallel=ParameterSettings( - key="Lambert_conformal_standard_parallel", - default_values=[ - ValueSettings( - key_type="simulation", - keys="Lambert_conformal_standard_parallel" - ) - ], - help="Standard parallel of the Lambert conformal projection." - ), - Lambert_conformal_latitude_of_projection_origin=ParameterSettings( - key="Lambert_conformal_latitude_of_projection_origin", - default_values=[ - ValueSettings( - key_type="simulation", - keys="Lambert_conformal_latitude_of_projection_origin" - ) - ], - help="Latitude of central meridian of the Lambert conformal projection." - ), - rcm_version_id=ParameterSettings( - key="rcm_version_id", - default_values=[ - ValueSettings( - key_type="simulation", - keys="rcm_version_id" - ) - ], - help="Version id of the regional model used." - ) -) - -project_settings = dict( - context=TagSettings( - comments_list=["DR_version", "CV_version", "conventions_version", "dr2xml_version", "lab_settings", - "simulation_settings", "year"], - comments_constraints=dict( - CV_version=ParameterSettings( - key="CV_version", - help="Controled vocabulary version used.", - default_values=["CMIP6-CV version ??", ] - ), - conventions_version=ParameterSettings( - key="conventions_version", - help="Conventions version used.", - default_values=[ - ValueSettings(key_type="common", keys="conventions_version", fmt="CMIP6_conventions_version {}") - ] - ) - ) - ), - file_output=TagSettings( - attrs_constraints=dict( - name=ParameterSettings( - key="name", - default_values=[ - ValueSettings(func=FunctionSettings( - func=build_filename, - options=dict( - frequency=ValueSettings(key_type="variable", keys="frequency"), - prefix=ValueSettings(key_type="common", keys="prefix"), - source_id=ValueSettings(key_type="internal", keys="source_id"), - expid_in_filename=ValueSettings(key_type="common", keys="expid_in_filename"), - date_range=ValueSettings(key_type="common", keys="date_range"), - var_type=ValueSettings(key_type="variable", keys="type"), - list_perso_dev_file=ValueSettings(key_type="common", keys="list_perso_dev_file"), - label=ValueSettings(key_type="variable", keys="label"), - mipVarLabel=ValueSettings(key_type="variable", keys="mipVarLabel"), - use_cmorvar=ValueSettings(key_type="internal", keys="use_cmorvar_label_in_filename"), - CORDEX_domain=ValueSettings(key_type="common", keys="CORDEX_domain"), - driving_model_id=ValueSettings(key_type="common", keys="driving_model_id"), - driving_model_ensemble_member=ValueSettings(key_type="common", - keys="driving_model_ensemble_member"), - rcm_version_id=ValueSettings(key_type="common", keys="rcm_version_id") - ) - )) - ], - fatal=True - ) - ), - vars_list=["activity_id", "contact", "data_specs_version", "dr2xml_version", "expid_in_filename", - "external_variables", "frequency", "grid", "grid_label", "nominal_resolution", "comment", "history", - "institution_id", "CORDEX_domain", "driving_model_id", "driving_model_ensemble_member", - "driving_experiment_name", "driving_experiment", "Lambert_conformal_longitude_of_central_meridian", - "Lambert_conformal_standard_parallel", "Lambert_conformal_latitude_of_projection_origin", - "institution", "parent_experiment_id", "parent_mip_era", "parent_activity_id", "parent_source_id", - "parent_time_units", "parent_variant_label", "branch_time_in_parent", "branch_time_in_child", - "product", "realization_index", "realm", "references", "source", "source_id", "table_id", "title", - "variable_id"], - vars_constraints=dict( - variable_id=ParameterSettings( - key="variable_id", - default_values=[ - ValueSettings(key_type="variable", keys="mipVarLabel") - ] - ), - institution_id=ParameterSettings( - key="institution_id", - output_key="institute_id" - ), - CORDEX_domain=ParameterSettings( - key="CORDEX_domain", - default_values=[ - ValueSettings(key_type="common", keys="CORDEX_domain") - ], - help="Dictionary which contains, for each context, the associated CORDEX domain." - ), - driving_model_id=ParameterSettings( - key="driving_model_id", - default_values=[ - ValueSettings(key_type="common", keys="driving_model_id") - ], - fatal=True, - help="Id of the driving model." - ), - driving_model_ensemble_member=ParameterSettings( - key="driving_model_ensemble_member", - default_values=[ - ValueSettings(key_type="common", keys="driving_model_ensemble_member") - ], - fatal=True, - help="Member of the simulation which drives the simulation." - ), - driving_experiment_name=ParameterSettings( - key="driving_experiment_name", - default_values=[ - ValueSettings(key_type="common", keys="driving_experiment_name") - ], - fatal=True, - help="Name of the experiment which drives the current simulation." - ), - driving_experiment=ParameterSettings( - key="driving_experiment", - default_values=[ - ValueSettings(key_type="common", keys="driving_experiment") - ], - fatal=True, - help="Id of the experiment which drives the current simulation." - ), - Lambert_conformal_longitude_of_central_meridian=ParameterSettings( - key="Lambert_conformal_longitude_of_central_meridian", - default_values=[ - ValueSettings(key_type="common", keys="Lambert_conformal_longitude_of_central_meridian") - ], - skip_values=["", "None", None], - conditions=[ - ConditionSettings( - check_value=ValueSettings(key_type="internal", keys="context"), - check_to_do="eq", reference_values="surfex" - ) - ], - help="Longitude of central meridian of the Lambert conformal projection." - ), - Lambert_conformal_standard_parallel=ParameterSettings( - key="Lambert_conformal_standard_parallel", - default_values=[ - ValueSettings(key_type="common", keys="Lambert_conformal_standard_parallel") - ], - skip_values=["", "None", None], - conditions=[ - ConditionSettings( - check_value=ValueSettings(key_type="internal", keys="context"), - check_to_do="eq", reference_values="surfex" - ) - ], - help="Standard parallel of the Lambert conformal projection." - ), - Lambert_conformal_latitude_of_projection_origin=ParameterSettings( - key="Lambert_conformal_latitude_of_projection_origin", - default_values=[ - ValueSettings(key_type="common", keys="Lambert_conformal_latitude_of_projection_origin") - ], - skip_values=["", "None", None], - conditions=[ - ConditionSettings( - check_value=ValueSettings(key_type="internal", keys="context"), - check_to_do="eq", reference_values="surfex" - ) - ], - help="Latitude of central meridian of the Lambert conformal projection." - ), - product=ParameterSettings( - key="product", - default_values=["output", ] - ), - source=ParameterSettings( - key="source", - fatal=True, - output_key="project_id" - ), - source_id=ParameterSettings( - key="source_id", - output_key="model_id" - ), - title=ParameterSettings( - key="title", - default_values=[ - ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="internal", keys="source_id"), - "CMIP6", - ValueSettings(key_type="common", keys="activity_id"), - ValueSettings(key_type="simulation", keys="expid_in_filename") - ], - fmt="{} model output prepared for {} and {} / {} simulation" - ), - ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="internal", keys="source_id"), - "CMIP6", - ValueSettings(key_type="common", keys="activity_id"), - ValueSettings(key_type="internal", keys="experiment_id") - ], - fmt="{} model output prepared for {} / {} {}" - ) - ] - ) - ) - ), - field_output=TagSettings( - attrs_constraints=dict( - cell_methods=ParameterSettings( - key="cell_methods", - corrections={ - "area: time: mean": "time: mean" - } - ) - ), - vars_list=["comment", "standard_name", "description", "long_name", "history", "units", - "cell_methods", "cell_measures", "flag_meanings", "flag_values", "grid_mapping"], - vars_constraints=dict( - grid_mapping=ParameterSettings( - key="grid_mapping", - help="Grid mapping associated with the file.", - default_values=["Lambert_Conformal", ], - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="internal", keys="context"), - check_to_do="eq", reference_values="surfex") - ] - ), - cell_methods=ParameterSettings( - key="cell_methods", - corrections={ - "area: time: mean": "time: mean" - } - ) - ) - ) -) diff --git a/dr2xml/projects/CORDEX_func.py b/dr2xml/projects/CORDEX_func.py new file mode 100644 index 00000000..1ba8d397 --- /dev/null +++ b/dr2xml/projects/CORDEX_func.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +CMIP6 python tools +""" + +from __future__ import print_function, division, absolute_import, unicode_literals + + +from dr2xml.projects.dr2xml_func import sort_mips, format_sizes +from dr2xml.projects.basics_func import build_external_variables, compute_nb_days + +def build_filename(frequency, prefix, source_id, expid_in_filename, date_range, var_type, list_perso_dev_file, label, + mipVarLabel, CORDEX_domain, driving_model_id, driving_model_ensemble_member, rcm_version_id, + use_cmorvar=False): + if "fx" in frequency: + varname_for_filename = label + else: + if use_cmorvar: + varname_for_filename = label + else: + varname_for_filename = mipVarLabel + # DR21 has a bug with tsland : the MIP variable is named "ts" + if label in ["tsland", ]: + varname_for_filename = "tsland" + filename = "_".join(([elt for elt in [varname_for_filename, CORDEX_domain, driving_model_id, expid_in_filename, + driving_model_ensemble_member, source_id, rcm_version_id, frequency] if + len(str(elt)) > 0])) + if var_type in ["perso", "dev"]: + with open(list_perso_dev_file, mode="a", encoding="utf-8") as list_perso_and_dev: + list_perso_and_dev.write(".*{}.*\n".format(filename)) + filename = prefix + filename + if "fx" not in frequency: + if frequency in ["1hrCM", "monC"]: + suffix = "-clim" + else: + suffix = "" + filename = "_".join([filename, date_range + suffix]) + return filename \ No newline at end of file diff --git a/dr2xml/projects/basics.json b/dr2xml/projects/basics.json new file mode 100644 index 00000000..8c366dd2 --- /dev/null +++ b/dr2xml/projects/basics.json @@ -0,0 +1,3291 @@ +{ + "parent_project_settings": "dr2xml", + "functions_file": "basics_func.py", + "common": { + "activity_id": { + "help": "MIP(s) name(s).", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["activity_id"] + } + ] + }, + "branch_method": { + "help": "Branching procedure.", + "forbidden_values": [null, "None", ""], + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["branch_method"] + }, + "standard" + ] + }, + "branch_month_in_parent": { + "help": "Branch month in parent simulation with respect to its time axis.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["branch_month_in_parent"] + }, + "1" + ] + }, + "branch_year_in_parent": { + "help": "Branch year in parent simulation with respect to its time axis.", + "forbidden_values": [null, "None", "", "N/A"], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "simulation", + "keys": ["branch_year_in_parent"] + }, + "check_to_perform": "eq", + "reference_values": [ + { + "type": "value", + "origin": "internal", + "keys": [ + "branching", + { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + }, + 1 + ] + } + ], + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["branch_year_in_parent"] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + }, + "check_to_perform": "neq", + "reference_values": [ + { + "type": "value", + "origin": "internal", + "keys": ["branching"] + } + ], + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["branch_year_in_parent"] + } + ] + } + ] + }, + "comment_lset": { + "help": "A character string containing additional information about the models from laboratory settings. Will be complemented with the experiment's specific comment string.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["comment"] + }, + "" + ] + }, + "comment_sset": { + "help": "A character string containing additional information about the models from simulation settings. Will be complemented with the experiment's specific comment string.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["comment"] + }, + "" + ] + }, + "compression_level": { + "help": "The compression level to be applied to NetCDF output files.\"", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["compression_level"] + }, + "0" + ] + }, + "contact": { + "help": "Email address of the data producer.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["contact"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["contact"] + }, + "None" + ] + }, + "convention_str": { + "help": "Version of the conventions used.", + "values": [ + { + "type": "value", + "origin": "config", + "keys": ["conventions"] + } + ] + }, + "data_request_version_string": { + "help": "Version of the data request used.", + "fatal": true, + "values": [ + { + "type": "func", + "origin": "data_request", + "keys": ["get_version"] + } + ] + }, + "data_specs_version": { + "help": "Version of the data request used.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["data_request_version_string"] + } + ] + }, + "date_range": { + "help": "Date range format to be used in file definition names.", + "values": ["%start_date%-%end_date%"] + }, + "description": { + "help": "Description of the simulation.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["description"] + }, + { + "type": "value", + "origin": "simulation", + "keys": ["description"] + } + ] + }, + "dr2xml_version": { + "help": "Version of dr2xml used.", + "values": [ + { + "type": "value", + "origin": "config", + "keys": ["version"] + } + ] + }, + "experiment": { + "help": "Name of the experiment.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["experiment"] + } + ] + }, + "expid_in_filename": { + "help": "Experiment label to use in file names and attribute.", + "forbidden_patterns": [".*_.*"], + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": "expid_in_filename" + }, + { + "type": "value", + "origin": "internal", + "keys": "experiment_id" + } + ] + }, + "forcing_index": { + "help": "Index for variant of forcing.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["forcing_index"] + }, + "1" + ] + }, + "HDL": { + "help": "HDL associated with the project.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["HDL"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["HDL"] + } + ] + }, + "history": { + "help": "In case of replacement of previously produced data, description of any changes in the production chain.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["history"] + }, + "none" + ] + }, + "info_url": { + "help": "Location of documentation.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["info_url"] + } + ] + }, + "initialization_index": { + "help": "Index for variant of initialization method.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["initialization_index"] + }, + "1" + ] + }, + "institution": { + "help": "Full name of the institution of the data producer.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["institution"] + } + ] + }, + "list_perso_dev_file": { + "help": "Name of the file which will contain the list of the patterns of perso and dev output file definition.", + "values": ["dr2xml_list_perso_and_dev_file_names"] + }, + "mip_era_sset": { + "help": "MIP associated with the simulation from simulation settings.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["mip_era"] + }, + null + ] + }, + "mip_era_lset": { + "help": "MIP associated with the simulation from laboratory settings.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["mip_era"] + }, + null + ] + }, + "mip_era": { + "help": "MIP associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["mip_era_sset"] + }, + { + "type": "value", + "origin": "common", + "keys": ["mip_era_lset"] + } + ], + "forbidden_values": [null] + }, + "output_level": { + "help": "We can control the max output level set for all output files.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["output_level"] + }, + "10" + ] + }, + "parent_activity_id": { + "help": "Description of sub-experiment.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_activity_id"] + }, + { + "type": "value", + "origin": "simulation", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["parent_activity_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["activity_id"] + } + ] + }, + "parent_experiment_id": { + "help": "Parent experiment identifier.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_experiment_id"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["parent_experiment_id"] + } + ] + }, + "parent_mip_era": { + "help": "Parent’s associated MIP cycle.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_mip_era"] + } + ] + }, + "parent_source_id": { + "help": "Parent model identifier.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_source_id"] + } + ] + }, + "parent_time_ref_year": { + "help": "Reference year in parent simulation.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_time_ref_year"] + }, + "1850" + ] + }, + "parent_time_units": { + "help": "Time units used in parent.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_time_units"] + } + ] + }, + "parent_variant_label": { + "help": "Parent variant label.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["parent_variant_label"] + } + ] + }, + "physics_index": { + "help": "Index for model physics variant.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["physics_index"] + }, + "1" + ] + }, + "references": { + "help": "References associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["references"] + } + ] + }, + "source": { + "help": "Name of the model.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["source"] + } + ] + }, + "sub_experiment": { + "help": "Sub-experiment name.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["sub_experiment"] + }, + "none" + ] + }, + "sub_experiment_id": { + "help": "Sub-experiment identifier.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["sub_experiment_id"] + }, + "none" + ] + }, + "variant_info": { + "help": "It is recommended that some description be included to help identify major differences among variants, but care should be taken to record correct information. dr2xml will add in all cases: 'Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.'", + "forbidden_values": [""], + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["variant_info"] + } + ] + } + }, + "project_settings": { + "context": { + "attrs_list": ["id"], + "attrs_constraints": { + "id": { + "help": "Id of the context", + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["context"] + } + ] + } + }, + "comments_list": ["DR_version", "dr2xml_version", "lab_settings", "simulation_settings", "year"], + "comments_constraints": { + "DR_version": { + "help": "Version of the Data Request used", + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{data_request_used} Data Request version {data_request_version_string}", + "options": { + "data_request_used": { + "type": "value", + "origin": "init", + "keys": ["data_request_used"] + }, + "data_request_version_string": { + "type": "value", + "origin": "common", + "keys": ["data_request_version_string"] + } + } + } + ] + }, + "dr2xml_version": { + "help": "Version of dr2xml used", + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "dr2xml version {dr2xml_version}", + "options": { + "dr2xml_version": { + "type": "value", + "origin": "common", + "keys": "dr2xml_version" + } + } + } + ] + }, + "lab_settings": { + "help": "Laboratory settings used", + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "Lab_and_model settings\n{laboratory}", + "options": { + "laboratory": { + "type": "value", + "origin": "laboratory", + "keys": [] + } + } + } + ] + }, + "simulation_settings": { + "help": "Simulation_settings used", + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "Simulation settings\n{laboratory}", + "options": { + "laboratory": { + "type": "value", + "origin": "simulation", + "keys": [] + } + } + } + ] + }, + "year": { + "help": "Year used for the dr2xml's launch", + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "Year processed {year}", + "options": { + "year": { + "type": "value", + "origin": "internal", + "keys": ["year"] + } + } + } + ] + } + } + }, + "field": { + "attrs_list": ["id", "field_ref", "name", "freq_op", "freq_offset", "grid_ref", "long_name", "standard_name", + "unit", "operation", "detect_missing_value", "prec"], + "attrs_constraints": { + "detect_missing_value": { + "help": "Should missing values of the field be detected by XIOS.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["detect_missing_value"] + } + ] + }, + "field_ref": { + "help": "Id of the reference field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["field_ref"] + } + ] + }, + "freq_offset": { + "help": "Offset to be applied on operations on the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["freq_offset"] + } + ] + }, + "freq_op": { + "help": "Frequency of the operation done on the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["freq_op"] + } + ] + }, + "grid_ref": { + "help": "Reference grid of the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["grid_ref"] + } + ] + }, + "id": { + "help": "Id of the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["id"] + } + ] + }, + "long_name": { + "help": "Long name of the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["long_name"] + } + ] + }, + "name": { + "help": "Name of the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["name"] + } + ] + }, + "operation": { + "help": "Operation done on the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["operation"] + } + ] + }, + "prec": { + "help": "Precision of the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["prec"] + } + ] + }, + "standard_name": { + "help": "Standard name of the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["standard_name"] + } + ] + }, + "unit": { + "help": "Unit of the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["unit"] + } + ] + } + } + }, + "field_group": { + "attrs_list": ["freq_op", "freq_offset"], + "attrs_constraints": { + "freq_offset": { + "help": "Offset to be applied on operations on the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["freq_offset"] + } + ] + }, + "freq_op": { + "help": "Frequency of the operation done on the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["freq_op"] + } + ] + } + } + }, + "field_output": { + "common_list": ["variable"], + "common_constraints": { + "variable": { + "help": "Variable information", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "variable", + "keys": [] + } + ] + } + }, + "attrs_list": ["field_ref", "name", "grid_ref", "freq_offset", "detect_missing_value", "default_value", "prec", + "cell_methods", "cell_methods_mode", "operation", "freq_op", "expr"], + "attrs_constraints": { + "cell_methods": { + "help": "Cell method associated with the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["cell_methods"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "cell_methods"] + } + ] + }, + "cell_methods_mode": { + "help": "Mode associated with the cell method of the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["cell_methods_mode"] + }, + "overwrite" + ] + }, + "default_value": { + "help": "Default value associated with the field.", + "fatal": true, + "corrections": { + "": "1.e+20", + "float": "1.e+20", + "real": "1.e+20", + "double": "1.e+20", + "integer": "0", + "int": "0" + }, + "authorized_values": ["0", "1.e+20"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["default_value"] + }, + { + "type": "value", + "origin": "attrs", + "keys": ["prec"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "prec"] + } + ] + }, + "detect_missing_value": { + "help": "Should missing values of the field be detected by XIOS.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["detect_missing_value"] + }, + "True" + ] + }, + "expr": { + "help": "Expression used to compute the field.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["expr"] + } + ] + }, + "field_ref": { + "help": "Reference field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["field_ref"] + } + ] + }, + "freq_offset": { + "help": "Offset to be applied on operations on the field.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["freq_offset"] + } + ] + }, + "freq_op": { + "help": "Frequency of the operation done on the field.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["freq_op"] + } + ] + }, + "grid_ref": { + "help": "Reference grid of the field.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["grid_ref"] + } + ] + }, + "name": { + "help": "Name of the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["name"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "mipVarLabel"] + } + ] + }, + "operation": { + "help": "Operation performed on the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["operation"] + } + ] + }, + "prec": { + "help": "Precision of the field.", + "fatal": true, + "corrections": { + "": "4", + "float": "4", + "real": "4", + "double": "8", + "integer": "2", + "int": "2" + }, + "authorized_values": ["2", "4", "8"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["prec"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "prec"] + } + ] + } + }, + "vars_list": ["comment", "standard_name", "description", "long_name", "positive", "history", "units", + "cell_methods", "cell_measures", "flag_meanings", "flag_values", "interval_operation"], + "vars_constraints": { + "standard_name": { + "help": "Standard name of the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["standard_name"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "stdname"] + } + ], + "forbidden_values": ["", "None", null] + }, + "description": { + "help": "Description associated with the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["description"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "description"] + }, + "None" + ], + "forbidden_values": [""] + }, + "long_name": { + "help": "Long name of the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["long_name"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "long_name"] + } + ] + }, + "history": { + "help": "History associated with the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["history"] + }, + { + "type": "value", + "origin": "common", + "keys": ["history"] + } + ] + }, + "comment": { + "help": "Comment associated with the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["comment"] + }, + { + "type": "value", + "origin": "simulation", + "keys": [ + "comments", + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "label"] + } + ] + }, + { + "type": "value", + "origin": "laboratory", + "keys": [ + "comments", + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "label"] + } + ] + } + ], + "forbidden_values": ["", "None", null] + }, + "positive": { + "help": "Way the field should be interpreted.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["positive"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "positive"] + } + ], + "forbidden_values": ["", "None", null] + }, + "detect_missing_value": { + "help": "Should missing values of the field be detected by XIOS.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["detect_missing_value"] + }, + "none" + ] + }, + "units": { + "help": "Units associated with the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["units"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "units"] + } + ], + "forbidden_values": ["", "None", null] + }, + "cell_methods": { + "help": "Cell methods associated with the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["cell_methods"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "cell_methods"] + } + ], + "forbidden_values": ["", "None", null] + }, + "cell_measures": { + "help": "Cell measures associated with the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["cell_measures"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "cell_measures"] + } + ], + "forbidden_values": ["", "None", null] + }, + "flag_meanings": { + "help": "Flag meanings associated with the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["flag_meanings"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "flag_meanings"] + } + ], + "forbidden_values": ["", "None", null] + }, + "flag_values": { + "help": "Flag values associated with the field.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["flag_values"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "flag_values"] + } + ], + "forbidden_values": ["", "None", null] + }, + "interval_operation": { + "help": "Interval associated with the operation done on the field.", + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "attrs", + "keys": ["operation"] + }, + "check_to_perform": "neq", + "reference_values": ["once"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["interval_operation"] + } + ] + } + ] + } + } + }, + "file": { + "attrs_list": ["id", "name", "mode", "output_freq", "enabled"], + "attrs_constraints": { + "enabled": { + "help": "Should the file be considered by XIOS.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["enabled"] + } + ] + }, + "id": { + "help": "Id of the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["id"] + } + ] + }, + "mode": { + "help": "Mode in which the file will be open.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["mode"] + } + ] + }, + "name": { + "help": "File name.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["name"] + } + ] + }, + "output_freq": { + "help": "Frequency of the outputs contained in the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["output_freq"] + } + ] + } + } + }, + "file_definition": { + "attrs_list": ["type","enabled"], + "attrs_constraints": { + "enabled": { + "help": "Should the file_definition be considered by XIOS", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["enabled"] + }, + "true" + ] + }, + "type": { + "help": "Type of file to be produced", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["type"] + }, + "one_file" + ] + } + } + }, + "file_output": { + "common_list": ["variable"], + "common_constraints": { + "variable": { + "help": "Variable information", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["variable", 0] + } + ] + } + }, + "attrs_list": ["id", "name", "output_freq", "append", "output_level", "compression_level", "split_freq", + "split_freq_format", "split_start_offset", "split_end_offset", "split_last_date", "time_units", + "time_counter_name", "time_counter", "time_stamp_name", "time_stamp_format", "uuid_name", + "uuid_format", "convention_str", "synchronisation_frequency"], + "attrs_constraints": { + "append": { + "help": "Should the data be append to the file?", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["append"] + }, + "true" + ] + }, + "compression_level": { + "help": "Compression level of the file.", + "forbidden_values": ["None", "", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["compression_level"] + }, + { + "type": "value", + "origin": "common", + "keys": ["compression_level"] + } + ] + }, + "convention_str": { + "help": "Convention used for the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["convention_str"] + }, + { + "type": "value", + "origin": "common", + "keys": ["convention_str"] + } + ] + }, + "id": { + "help": "Id of the output file", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["id"] + }, + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{variable}_{table}_{grid}", + "options": { + "grid": { + "type": "value", + "origin": "attrs", + "keys": ["grid_label"] + }, + "table": { + "type": "value", + "origin": "attrs", + "keys": ["table_id"] + }, + "variable": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "label"] + } + } + } + ] + }, + "name": { + "help": "File name.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["name"] + } + ] + }, + "output_freq": { + "help": "Frequency of the outputs contained in the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["output_freq"] + } + ] + }, + "output_level": { + "help": "Output level of the file.", + "forbidden_values": ["None", "", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["output_level"] + }, + { + "type": "value", + "origin": "common", + "keys": ["output_level"] + } + ] + }, + "split_end_offset": { + "help": "Splitting end offset of the file", + "forbidden_values": ["", "None", null, "False", false], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "frequency"] + }, + "check_to_perform": "nmatch", + "reference_values": [".*fx.*"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["split_end_offset"] + } + ] + } + ] + }, + "split_freq": { + "help": "Splitting frequency of the file.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "frequency"] + }, + "check_to_perform": "nmatch", + "reference_values": [".*fx.*"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["split_freq"] + } + ] + } + ] + }, + "split_freq_format": { + "help": "Splitting frequency format of the file.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "frequency"] + }, + "check_to_perform": "nmatch", + "reference_values": [".*fx.*"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["split_freq_format"] + } + ] + } + ] + }, + "split_last_date": { + "help": "Splitting last date of the file", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "frequency"] + }, + "check_to_perform": "nmatch", + "reference_values": [".*fx.*"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["split_last_date"] + } + ] + } + ] + }, + "split_start_offset": { + "help": "Splitting start offset of the file", + "forbidden_values": ["", "None", null, "False", false], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common_tag", + "keys": ["variable", "frequency"] + }, + "check_to_perform": "nmatch", + "reference_values": [".*fx.*"], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["split_start_offset"] + } + ] + } + ] + }, + "synchronisation_frequency": { + "help": "Frequency at which the synchronisation between buffer and filesystem is done.", + "forbidden_values": ["None", "", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["synchronisation_frequency"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["synchronisation_frequency"] + } + ] + }, + "time_counter": { + "help": "Time counter type.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["time_counter"] + }, + "exclusive" + ] + }, + "time_counter_name": { + "help": "Time counter name.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["time_counter_name"] + }, + "time" + ] + }, + "time_stamp_name": { + "help": "Time stamp name.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["time_stamp_name"] + }, + "creation_date" + ] + }, + "time_stamp_format": { + "help": "Time stamp format.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["time_stamp_format"] + }, + "%Y-%m-%dT%H:%M:%SZ" + ] + }, + "time_units": { + "help": "Time units of the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": [" time_units"] + }, + "days" + ] + }, + "uuid_format": { + "help": "Unique identifier of the file format.", + "forbidden_values": ["None", "", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["uuid_format"] + }, + { + "type": "value", + "origin": "attrs", + "keys": ["uuid_format"] + }, + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "hdl:{hdl}/%uuid%", + "options": { + "hdl": { + "type": "value", + "origin": "common", + "keys": ["HDL"] + } + } + } + ] + }, + "uuid_name": { + "help": "Unique identifier of the file name.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["uuid_name"] + }, + "tracking_id" + ] + } + }, + "vars_list": ["activity_id", "contact", "data_specs_version", "dr2xml_version", "expid_in_filename", "description", + "title_desc", "experiment", "external_variables", "forcing_index", "frequency", "further_info_url", + "grid", "grid_label", "nominal_resolution", "comment", "history", "initialization_index", + "institution_id", "institution", "license", "mip_era", "parent_experiment_id", "parent_mip_era", + "parent_activity_id", "parent_source_id", "parent_time_units", "parent_variant_label", + "branch_method", "branch_time_in_parent", "branch_time_in_child", "physics_index", "product", + "realization_index", "realm", "references", "source", "source_id", "source_type", + "sub_experiment_id", "sub_experiment", "table_id", "title", "variable_id", "variant_info", + "variant_label"], + "vars_constraints": { + "activity_id": { + "help": "Activity id associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["activity_id"] + }, + { + "type": "value", + "origin": "common", + "keys": ["activity_id"] + } + ] + }, + "branch_method": { + "help": "Branch method of the simulation.", + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["parent_experiment_id"] + }, + "check_to_perform": "neq", + "reference_values": ["no parent", "", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["branch_method"] + }, + { + "type": "value", + "origin": "common", + "keys": ["branch_method"] + } + ] + }, + "no parent" + ] + }, + "branch_time_in_child": { + "help": "Branch time of the simulation in the child's one.", + "forbidden_values": ["", "None", null], + "num_type": "double", + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["parent_experiment_id"] + }, + "check_to_perform": "neq", + "reference_values": ["no parent", "", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["branch_time_in_child"] + }, + { + "type": "func", + "origin": "functions_file", + "keys": ["compute_nb_days"], + "options": { + "year_ref": { + "type": "value", + "origin": "simulation", + "keys": ["child_time_ref_year"] + }, + "year_branch": { + "type": "value", + "origin": "simulation", + "keys": ["branch_year_in_child"] + } + } + }, + { + "type": "value", + "origin": "simulation", + "keys": ["branch_time_in_child"] + } + ] + } + ] + }, + "branch_time_in_parent": { + "help": "Branch time of the simulation in the parent's one.", + "forbidden_values": ["", "None", null], + "num_type": "double", + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["parent_experiment_id"] + }, + "check_to_perform": "neq", + "reference_values": ["no parent", "", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["branch_time_in_parent"] + }, + { + "type": "func", + "origin": "functions_file", + "keys": ["compute_nb_days"], + "options": { + "year_ref": { + "type": "value", + "origin": "common", + "keys": ["parent_time_ref_year"] + }, + "year_branch": { + "type": "value", + "origin": "common", + "keys": ["branch_year_in_parent"] + }, + "month_branch": { + "type": "value", + "origin": "common", + "keys": ["branch_month_in_parent"] + } + } + }, + { + "type": "value", + "origin": "simulation", + "keys": ["branch_time_in_parent"] + } + ] + } + ] + }, + "comment": { + "help": "Comment associated with the file.", + "forbidden_values": [""], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["comment"] + }, + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{var}{lset}{sset}", + "options": { + "var": { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common_tag", + "keys": ["variable","comments"] + }, + "check_to_perform": "neq", + "reference_values": ["None", null], + "values": [ + { + "type": "value", + "origin": "common_tag", + "keys": ["variable","comments"] + } + ], + "not_values": "" + }, + "lset": { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["comment_lset"] + }, + "check_to_perform": "neq", + "reference_values": ["None", null], + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["comment_lset"] + } + ], + "not_values": "" + }, + "sset": { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["comment_sset"] + }, + "check_to_perform": "neq", + "reference_values": ["None", null], + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["comment_sset"] + } + ], + "not_values": "" + } + } + } + ] + }, + "contact": { + "help": "Contact email.", + "forbidden_values": ["None", "", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["contact"] + }, + { + "type": "value", + "origin": "common", + "keys": ["contact"] + } + ] + }, + "data_specs_version": { + "help": "Version of the Data Request used.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["data_specs_version"] + }, + { + "type": "value", + "origin": "common", + "keys": ["data_specs_version"] + } + ] + }, + "description": { + "help": "Description of the file.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + }, + "check_to_perform": "eq", + "reference_values": [ + { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + } + ], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["description"] + }, + { + "type": "value", + "origin": "common", + "keys": ["description"] + } + ] + } + ] + }, + "dr2xml_version": { + "help": "Version of dr2xml used.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["dr2xml_version"] + }, + { + "type": "value", + "origin": "common", + "keys": ["dr2xml_version"] + } + ] + }, + "experiment": { + "help": "Experiment associated with the simulation.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + }, + "check_to_perform": "eq", + "reference_values": [ + { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + } + ], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["experiment"] + }, + { + "type": "value", + "origin": "common", + "keys": ["experiment"] + } + ] + } + ] + }, + "expid_in_filename": { + "help": "Experiment id to be used in file name.", + "output_key": "experiment_id", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["expid_in_filename"] + }, + { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + } + ] + }, + "external_variables": { + "help": "External variables associated with the file.", + "forbidden_values": [""], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["external_variables"] + }, + { + "type": "func", + "origin": "functions_file", + "keys": ["build_external_variables"], + "options": { + "cell_measures": { + "type": "value", + "origin": "common_tag", + "keys": ["variable","cell_measures"] + } + } + } + ] + }, + "forcing_index": { + "help": "Forcing index associated with the simulation.", + "num_type": "int", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["forcing_index"] + }, + { + "type": "value", + "origin": "common", + "keys": ["forcing_index"] + } + ] + }, + "frequency": { + "help": "Frequency associated with the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["frequency"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable","frequency"] + } + ] + }, + "further_info_url": { + "help": "Url to obtain further information associated with the simulation.", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["further_info_url"] + } + ] + }, + "grid": { + "help": "Id of the grid used in the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["grid"] + } + ] + }, + "grid_label": { + "help": "Label of the grid used in the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["grid_label"] + } + ] + }, + "history": { + "help": "History associated with the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["history"] + }, + { + "type": "value", + "origin": "common", + "keys": ["history"] + } + ] + }, + "initialization_index": { + "help": "Initialization index associated with the simulation.", + "num_type": "int", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["initialization_index"] + }, + { + "type": "value", + "origin": "common", + "keys": ["initialization_index"] + } + ] + }, + "institution_id": { + "help": "Institution id associated with the simulation.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["institution_id"] + }, + { + "type": "value", + "origin": "init", + "keys": ["institution_id"] + } + ] + }, + "institution": { + "help": "Institution associated with the simulation.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["institution"] + }, + { + "type": "value", + "origin": "common", + "keys": ["institution"] + } + ] + }, + "license": { + "help": "License associated with the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["license"] + } + ] + }, + "mip_era": { + "help": "MIP associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["mip_era"] + }, + { + "type": "value", + "origin": "common", + "keys": ["mip_era"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable","mip_era"] + } + ] + }, + "nominal_resolution": { + "help": "Nominal resolution of the grid used in the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["nominal_resolution"] + } + ] + }, + "parent_activity_id": { + "help": "Activity id associated with the parent experiment.", + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["parent_experiment_id"] + }, + "check_to_perform": "neq", + "reference_values": ["no parent", "", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["parent_activity_id"] + }, + { + "type": "value", + "origin": "common", + "keys": ["parent_activity_id"] + } + ] + } + ] + }, + "parent_experiment_id": { + "help": "Parent experiment id associated with the simulation.", + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["parent_experiment_id"] + }, + "check_to_perform": "neq", + "reference_values": ["no parent", "", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["parent_experiment_id"] + }, + { + "type": "value", + "origin": "common", + "keys": ["parent_experiment_id"] + } + ] + } + ] + }, + "parent_mip_era": { + "help": "MIP associated with the parent experiment.", + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["parent_experiment_id"] + }, + "check_to_perform": "neq", + "reference_values": ["no parent", "", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["parent_mip_era"] + }, + { + "type": "value", + "origin": "common", + "keys": ["parent_mip_era"] + }, + { + "type": "value", + "origin": "common", + "keys": ["mip_era"] + }, + { + "type": "value", + "origin": "common_tag", + "keys": ["variable","mip_era"] + } + ] + } + ] + }, + "parent_source_id": { + "help": "Model id of the parent experiment.", + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["parent_experiment_id"] + }, + "check_to_perform": "neq", + "reference_values": ["no parent", "", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["parent_source_id"] + }, + { + "type": "value", + "origin": "common", + "keys": ["parent_source_id"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + ] + } + ] + }, + "parent_time_units": { + "help": "Time units of the parent experiment.", + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["parent_experiment_id"] + }, + "check_to_perform": "neq", + "reference_values": ["no parent", "", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["parent_time_units"] + }, + { + "type": "value", + "origin": "common", + "keys": ["parent_time_units"] + }, + { + "type": "value", + "origin": "common", + "keys": ["parent_time_ref_year"], + "format": "days since {}-01-01 00:00:00" + } + ] + } + ] + }, + "parent_variant_label": { + "help": "Variant label of the parent experiment.", + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "common", + "keys": ["parent_experiment_id"] + }, + "check_to_perform": "neq", + "reference_values": ["no parent", "", "None", null], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["parent_variant_label"] + }, + { + "type": "value", + "origin": "common", + "keys": ["parent_variant_label"] + }, + { + "type": "value", + "origin": "common", + "keys": ["variant_label"] + } + ] + } + ] + }, + "physics_index": { + "help": "Physics index associated with the simulation.", + "num_type": "int", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["physics_index"] + }, + { + "type": "value", + "origin": "common", + "keys": ["physics_index"] + } + ] + }, + "product": { + "help": "Type of content of the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["product"] + }, + "model-output" + ] + }, + "realization_index": { + "help": "Realization index associated with the simulation.", + "num_type": "int", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["realization_index"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["realization_index"] + } + ] + }, + "realm": { + "help": "Realm associated with the file.", + "values": [ + { + "type": "value", + "origin": "common_tag", + "keys": ["variable","modeling_realm"], + "format": { + "type": "func", + "origin": "self", + "keys": ["join"], + "template": ",", + "type_condition": "list" + } + } + ] + }, + "references": { + "help": "References associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["references"] + }, + { + "type": "value", + "origin": "common", + "keys": ["references"] + } + ] + }, + "source": { + "help": "Model associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["source"] + }, + { + "type": "value", + "origin": "common", + "keys": ["source"] + } + ] + }, + "source_id": { + "help": "Model id associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["source_id"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + ] + }, + "source_type": { + "help": "Model type associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["source_type"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["source_type"] + } + ] + }, + "sub_experiment": { + "help": "Name of the sub experiment associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["sub_experiment"] + }, + { + "type": "value", + "origin": "common", + "keys": ["sub_experiment"] + } + ] + }, + "sub_experiment_id": { + "help": "Id of the sub experiment associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["sub_experiment_id"] + }, + { + "type": "value", + "origin": "common", + "keys": ["sub_experiment_id"] + } + ] + }, + "table_id": { + "help": "Id of the table associated with the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["table_id"] + } + ] + }, + "title": { + "help": "Title of the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["title"] + }, + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{source_id} model output prepared for {project} and {activity_id} / {expid_in_filename} simulation", + "options": { + "activity_id": { + "type": "value", + "origin": "common", + "keys": ["activity_id"], + "format": { + "type": "func", + "origin": "self", + "keys": "join", + "template": ", " + } + }, + "expid_in_filename": { + "type": "value", + "origin": "simulation", + "keys": ["expid_in_filename"] + }, + "project": { + "type": "value", + "origin": "init", + "keys": ["project"] + }, + "source_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + } + }, + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{source_id} model output prepared for {project} / {activity_id} {experiment_id}", + "options": { + "activity_id": { + "type": "value", + "origin": "common", + "keys": ["activity_id"], + "format": { + "type": "func", + "origin": "self", + "keys": ["join"], + "template": "," + } + }, + "experiment_id": { + "type": "value", + "origin": "simulation", + "keys": ["experiment_id"] + }, + "project": { + "type": "value", + "origin": "init", + "keys": ["project"] + }, + "source_id": { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + } + } + ] + }, + "title_desc": { + "help": "Title of the file.", + "output_key": "title", + "forbidden_values": ["", "None", null], + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["experiment_id"] + }, + "check_to_perform": "eq", + "reference_values": [ + { + "type": "value", + "origin": "common", + "keys": ["expid_in_filename"] + } + ], + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["description"] + }, + { + "type": "value", + "origin": "common", + "keys": ["description"] + } + ] + } + ] + }, + "variable_id": { + "help": "Id of the variable contained in the file.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["variable_id"] + } + ] + }, + "variant_info": { + "help": "Variant information associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["variant_info"] + }, + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{variant_info}. Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.", + "options": { + "variant_info": { + "type": "value", + "origin": "common", + "keys": ["variant_info"] + } + } + } + ] + }, + "variant_label": { + "help": "Variant label associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "common", + "keys": ["variant_label"] + }, + { + "type": "value", + "origin": "attrs", + "keys": ["variant_label"] + } + ] + } + } + }, + "zoom_axis": { + "attrs_list": ["index"], + "attrs_constraints": { + "index": { + "help": "Index of the zoomed axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["index"] + } + ] + } + } + }, + "interpolate_axis": { + "attrs_list": ["type", "order", "coordinate"], + "attrs_constraints": { + "type": { + "help": "Type of the interpolated axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["type"] + } + ] + }, + "order": { + "help": "Order of the interpolated axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["order"] + } + ] + }, + "coordinate": { + "help": "Coordinate of the interpolated axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["coordinate"] + } + ] + } + } + }, + "axis_group": { + "attrs_list": ["prec"], + "attrs_constraints": { + "prec": { + "help": "Precision associated with the axis group.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["prec"] + }, + "8" + ], + "authorized_values": ["2", "4", "8"], + "corrections": { + "": "4", + "float": "4", + "real": "4", + "double": "8", + "integer": "2", + "int": "2" + } + } + } + }, + "domain": { + "attrs_list": ["id", "ni_glo", "nj_glo", "type", "prec", "lat_name", "lon_name", "dim_i_name", "domain_ref"], + "attrs_constraints": { + "id": { + "help": "Id of the domain.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["id"] + } + ] + }, + "ni_glo": { + "help": "Number of point in i dimension.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["ni_glo"] + } + ] + }, + "nj_glo": { + "help": "Number of points in j dimension.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["nj_glo"] + } + ] + }, + "type": { + "help": "Type of the domain.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["type"] + } + ] + }, + "prec": { + "help": "Precision of the domain.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["prec"] + } + ] + }, + "lat_name": { + "help": "Latitude axis name.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["lat_name"] + } + ] + }, + "lon_name": { + "help": "Longitude axis name.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["lon_name"] + } + ] + }, + "dim_i_name": { + "help": "Name of the i dimension.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["dim_i_name"] + } + ] + }, + "domain_ref": { + "help": "Reference domain.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["domain_ref"] + } + ] + } + } + }, + "interpolate_domain": { + "attrs_list": ["type", "order", "renormalize", "mode", "write_weight", "coordinate"], + "attrs_constraints": { + "type": { + "help": "Type of the interpolated domain.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["type"] + } + ] + }, + "order": { + "help": "Order of the interpolation.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["order"] + } + ] + }, + "renormalize": { + "help": "Should the interpolated domain be renormalized?", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["renormalize"] + } + ] + }, + "mode": { + "help": "Mode used for the interpolation.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["mode"] + } + ] + }, + "write_weight": { + "help": "Should interpolation weights be written?", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["write_weight"] + } + ] + }, + "coordinate": { + "help": "Coordinate of the interpolated domain.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["coordinate"] + } + ] + } + } + }, + "domain_group": { + "attrs_list": ["prec"], + "attrs_constraints": { + "prec": { + "help": "Precision associated with the domain group.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["prec"] + }, + "8" + ], + "authorized_values": ["2", "4", "8"], + "corrections": { + "": "4", + "float": "4", + "real": "4", + "double": "8", + "integer": "2", + "int": "2" + } + } + } + }, + "scalar": { + "attrs_list": ["id", "scalar_ref", "name", "standard_name", "long_name", "label", "prec", "value", "bounds", + "bounds_name", "axis_type", "positive", "unit"], + "attrs_constraints": { + "id": { + "help": "Id of the scalar.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["id"] + } + ] + }, + "scalar_ref": { + "help": "Reference scalar.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["scalar_ref"] + } + ] + }, + "name": { + "help": "Name of the scalar.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["name"] + } + ] + }, + "long_name": { + "help": "Long name of the scalar.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["long_name"] + } + ] + }, + "standard_name": { + "help": "Standard name of the scalar.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["standard_name"] + } + ], + "forbidden_values": ["", "None", null] + }, + "axis_type": { + "help": "Axis type of the scalar.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["axis_type"] + } + ], + "forbidden_values": ["", "None", null] + }, + "unit": { + "help": "Unit of the scalar.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["unit"] + } + ], + "forbidden_values": ["", "None", null] + }, + "label": { + "help": "Label of the scalar.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["label"] + } + ], + "forbidden_values": ["", "None", null] + }, + "bounds": { + "help": "Bounds of the scalar.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["bounds"] + } + ], + "forbidden_values": ["", "None", null] + }, + "bounds_name": { + "help": "Bounds name of the scalar.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["bounds_name"] + } + ], + "forbidden_values": ["", "None", null] + }, + "prec": { + "help": "Precision of the scalar.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["prec"] + } + ], + "forbidden_values": ["", "None", null], + "authorized_values": ["2", "4", "8"], + "corrections": { + "": "4", + "float": "4", + "real": "4", + "double": "8", + "integer": "2", + "int": "2" + } + }, + "value": { + "help": "Value of the scalar.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["value"] + } + ], + "forbidden_values": ["", "None", null] + }, + "positive": { + "help": "Orientation of the scalar.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["positive"] + } + ], + "forbidden_values": ["", "None", null] + } + } + }, + "axis": { + "attrs_list": ["id", "positive", "n_glo", "value", "axis_ref", "name", "standard_name", "long_name", "prec", + "unit", "value", "bounds", "dim_name", "label", "axis_type"], + "attrs_constraints": { + "id": { + "help": "Id of the axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["id"] + } + ] + }, + "positive": { + "help": "How is the axis oriented?", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["positive"] + } + ] + }, + "n_glo": { + "help": "Number of values of this axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["n_glo"] + } + ] + }, + "axis_ref": { + "help": "Reference axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["axis_ref"] + } + ] + }, + "name": { + "help": "Name of this axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["name"] + } + ] + }, + "long_name": { + "help": "Long name of this axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["long_name"] + } + ] + }, + "axis_type": { + "help": "Axis type.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["axis_type"] + } + ], + "forbidden_values": ["", "None", null, "undef"] + }, + "standard_name": { + "help": "Standard name of the axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["standard_name"] + } + ], + "forbidden_values": ["", "None", null, "undef"], + "authorized_type": ["str"] + }, + "prec": { + "help": "Precision of the axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["prec"] + } + ], + "forbidden_values": ["", "None", null, "undef"], + "authorized_values": ["2", "4", "8"], + "corrections": { + "": "4", + "float": "4", + "real": "4", + "double": "8", + "integer": "2", + "int": "2" + } + }, + "unit": { + "help": "Unit of the axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["unit"] + } + ], + "forbidden_values": ["", "None", null, "undef"] + }, + "bounds": { + "help": "Bounds of the axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["bounds"] + } + ], + "forbidden_values": ["", "None", null, "undef"] + }, + "dim_name": { + "help": "Name dimension of the axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["dim_name"] + } + ], + "forbidden_values": ["", "None", null, "undef"] + }, + "label": { + "help": "Label of the axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["label"] + } + ], + "forbidden_values": ["", "None", null, "undef"] + }, + "value": { + "help": "Value of the axis.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["value"] + } + ], + "forbidden_values": ["", "None", null, "undef"] + } + } + }, + "grid": { + "attrs_list": ["id"], + "attrs_constraints": { + "id": { + "help": "Id of the grid.", + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["id"] + } + ] + } + } + } + } +} \ No newline at end of file diff --git a/dr2xml/projects/basics.py b/dr2xml/projects/basics.py deleted file mode 100644 index 97b45e5f..00000000 --- a/dr2xml/projects/basics.py +++ /dev/null @@ -1,1662 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -""" -Basics python tools -""" - -from __future__ import print_function, division, absolute_import, unicode_literals - -import datetime -import re - -import six - -from dr2xml.projects.projects_interface_definitions import ValueSettings, ParameterSettings, TagSettings, \ - ConditionSettings, FunctionSettings, CaseSettings - -parent_project_settings = "dr2xml" - - -def build_external_variables(cell_measures): - # - # CF rule : if the file variable has a cell_measures attribute, and - # the corresponding 'measure' variable is not included in the file, - # it must be quoted as external_variable - external_variables = list() - if "area:" in cell_measures: - external_variables.append(re.sub(".*area: ([^ ]*).*", r'\1', cell_measures)) - if "volume:" in cell_measures: - external_variables.append(re.sub(".*volume: ([^ ]*).*", r'\1', cell_measures)) - return " ".join(external_variables) - - -def compute_nb_days(year_ref, year_branch, month_ref=1, month_branch=1, day_ref=1, day_branch=1): - if isinstance(year_ref, six.string_types): - year_ref = int(year_ref) - if isinstance(month_ref, six.string_types): - month_ref = int(month_ref) - if isinstance(day_ref, six.string_types): - day_ref = int(day_ref) - if isinstance(year_branch, six.string_types): - year_branch = int(year_branch) - if isinstance(month_branch, six.string_types): - month_branch = int(month_branch) - if isinstance(day_branch, six.string_types): - day_branch = int(day_branch) - date_ref = datetime.datetime(year_ref, month_ref, day_ref) - date_branch = datetime.datetime(year_branch, month_branch, day_branch) - nb_days = (date_branch - date_ref).days - return "{}.0D".format(nb_days) - - -internal_values = dict() - -common_values = dict( - branch_year_in_parent=ParameterSettings( - key="branch_year_in_parent", - cases=[ - CaseSettings( - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="internal", keys="experiment_id"), - check_to_do="eq", - reference_values=ValueSettings(key_type="internal", keys="branching") - ), - ConditionSettings(check_value=ValueSettings(key_type="simulation", keys="branch_year_in_parent"), - check_to_do="eq", - reference_values=ValueSettings( - key_type="internal", - keys=[ - "branching", - ValueSettings(key_type="internal", keys="experiment_id"), - 1 - ] - ) - ) - ], - value=ValueSettings(key_type="simulation", keys="branch_year_in_parent") - ), - CaseSettings( - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="internal", keys="experiment_id"), - check_to_do="neq", - reference_values=ValueSettings(key_type="internal", keys="branching") - ) - ], - value=ValueSettings(key_type="simulation", keys="branch_year_in_parent") - ) - ], - skip_values=[None, "None", "", "N/A"], - help="Branch year in parent simulation with respect to its time axis." - ), - description=ParameterSettings( - key="description", - default_values=[ - ValueSettings(key_type="simulation", keys="description"), - ValueSettings(key_type="laboratory", keys="description") - ], - help="Description of the simulation." - ), - date_range=ParameterSettings( - key="date_range", - default_values=["%start_date%-%end_date%", ], - help="Date range format to be used in file definition names." - ), - list_perso_dev_file=ParameterSettings( - key="list_perso_dev_file", - default_values=["dr2xml_list_perso_and_dev_file_names", ], - help="Name of the file which will contain the list of the patterns of perso and dev output file definition." - ), - info_url=ParameterSettings( - key="info_url", - default_values=[ - ValueSettings(key_type="laboratory", keys="info_url") - ], - help="Location of documentation." - ), - expid_in_filename=ParameterSettings( - key="expid_in_filename", - default_values=[ - ValueSettings(key_type="simulation", keys="expid_in_filename"), - ValueSettings(key_type="internal", keys="experiment_id") - ], - forbidden_patterns=[".*_.*", ], - help="Experiment label to use in file names and attribute." - ), - experiment=ParameterSettings( - key="experiment", - default_values=[ - ValueSettings(key_type="simulation", keys="experiment") - ], - help="Name of the experiment." - ), - forcing_index=ParameterSettings( - key="forcing_index", - default_values=[ - ValueSettings(key_type="simulation", keys="forcing_index"), - "1" - ], - help="Index for variant of forcing." - ), - history=ParameterSettings( - key="history", - default_values=[ - ValueSettings(key_type="simulation", keys="history"), - "none" - ], - help="In case of replacement of previously produced data, description of any changes in the production chain." - ), - initialization_index=ParameterSettings( - key="initialization_index", - default_values=[ - ValueSettings(key_type="simulation", keys="initialization_index"), - "1" - ], - help="Index for variant of initialization method." - ), - branch_method=ParameterSettings( - key="branch_method", - default_values=[ - ValueSettings(key_type="simulation", keys="branch_method"), - "standard" - ], - help="Branching procedure." - ), - parent_mip_era=ParameterSettings( - key="parent_mip_era", - default_values=[ - ValueSettings(key_type="simulation", keys="parent_mip_era") - ], - help="Parent’s associated MIP cycle." - ), - parent_source_id=ParameterSettings( - key="parent_source_id", - default_values=[ - ValueSettings(key_type="simulation", keys="parent_source_id") - ], - help="Parent model identifier." - ), - parent_time_units=ParameterSettings( - key="parent_time_units", - default_values=[ - ValueSettings(key_type="simulation", keys="parent_time_units") - ], - help="Time units used in parent." - ), - parent_time_ref_year=ParameterSettings( - key="parent_time_ref_year", - default_values=[ - ValueSettings(key_type="simulation", keys="parent_time_ref_year"), - "1850" - ], - help="Reference year in parent simulation." - ), - branch_month_in_parent=ParameterSettings( - key="branch_month_in_parent", - default_values=[ - ValueSettings(key_type="simulation", keys="branch_month_in_parent"), - "1" - ], - help="Branch month in parent simulation with respect to its time axis." - ), - parent_variant_label=ParameterSettings( - key="parent_variant_label", - default_values=[ - ValueSettings(key_type="simulation", keys="parent_variant_label") - ], - help="Parent variant label." - ), - physics_index=ParameterSettings( - key="physics_index", - default_values=[ - ValueSettings(key_type="simulation", keys="physics_index"), - "1" - ], - help="Index for model physics variant." - ), - sub_experiment_id=ParameterSettings( - key="sub_experiment_id", - default_values=[ - ValueSettings(key_type="simulation", keys="sub_experiment_id"), - "none" - ], - help="Sub-experiment identifier." - ), - sub_experiment=ParameterSettings( - key="sub_experiment", - default_values=[ - ValueSettings(key_type="simulation", keys="sub_experiment"), - "none" - ], - help="Sub-experiment name." - ), - variant_info=ParameterSettings( - key="variant_info", - default_values=[ - ValueSettings(key_type="simulation", keys="variant_info") - ], - skip_values=["", ], - help="It is recommended that some description be included to help identify major differences among variants, " - "but care should be taken to record correct information. dr2xml will add in all cases: " - "'Information provided by this attribute may in some cases be flawed. Users can find more comprehensive " - "and up-to-date documentation via the further_info_url global attribute.'" - ), - comment_sim=ParameterSettings( - key="comment_sim", - default_values=[ - ValueSettings(key_type="simulation", keys="comment"), - "" - ], - help="A character string containing additional information about the models from simulation settings. " - "Will be complemented with the experiment's specific comment string." - ), - comment_lab=ParameterSettings( - key="comment_lab", - default_values=[ - ValueSettings(key_type="laboratory", keys="comment"), - "" - ], - help="A character string containing additional information about the models from laboratory settings. " - "Will be complemented with the experiment's specific comment string." - ), - references=ParameterSettings( - key="references", - default_values=[ - ValueSettings(key_type="laboratory", keys="references") - ], - help="References associated with the simulation." - ), - compression_level=ParameterSettings( - key="compression_level", - default_values=[ - ValueSettings(key_type="laboratory", keys="compression_level"), - "0" - ], - help="The compression level to be applied to NetCDF output files." - ), - output_level=ParameterSettings( - key="output_level", - default_values=[ - ValueSettings(key_type="laboratory", keys="output_level"), - "10" - ], - help="We can control the max output level set for all output files." - ), - source=ParameterSettings( - key="source", - default_values=[ - ValueSettings(key_type="laboratory", keys="source") - ], - help="Name of the model." - ), - institution=ParameterSettings( - key="institution", - default_values=[ - ValueSettings(key_type="laboratory", keys="institution") - ], - help="Full name of the institution of the data producer." - ), - contact=ParameterSettings( - key="contact", - default_values=[ - ValueSettings(key_type="simulation", keys="contact"), - ValueSettings(key_type="laboratory", keys="contact"), - "None" - ], - help="Email address of the data producer." - ), - HDL=ParameterSettings( - key="HDL", - default_values=[ - ValueSettings(key_type="simulation", keys="HDL"), - ValueSettings(key_type="laboratory", keys="HDL") - ], - help="HDL associated with the project." - ), - mip_era=ParameterSettings( - key="mip_era", - default_values=[ - ValueSettings(key_type="simulation", keys="mip_era"), - ValueSettings(key_type="laboratory", keys="mip_era") - ], - help="MIP associated with the simulation." - ), - activity_id=ParameterSettings( - key="activity_id", - default_values=[ - ValueSettings(key_type="simulation", keys="activity_id"), - ValueSettings(key_type="laboratory", keys="activity_id") - ], - help="MIP(s) name(s)." - ), - parent_activity_id=ParameterSettings( - key="parent_activity_id", - default_values=[ - ValueSettings(key_type="simulation", keys="parent_activity_id"), - ValueSettings(key_type="simulation", keys="activity_id"), - ValueSettings(key_type="laboratory", keys="parent_activity_id"), - ValueSettings(key_type="laboratory", keys="activity_id") - ], - help="Description of sub-experiment." - ), - parent_experiment_id=ParameterSettings( - key="parent_experiment_id", - default_values=[ - ValueSettings(key_type="simulation", keys="parent_experiment_id"), - ValueSettings(key_type="laboratory", keys="parent_experiment_id") - ], - help="Parent experiment identifier." - ), - convention_str=ParameterSettings( - key="convention_str", - default_values=[ - ValueSettings(key_type="config", keys="conventions") - ], - help="Version of the conventions used." - ), - dr2xml_version=ParameterSettings( - key="dr2xml_version", - default_values=[ - ValueSettings(key_type="config", keys="version") - ], - help="Version of dr2xml used." - ), - data_specs_version=ParameterSettings( - key="data_specs_version", - default_values=[ - ValueSettings(key_type="data_request", keys=["get_version", "__call__"]) - ], - fatal=True, - help="Version of the data request used." - ) -) - -project_settings = dict( - context=TagSettings( - attrs_list=["id", ], - attrs_constraints=dict( - id=ParameterSettings( - key="id", - help="Id of the context", - default_values=[ - ValueSettings(key_type="internal", keys="context") - ] - ), - ), - comments_list=["DR_version", "dr2xml_version", "lab_settings", "simulation_settings", "year"], - comments_constraints=dict( - DR_version=ParameterSettings( - key="DR_version", - help="Version of the Data Request used", - default_values=[ - ValueSettings(key_type="combine", fmt="{} Data Request version {}", - keys=[ValueSettings(key_type="internal", keys="data_request_used"), - ValueSettings(key_type="common", keys="data_specs_version")]) - ] - ), - dr2xml_version=ParameterSettings( - key="dr2xml_version", - help="Version of dr2xml used", - default_values=[ - ValueSettings(key_type="common", keys="dr2xml_version", fmt="dr2xml version {}") - ] - ), - lab_settings=ParameterSettings( - key="lab_settings", - help="Laboratory settings used", - default_values=[ - ValueSettings(key_type="laboratory", fmt="Lab_and_model settings\n{}") - ] - ), - simulation_settings=ParameterSettings( - key="simulation_settings", - help="Simulation_settings used", - default_values=[ - ValueSettings(key_type="simulation", fmt="Simulation settings\n{}") - ] - ), - year=ParameterSettings( - key="year", - help="Year used for the dr2xml's launch", - default_values=[ - ValueSettings(key_type="internal", keys="year", fmt="Year processed {}") - ] - ) - ) - ), - file_definition=TagSettings( - attrs_list=["type", "enabled"], - attrs_constraints=dict( - type=ParameterSettings( - key="type", - help="Type of file to be produced", - default_values=["one_file", ] - ), - enabled=ParameterSettings( - key="enabled", - help="Should the file_definition be considered by XIOS", - default_values=["true", ] - ) - ) - ), - file=TagSettings( - attrs_list=["id", "name", "mode", "output_freq", "enabled"], - attrs_constraints=dict( - id=ParameterSettings( - key="id", - help="Id of the file." - ), - name=ParameterSettings( - key="name", - help="File name." - ), - mode=ParameterSettings( - key="mode", - help="Mode in which the file will be open." - ), - output_freq=ParameterSettings( - key="output_freq", - help="Frequency of the outputs contained in the file." - ), - enabled=ParameterSettings( - key="enabled", - help="Should the file be considered by XIOS." - ) - ) - ), - file_output=TagSettings( - attrs_list=["id", "name", "output_freq", "append", "output_level", "compression_level", "split_freq", - "split_freq_format", "split_start_offset", "split_end_offset", "split_last_date", "time_units", - "time_counter_name", "time_counter", "time_stamp_name", "time_stamp_format", "uuid_name", - "uuid_format", "convention_str", "synchronisation_frequency"], - attrs_constraints=dict( - id=ParameterSettings( - key="id", - help="Id of the output file", - default_values=[ - ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="variable", keys="label"), - ValueSettings(key_type="dict", keys="table_id"), - ValueSettings(key_type="dict", keys="grid_label") - ], - fmt="{}_{}_{}" - ) - ] - ), - name=ParameterSettings( - key="name", - help="File name." - ), - output_freq=ParameterSettings( - key="output_freq", - help="Frequency of the outputs contained in the file." - ), - split_freq=ParameterSettings( - key="split_freq", - help="Splitting frequency of the file.", - skip_values=["", "None", None], - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="variable", keys="frequency"), - check_to_do="nmatch", reference_values=".*fx.*") - ] - ), - split_freq_format=ParameterSettings( - key="split_freq_format", - help="Splitting frequency format of the file.", - skip_values=["", "None", None], - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="variable", keys="frequency"), - check_to_do="nmatch", reference_values=".*fx.*") - ] - ), - split_start_offset=ParameterSettings( - key="split_start_offset", - help="Splitting start offset of the file", - skip_values=["", "None", "False", None, False], - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="variable", keys="frequency"), - check_to_do="nmatch", reference_values=".*fx.*") - ] - ), - split_end_offset=ParameterSettings( - key="split_end_offset", - help="Splitting end offset of the file", - skip_values=["", "None", "False", None, False], - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="variable", keys="frequency"), - check_to_do="nmatch", reference_values=".*fx.*") - ] - ), - split_last_date=ParameterSettings( - key="split_last_date", - help="Splitting last date of the file", - skip_values=["", "None", None], - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="variable", keys="frequency"), - check_to_do="nmatch", reference_values=".*fx.*") - ] - ), - append=ParameterSettings( - key="append", - help="Should the data be append to the file?", - default_values=["true", ] - ), - time_units=ParameterSettings( - key="time_units", - help="Time units of the file.", - default_values=["days", ] - ), - time_counter_name=ParameterSettings( - key="time_counter_name", - help="Time counter name.", - default_values=["time", ] - ), - time_counter=ParameterSettings( - key="time_counter", - help="Time counter type.", - default_values=["exclusive", ] - ), - time_stamp_name=ParameterSettings( - key="time_stamp_name", - help="Time stamp name.", - default_values=["creation_date", ] - ), - time_stamp_format=ParameterSettings( - key="time_stamp_format", - help="Time stamp format.", - default_values=["%Y-%m-%dT%H:%M:%SZ", ] - ), - uuid_name=ParameterSettings( - key="uuid_name", - help="Unique identifier of the file name.", - default_values=["tracking_id", ] - ), - uuid_format=ParameterSettings( - key="uuid_format", - help="Unique identifier of the file format.", - default_values=[ - ValueSettings(key_type="common", keys="HDL", fmt="hdl:{}/%uuid%") - ], - skip_values=["None", "", None] - ), - synchronisation_frequency=ParameterSettings( - key="synchronisation_frequency", - default_values=[ - ValueSettings(key_type="internal", keys="synchronisation_frequency") - ], - skip_values=["None", "", None], - help="Frequency at which the synchornisation between buffer and filesystem is done." - ), - convention_str=ParameterSettings( - key="convention_str", - help="Convention used for the file.", - default_values=[ - ValueSettings(key_type="common", keys="convention_str") - ] - ), - output_level=ParameterSettings( - key="output_level", - help="Output level of the file.", - default_values=[ - ValueSettings(key_type="common", keys="output_level") - ], - skip_values=["None", "", None] - ), - compression_level=ParameterSettings( - key="compression_level", - help="Compression level of the file.", - default_values=[ - ValueSettings(key_type="common", keys="compression_level") - ], - skip_values=["None", "", None] - ) - ), - vars_list=["activity_id", "contact", "data_specs_version", "dr2xml_version", "expid_in_filename", "description", - "title_desc", "experiment", "external_variables", "forcing_index", "frequency", "further_info_url", - "grid", "grid_label", "nominal_resolution", "comment", "history", "initialization_index", - "institution_id", "institution", "license", "mip_era", "parent_experiment_id", "parent_mip_era", - "parent_activity_id", "parent_source_id", "parent_time_units", "parent_variant_label", - "branch_method", "branch_time_in_parent", "branch_time_in_child", "physics_index", "product", - "realization_index", "realm", "references", "source", "source_id", "source_type", - "sub_experiment_id", "sub_experiment", "table_id", "title", "variable_id", "variant_info", - "variant_label"], - vars_constraints=dict( - grid=ParameterSettings( - key="grid", - help="Id of the grid used in the file." - ), - grid_label=ParameterSettings( - key="grid_label", - help="Label of the grid used in the file." - ), - nominal_resolution=ParameterSettings( - key="nominal_resolution", - help="Nominal resolution of the grid used in the file." - ), - license=ParameterSettings( - key="license", - help="License associated with the file." - ), - table_id=ParameterSettings( - key="table_id", - help="Id of the table associated with the file." - ), - variable_id=ParameterSettings( - key="variable_id", - help="Id of the variable contained in the file." - ), - contact=ParameterSettings( - key="contact", - help="Contact email.", - default_values=[ - ValueSettings(key_type="common", keys="contact") - ], - skip_values=["None", "", None] - ), - data_specs_version=ParameterSettings( - key="data_specs_version", - help="Version of the Data Request used.", - default_values=[ - ValueSettings(key_type="common", keys="data_specs_version") - ] - ), - dr2xml_version=ParameterSettings( - key="dr2xml_version", - help="Version of dr2xml used.", - default_values=[ - ValueSettings(key_type="common", keys="dr2xml_version") - ] - ), - expid_in_filename=ParameterSettings( - key="expid_in_filename", - help="Experiment id to be used in file name.", - output_key="experiment_id", - default_values=[ - ValueSettings(key_type="common", keys="expid_in_filename") - ] - ), - description=ParameterSettings( - key="description", - help="Description of the file.", - skip_values=["", "None", None], - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="internal", keys="experiment_id"), - check_to_do="eq", - reference_values=ValueSettings(key_type="common", keys="expid_in_filename")) - ], - default_values=[ - ValueSettings(key_type="common", keys="description") - ] - ), - title_desc=ParameterSettings( - key="title_desc", - help="Title of the file.", - output_key="title", - skip_values=["", "None", None], - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="internal", keys="experiment_id"), - check_to_do="eq", - reference_values=ValueSettings(key_type="common", keys="expid_in_filename")) - ], - default_values=[ - ValueSettings(key_type="common", keys="description") - ] - ), - experiment=ParameterSettings( - key="experiment", - help="Experiment associated with the simulation.", - skip_values=["", "None", None], - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="internal", keys="experiment_id"), - check_to_do="eq", - reference_values=ValueSettings(key_type="common", keys="expid_in_filename")) - ], - default_values=[ - ValueSettings(key_type="common", keys="experiment") - ] - ), - external_variables=ParameterSettings( - key="external_variables", - help="External variables associated with the file.", - skip_values=["", ], - default_values=[ - ValueSettings(key_type="variable", keys="cell_measures", - func=FunctionSettings(func=build_external_variables)) - ] - ), - forcing_index=ParameterSettings( - key="forcing_index", - help="Forcing index associated with the simulation.", - default_values=[ - ValueSettings(key_type="common", keys="forcing_index") - ], - num_type="int" - ), - further_info_url=ParameterSettings( - key="further_info_url", - help="Url to obtain further information associated with the simulation.", - skip_values=["", "None", None] - ), - history=ParameterSettings( - key="history", - help="History associated with the file.", - default_values=[ - ValueSettings(key_type="common", keys="history") - ] - ), - initialization_index=ParameterSettings( - key="initialization_index", - help="Initialization index associated with the simulation.", - default_values=[ - ValueSettings(key_type="common", keys="initialization_index") - ], - num_type="int" - ), - institution=ParameterSettings( - key="institution", - help="Institution associated with the simulation.", - default_values=[ - ValueSettings(key_type="common", keys="institution") - ], - fatal=True - ), - institution_id=ParameterSettings( - key="institution_id", - help="Institution id associated with the simulation.", - default_values=[ - ValueSettings(key_type="internal", keys="institution_id") - ], - fatal=True - ), - mip_era=ParameterSettings( - key="mip_era", - help="MIP associated with the simulation.", - default_values=[ - ValueSettings(key_type="common", keys="mip_era"), - ValueSettings(key_type="variable", keys="mip_era") - ] - ), - parent_experiment_id=ParameterSettings( - key="parent_experiment_id", - help="Parent experiment id associated with the simulation.", - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="common", keys="parent_experiment_id"), - check_to_do="neq", reference_values=["no parent", "", "None"]) - ], - default_values=[ - ValueSettings(key_type="common", keys="parent_experiment_id") - ] - ), - parent_mip_era=ParameterSettings( - key="parent_mip_era", - help="MIP associated with the parent experiment.", - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="common", keys="parent_experiment_id"), - check_to_do="neq", reference_values=["no parent", "", "None"]) - ], - default_values=[ - ValueSettings(key_type="common", keys="parent_mip_era"), - ValueSettings(key_type="common", keys="mip_era"), - ValueSettings(key_type="variable", keys="mip_era") - ] - ), - parent_activity_id=ParameterSettings( - key="parent_activity_id", - help="Activity id associated with the parent experiment.", - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="common", keys="parent_experiment_id"), - check_to_do="neq", reference_values=["no parent", "", "None"]) - ], - default_values=[ - ValueSettings(key_type="common", keys="parent_activity_id") - ] - ), - parent_source_id=ParameterSettings( - key="parent_source_id", - help="Model id of the parent experiment.", - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="common", keys="parent_experiment_id"), - check_to_do="neq", reference_values=["no parent", "", "None"]) - ], - default_values=[ - ValueSettings(key_type="common", keys="parent_source_id"), - ValueSettings(key_type="internal", keys="source_id") - ] - ), - parent_time_units=ParameterSettings( - key="parent_time_units", - help="Time units of the parent experiment.", - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="common", keys="parent_experiment_id"), - check_to_do="neq", reference_values=["no parent", "", "None"]) - ], - default_values=[ - ValueSettings(key_type="common", keys="parent_time_units"), - ValueSettings(key_type="common", keys="parent_time_ref_year", fmt="days since {}-01-01 00:00:00") - ] - ), - parent_variant_label=ParameterSettings( - key="parent_variant_label", - help="Variant label of the parent experiment.", - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="common", keys="parent_experiment_id"), - check_to_do="neq", reference_values=["no parent", "", "None"]) - ], - default_values=[ - ValueSettings(key_type="common", keys="parent_variant_label"), - ValueSettings(key_type="common", keys="variant_label") - ] - ), - branch_time_in_parent=ParameterSettings( - key="branch_time_in_parent", - help="Branch time of the simulation in the parent's one.", - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="common", keys="parent_experiment_id"), - check_to_do="neq", reference_values=["no parent", "", "None"]) - ], - num_type="double", - skip_values=["", "None", None], - default_values=[ - ValueSettings(func=FunctionSettings( - func=compute_nb_days, - options=dict( - year_ref=ValueSettings(key_type="common", keys="parent_time_ref_year"), - year_branch=ValueSettings(key_type="common", keys="branch_year_in_parent"), - month_branch=ValueSettings(key_type="common", keys="branch_month_in_parent") - ))), - ValueSettings(key_type="simulation", keys="branch_time_in_parent") - ] - ), - branch_time_in_child=ParameterSettings( - key="branch_time_in_child", - help="Branch time of the simulation in the child's one.", - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="common", keys="parent_experiment_id"), - check_to_do="neq", reference_values=["no parent", "", "None"]) - ], - num_type="double", - skip_values=["", "None", None], - default_values=[ - ValueSettings(func=FunctionSettings( - func=compute_nb_days, - options=dict( - year_ref=ValueSettings(key_type="simulation", keys="child_time_ref_year"), - year_branch=ValueSettings(key_type="simulation", keys="branch_year_in_child") - ))), - ValueSettings(key_type="simulation", keys="branch_time_in_child") - ] - ), - branch_method=ParameterSettings( - key="branch_method", - help="Branch method of the simulation.", - cases=[ - CaseSettings( - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="common", keys="parent_experiment_id"), - check_to_do="neq", reference_values=["no parent", "", "None"]) - ], - value=ValueSettings(key_type="common", keys="branch_method") - ), - CaseSettings(conditions=True, value="no parent") - ] - ), - physics_index=ParameterSettings( - key="physics_index", - help="Physics index associated with the simulation.", - default_values=[ - ValueSettings(key_type="common", keys="physics_index") - ], - num_type="int" - ), - product=ParameterSettings( - key="product", - help="Type of content of the file.", - default_values=["model-output", ] - ), - realization_index=ParameterSettings( - key="realization_index", - help="Realization index associated with the simulation.", - default_values=[ - ValueSettings(key_type="internal", keys="realization_index") - ], - num_type="int" - ), - references=ParameterSettings( - key="references", - help="References associated with the simulation.", - default_values=[ - ValueSettings(key_type="common", keys="references") - ] - ), - sub_experiment_id=ParameterSettings( - key="sub_experiment_id", - help="Id of the sub experiment associated with the simulation.", - default_values=[ - ValueSettings(key_type="common", keys="sub_experiment_id") - ] - ), - sub_experiment=ParameterSettings( - key="sub_experiment", - help="Name of the sub experiment associated with the simulation.", - default_values=[ - ValueSettings(key_type="common", keys="sub_experiment") - ] - ), - variant_info=ParameterSettings( - key="variant_info", - help="Variant information associated with the simulation.", - default_values=[ - ValueSettings(key_type="common", keys="variant_info", - fmt=". Information provided by this attribute may in some cases be flawed. " - "Users can find more comprehensive and up-to-date documentation via the " - "further_info_url global attribute.") - ] - ), - realm=ParameterSettings( - key="realm", - help="Realm associated with the file.", - default_values=[ - ValueSettings(key_type="variable", keys="modeling_realm", - func=lambda x: ",".join(x) if isinstance(x, list) else x) - ] - ), - frequency=ParameterSettings( - key="frequency", - help="Frequency associated with the file.", - default_values=[ - ValueSettings(key_type="variable", keys="frequency") - ] - ), - comment=ParameterSettings( - key="comment", - help="Comment associated with the file.", - skip_values=["", ], - cases=[ - CaseSettings( - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="variable", keys="comments"), - check_to_do="neq", reference_values=["", "None", None]) - ], - value=ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="common", keys="comment_lab"), - ValueSettings(key_type="common", keys="comment_sim"), - ValueSettings(key_type="variable", keys="comments") - ], - fmt="{}{}{}" - ) - ), - CaseSettings( - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="common", keys="comment_sim"), - check_to_do="neq", reference_values=["", "None", None]), - ConditionSettings(check_value=ValueSettings(key_type="common", keys="comment_lab"), - check_to_do="neq", reference_values=["", "None", None]) - ], - value=ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="common", keys="comment_lab"), - ValueSettings(key_type="common", keys="comment_sim") - ], - fmt="{}{}" - ) - ), - CaseSettings( - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="common", keys="comment_sim"), - check_to_do="neq", reference_values=["", "None", None]) - ], - value=ValueSettings(key_type="common", keys="comment_sim") - ), - CaseSettings( - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="common", keys="comment_lab"), - check_to_do="neq", reference_values=["", "None", None]) - ], - value=ValueSettings(key_type="common", keys="comment_lab") - ) - ] - ), - variant_label=ParameterSettings( - key="variant_label", - help="Variant label associated with the simulation.", - default_values=[ - ValueSettings(key_type="common", keys="variant_label") - ] - ), - activity_id=ParameterSettings( - key="activity_id", - help="Activity id associated with the simulation.", - default_values=[ - ValueSettings(key_type="common", keys="activity_id") - ] - ), - source=ParameterSettings( - key="source", - help="Model associated with the simulation.", - default_values=[ - ValueSettings(key_type="common", keys="source") - ] - ), - source_id=ParameterSettings( - key="source_id", - help="Model id associated with the simulation.", - default_values=[ - ValueSettings(key_type="internal", keys="source_id") - ] - ), - source_type=ParameterSettings( - key="source_type", - help="Model type associated with the simulation.", - default_values=[ - ValueSettings(key_type="internal", keys="source_type") - ] - ), - title=ParameterSettings( - key="title", - help="Title of the file.", - default_values=[ - ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="internal", keys="source_id"), - ValueSettings(key_type="internal", keys="project"), - ValueSettings(key_type="common", keys="activity_id"), - ValueSettings(key_type="simulation", keys="expid_in_filename") - ], - fmt="{} model output prepared for {} and {} / {} simulation" - ), - ValueSettings( - key_type="combine", - keys=[ - ValueSettings(key_type="internal", keys="source_id"), - ValueSettings(key_type="internal", keys="project"), - ValueSettings(key_type="common", keys="activity_id"), - ValueSettings(key_type="internal", keys="experiment_id") - ], - fmt="{} model output prepared for {} / {} {}" - ) - ] - ) - ) - ), - field_group=TagSettings( - attrs_list=["freq_op", "freq_offset"], - attrs_constraints=dict( - freq_op=ParameterSettings( - key="freq_op", - help="Frequency of the operation done on the field." - ), - freq_offset=ParameterSettings( - key="freq_offset", - help="Offset to be applied on operations on the field." - ) - ) - ), - field=TagSettings( - attrs_list=["id", "field_ref", "name", "freq_op", "freq_offset", "grid_ref", "long_name", "standard_name", - "unit", "operation", "detect_missing_value", "prec"], - attrs_constraints=dict( - id=ParameterSettings( - key="id", - help="Id of the field." - ), - field_ref=ParameterSettings( - key="field_ref", - help="Id of the reference field." - ), - name=ParameterSettings( - key="name", - help="Name of the field." - ), - freq_op=ParameterSettings( - key="freq_op", - help="Frequency of the operation done on the field." - ), - freq_offset=ParameterSettings( - key="freq_offset", - help="Offset to be applied on operations on the field." - ), - grid_ref=ParameterSettings( - key="grid_ref", - help="Reference grid of the field." - ), - long_name=ParameterSettings( - key="long_name", - help="Long name of the field." - ), - standard_name=ParameterSettings( - key="standard_name", - help="Standard name of the field." - ), - unit=ParameterSettings( - key="unit", - help="Unit of the field." - ), - operation=ParameterSettings( - key="operation", - help="Operation done on the field." - ), - detect_missing_value=ParameterSettings( - key="detect_missing_value", - help="Should missing values of the field be detected by XIOS." - ), - prec=ParameterSettings( - key="prec", - help="Precision of the field." - ) - ) - ), - field_output=TagSettings( - attrs_list=["field_ref", "name", "grid_ref", "freq_offset", "detect_missing_value", "default_value", "prec", - "cell_methods", "cell_methods_mode", "operation", "freq_op", "expr"], - attrs_constraints=dict( - name=ParameterSettings( - key="name", - help="Name of the field.", - default_values=[ - ValueSettings(key_type="variable", keys="mipVarLabel") - ] - ), - field_ref=ParameterSettings( - key="field_ref", - help="Reference field." - ), - operation=ParameterSettings( - key="operation", - help="Operation performed on the field." - ), - grid_ref=ParameterSettings( - key="grid_ref", - help="Reference grid of the field.", - skip_values=["", "None", None] - ), - freq_offset=ParameterSettings( - key="freq_offset", - help="Offset to be applied on operations on the field.", - skip_values=["", "None", None] - ), - freq_op=ParameterSettings( - key="freq_op", - help="Frequency of the operation done on the field.", - skip_values=["", "None", None] - ), - expr=ParameterSettings( - key="expr", - help="Expression used to compute the field.", - skip_values=["", "None", None] - ), - cell_methods_mode=ParameterSettings( - key="cell_methods_mode", - help="Mode associated with the cell method of the field.", - default_values=["overwrite", ] - ), - cell_methods=ParameterSettings( - key="cell_methods", - help="Cell method associated with the field.", - default_values=[ - ValueSettings(key_type="variable", keys="cell_methods") - ] - ), - prec=ParameterSettings( - key="prec", - help="Precision of the field.", - default_values=[ - ValueSettings(key_type="variable", keys="prec") - ], - authorized_values=["2", "4", "8"], - corrections={ - "": "4", - "float": "4", - "real": "4", - "double": "8", - "integer": "2", - "int": "2" - }, - fatal=True - ), - default_value=ParameterSettings( - key="default_value", - help="Default value associated with the field.", - default_values=[ - ValueSettings(key_type="variable", keys="prec") - ], - authorized_values=["0", "1.e+20"], - corrections={ - "": "1.e+20", - "float": "1.e+20", - "real": "1.e+20", - "double": "1.e+20", - "integer": "0", - "int": "0" - }, - fatal=True - ), - detect_missing_value=ParameterSettings( - key="detect_missing_value", - help="Should missing values of the field be detected by XIOS.", - default_values=["True", ] - ) - ), - vars_list=["comment", "standard_name", "description", "long_name", "positive", "history", "units", - "cell_methods", "cell_measures", "flag_meanings", "flag_values", "interval_operation"], - vars_constraints=dict( - standard_name=ParameterSettings( - key="standard_name", - help="Standard name of the field.", - default_values=[ - ValueSettings(key_type="variable", keys="stdname") - ], - skip_values=["", "None", None] - ), - description=ParameterSettings( - key="description", - help="Description associated with the field.", - default_values=[ - ValueSettings(key_type="variable", keys="description"), - "None" - ], - skip_values=["", ] - ), - long_name=ParameterSettings( - key="long_name", - help="Long name of the field.", - default_values=[ - ValueSettings(key_type="variable", keys="long_name") - ] - ), - history=ParameterSettings( - key="history", - help="History associated with the field.", - default_values=[ - ValueSettings(key_type="common", keys="history") - ] - ), - comment=ParameterSettings( - key="comment", - help="Comment associated with the field.", - default_values=[ - ValueSettings( - key_type="simulation", - keys=[ - "comments", - ValueSettings(key_type="variable", keys="label") - ] - ), - ValueSettings( - key_type="laboratory", - keys=[ - "comments", - ValueSettings(key_type="variable", keys="label") - ] - ) - ], - skip_values=["", "None", None] - ), - positive=ParameterSettings( - key="positive", - help="Way the field should be interpreted.", - default_values=[ - ValueSettings(key_type="variable", keys="positive") - ], - skip_values=["", "None", None] - ), - detect_missing_value=ParameterSettings( - key="detect_missing_value", - help="Should missing values of the field be detected by XIOS.", - default_values=["none", ] - ), - units=ParameterSettings( - key="units", - help="Units associated with the field.", - default_values=[ - ValueSettings(key_type="variable", keys="units") - ], - skip_values=["", "None", None] - ), - cell_methods=ParameterSettings( - key="cell_methods", - help="Cell method associated with the field.", - default_values=[ - ValueSettings(key_type="variable", keys="cell_methods") - ], - skip_values=["", "None", None] - ), - cell_measures=ParameterSettings( - key="cell_measures", - help="Cell measures associated with the field.", - default_values=[ - ValueSettings(key_type="variable", keys="cell_measures") - ], - skip_values=["", "None", None] - ), - flag_meanings=ParameterSettings( - key="flag_meanings", - help="Flag meanings associated with the field.", - default_values=[ - ValueSettings(key_type="variable", keys="flag_meanings") - ], - skip_values=["", "None", None] - ), - flag_values=ParameterSettings( - key="flag_values", - help="Flag values associated with the field.", - default_values=[ - ValueSettings(key_type="variable", keys="flag_values") - ], - skip_values=["", "None", None] - ), - interval_operation=ParameterSettings( - key="interval_operation", - help="Interval associated with the operation done on the field.", - conditions=[ - ConditionSettings(check_value=ValueSettings(key_type="dict", keys="operation"), - check_to_do="neq", reference_values="once") - ] - ) - ) - ), - grid=TagSettings( - attrs_list=["id", ], - attrs_constraints=dict( - id=ParameterSettings( - key="id", - help="Id of the grid." - ) - ) - ), - axis=TagSettings( - attrs_list=["id", "positive", "n_glo", "value", "axis_ref", "name", "standard_name", "long_name", "prec", - "unit", "value", "bounds", "dim_name", "label", "axis_type"], - attrs_constraints=dict( - id=ParameterSettings( - key="id", - help="Id of the axis." - ), - positive=ParameterSettings( - key="positive", - help="How is the axis oriented?" - ), - n_glo=ParameterSettings( - key="n_glo", - help="Number of values of this axis." - ), - axis_ref=ParameterSettings( - key="axis_ref", - help="Reference axis." - ), - name=ParameterSettings( - key="name", - help="Name of this axis." - ), - long_name=ParameterSettings( - key="long_name", - help="Long name of this axis." - ), - axis_type=ParameterSettings( - key="axis_type", - help="Axis type.", - skip_values=["", "None", None] - ), - standard_name=ParameterSettings( - key="standard_name", - help="Standard name of the axis.", - skip_values=["", "None", None], - authorized_types=[str, ] - ), - prec=ParameterSettings( - key="prec", - help="Precision of the axis.", - skip_values=["", "None", None], - authorized_values=["2", "4", "8"], - corrections={ - "": "4", - "float": "4", - "real": "4", - "double": "8", - "integer": "2", - "int": "2" - }, - ), - unit=ParameterSettings( - key="unit", - help="Unit of the axis.", - skip_values=["", "None", None] - ), - bounds=ParameterSettings( - key="bounds", - help="Bounds of the axis.", - skip_values=["", "None", None] - ), - dim_name=ParameterSettings( - key="dim_name", - help="Name dimension of the axis.", - skip_values=["", "None", None] - ), - label=ParameterSettings( - key="label", - help="Label of the axis.", - skip_values=["", "None", None] - ), - value=ParameterSettings( - key="value", - help="Value of the axis.", - skip_values=["", "None", None] - ) - ) - ), - zoom_axis=TagSettings( - attrs_list=["index", ], - attrs_constraints=dict( - index=ParameterSettings( - key="index", - help="Index of the zoomed axis." - ) - ) - ), - interpolate_axis=TagSettings( - attrs_list=["type", "order", "coordinate"], - attrs_constraints=dict( - type=ParameterSettings( - key="type", - help="Type of the interpolated axis." - ), - order=ParameterSettings( - key="order", - help="Order of the interpolated axis." - ), - coordinate=ParameterSettings( - key="coordinate", - help="Coordinate of the interpolated axis." - ) - ) - ), - axis_group=TagSettings( - attrs_list=["prec", ], - attrs_constraints=dict( - prec=ParameterSettings( - key="prec", - help="Precision associated with the axis group.", - default_values=["8", ], - authorized_values=["2", "4", "8"], - corrections={ - "": "4", - "float": "4", - "real": "4", - "double": "8", - "integer": "2", - "int": "2" - }, - ) - ) - ), - domain=TagSettings( - attrs_list=["id", "ni_glo", "nj_glo", "type", "prec", "lat_name", "lon_name", "dim_i_name", "domain_ref"], - attrs_constraints=dict( - id=ParameterSettings( - key="id", - help="Id of the domain." - ), - ni_glo=ParameterSettings( - key="ni_glo", - help="Number of points on i dimension." - ), - nj_glo=ParameterSettings( - key="nj_glo", - help="Number of points on j dimension." - ), - type=ParameterSettings( - key="type", - help="Type of the domain." - ), - prec=ParameterSettings( - key="prec", - help="Precision of the domain." - ), - lat_name=ParameterSettings( - key="lat_name", - help="Latitude axis name." - ), - lon_name=ParameterSettings( - key="lon_name", - help="Longitude axis name." - ), - dim_i_name=ParameterSettings( - key="dim_i_name", - help="Name of the i dimension." - ), - domain_ref=ParameterSettings( - key="domain_ref", - help="Reference domain." - ) - ) - ), - interpolate_domain=TagSettings( - attrs_list=["type", "order", "renormalize", "mode", "write_weight", "coordinate"], - attrs_constraints=dict( - type=ParameterSettings( - key="type", - help="Type of the interpolated domain." - ), - order=ParameterSettings( - key="order", - help="Order of the interpolation." - ), - renormalize=ParameterSettings( - key="renormalize", - help="Should the interpolated domain be renormalized?" - ), - mode=ParameterSettings( - key="mode", - help="Mode used for the interpolation." - ), - write_weight=ParameterSettings( - key="write_weight", - help="Should interpolation weights be written?" - ), - coordinate=ParameterSettings( - key="coordinate", - help="Coordinate of the interpolated domain." - ) - ) - ), - domain_group=TagSettings( - attrs_list=["prec", ], - attrs_constraints=dict( - prec=ParameterSettings( - key="prec", - help="Precision associated with the domain group.", - default_values=["8", ], - authorized_values=["2", "4", "8"], - corrections={ - "": "4", - "float": "4", - "real": "4", - "double": "8", - "integer": "2", - "int": "2" - }, - ) - ) - ), - scalar=TagSettings( - attrs_list=["id", "scalar_ref", "name", "standard_name", "long_name", "label", "prec", "value", "bounds", - "bounds_name", "axis_type", "positive", "unit"], - attrs_constraints=dict( - id=ParameterSettings( - key="id", - help="Id of the scalar." - ), - scalar_ref=ParameterSettings( - key="scalar_ref", - help="Reference scalar." - ), - name=ParameterSettings( - key="name", - help="Name of the scalar." - ), - long_name=ParameterSettings( - key="long_name", - help="Long name of the scalar." - ), - standard_name=ParameterSettings( - key="standard_name", - help="Standard name of the scalar.", - skip_values=["", "None", None] - ), - axis_type=ParameterSettings( - key="axis_type", - help="Axis type of the scalar.", - skip_values=["", "None", None] - ), - unit=ParameterSettings( - key="unit", - help="Unit of the scalar.", - skip_values=["", "None", None] - ), - label=ParameterSettings( - key="label", - help="Label of the scalar.", - skip_values=["", "None", None] - ), - bounds=ParameterSettings( - key="bounds", - help="Bounds of the scalar.", - skip_values=["", "None", None] - ), - bounds_name=ParameterSettings( - key="bounds_name", - help="Bounds name of the scalar.", - skip_values=["", "None", None] - ), - prec=ParameterSettings( - key="prec", - help="Precision of the scalar.", - skip_values=["", "None", None], - authorized_values=["2", "4", "8"], - corrections={ - "": "4", - "float": "4", - "real": "4", - "double": "8", - "integer": "2", - "int": "2" - }, - ), - value=ParameterSettings( - key="value", - help="Value of the scalar.", - skip_values=["", "None", None] - ), - positive=ParameterSettings( - key="positive", - help="Orientation of the scalar.", - skip_values=["", "None", None] - ) - ) - ) -) diff --git a/dr2xml/projects/basics_func.py b/dr2xml/projects/basics_func.py new file mode 100644 index 00000000..5aaff83d --- /dev/null +++ b/dr2xml/projects/basics_func.py @@ -0,0 +1,47 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +Basics python tools +""" + +from __future__ import print_function, division, absolute_import, unicode_literals + +import datetime +import re + +import six + +from dr2xml.projects.dr2xml_func import sort_mips, format_sizes + + +def build_external_variables(cell_measures): + # + # CF rule : if the file variable has a cell_measures attribute, and + # the corresponding 'measure' variable is not included in the file, + # it must be quoted as external_variable + external_variables = list() + if "area:" in cell_measures: + external_variables.append(re.sub(".*area: ([^ ]*).*", r'\1', cell_measures)) + if "volume:" in cell_measures: + external_variables.append(re.sub(".*volume: ([^ ]*).*", r'\1', cell_measures)) + return " ".join(external_variables) + + +def compute_nb_days(year_ref, year_branch, month_ref=1, month_branch=1, day_ref=1, day_branch=1): + if isinstance(year_ref, six.string_types): + year_ref = int(year_ref) + if isinstance(month_ref, six.string_types): + month_ref = int(month_ref) + if isinstance(day_ref, six.string_types): + day_ref = int(day_ref) + if isinstance(year_branch, six.string_types): + year_branch = int(year_branch) + if isinstance(month_branch, six.string_types): + month_branch = int(month_branch) + if isinstance(day_branch, six.string_types): + day_branch = int(day_branch) + date_ref = datetime.datetime(year_ref, month_ref, day_ref) + date_branch = datetime.datetime(year_branch, month_branch, day_branch) + nb_days = (date_branch - date_ref).days + return "{}.0D".format(nb_days) diff --git a/dr2xml/projects/dr2xml.json b/dr2xml/projects/dr2xml.json new file mode 100644 index 00000000..8ab64de8 --- /dev/null +++ b/dr2xml/projects/dr2xml.json @@ -0,0 +1,2385 @@ +{ + "functions_file": "dr2xml_func.py", + "init": { + "data_request_config": { + "help": "Configuration file of the data request content to be used.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": "data_request_config" + }, + "__package-root__/dr_interface/CMIP7_config" + ] + }, + "data_request_content_version": { + "help": "Version of the data request content to be used.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["data_request_content_version"] + }, + "latest_stable" + ] + }, + "data_request_path": { + "help": "Path where the data request API used is placed.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["data_request_path"] + }, + null + ] + }, + "data_request_used": { + "help": "The Data Request infrastructure type which should be used.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["data_request_used"] + }, + "CMIP6" + ] + }, + "institution_id": { + "help": "Institution identifier.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["institution_id"] + } + ] + }, + "laboratory_used": { + "help": "File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["laboratory_used"] + }, + null + ] + }, + "project": { + "help": "Project associated with the simulation.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["project"] + }, + "CMIP6" + ] + }, + "project_settings": { + "help": "Project settings definition file to be used.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["project_settings"] + }, + { + "type": "value", + "origin": "init", + "keys": ["project"] + } + ] + }, + "save_project_settings": { + "help": "The path of the file where the complete project settings will be written, if needed.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["save_project_settings"] + }, + null + ] + }, + "vocabulary_config": { + "help": "Configuration file of the vocabulary to be used.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["vocabulary_config"] + }, + "__package-root__/vocabulary/vocabulary.json" + ] + }, + "vocabulary_project": { + "help": "The vocabulary project which should be used.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["vocabulary_project"], + "format": { + "type": "func", + "origin": "self", + "keys": ["lower"] + } + }, + { + "type": "value", + "origin": "init", + "keys": ["project"], + "format": { + "type": "func", + "origin": "self", + "keys": ["lower"] + } + } + ] + }, + "vocabulary_used": { + "help": "The vocabulary infrastructure type which should be used.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["vocabulary_used"] + }, + null + ] + } + }, + "internal": { + "add_Gibraltar": { + "help": "DR01.00.21 does not include Gibraltar strait, which is requested by OMIP. Can include it, if model provides it as last value of array.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["add_Gibraltar"] + }, + false + ] + }, + "additional_allowed_model_components": { + "help": "Dictionary which contains, for each model, the list of components whih can be used in addition to the declared ones.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": [ + "additional_allowed_components", + { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + ] + }, + [] + ] + }, + "adhoc_policy_do_add_1deg_grid_for_tos": { + "help": "Some scenario experiment in DR 01.00.21 do not request tos on 1 degree grid, while other do. If you use grid_policy=adhoc and had not changed the mapping of function. grids.lab_adhoc_grid_policy to grids.CNRM_grid_policy, next setting can force any tos request to also produce tos on a 1 degree grid.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["adhoc_policy_do_add_1deg_grid_for_tos"] + }, + false + ] + }, + "allow_duplicates": { + "help": "Should we allow for duplicate vars: two vars with same frequency, shape and realm, which differ only by the table. In DR01.00.21, this actually applies to very few fields (ps-Aermon, tas-ImonAnt, areacellg-IfxAnt).", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["allow_duplicates"] + }, + true + ] + }, + "allow_duplicates_in_same_table": { + "help": "Should we allow for another type of duplicate vars : two vars with same name in same table (usually with different shapes). This applies to e.g. CMOR vars 'ua' and 'ua7h' in 6hPlevPt. Default to False, because CMIP6 rules does not allow to name output files differently in that case. If set to True, you should also set 'use_cmorvar_label_in_filename' to True to overcome the said rule.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["allow_duplicates_in_same_table"] + }, + false + ] + }, + "allow_pseudo_standard_names": { + "help": "DR has sn attributes for MIP variables. They can be real,CF-compliant, standard_names or pseudo_standard_names, i.e. not yet approved labels. Default is to use only CF ones.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["allow_pseudo_standard_names"] + }, + false + ] + }, + "allow_tos_3hr_1deg": { + "help": "When using select='no', Xios may enter an endless loop, which is solved if next setting is False.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["allow_tos_3hr_1deg"] + }, + true + ] + }, + "branching": { + "help": "Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": [ + "branching", + { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + ] + }, + {} + ] + }, + "branch_year_in_child": { + "help": "In some instances, the experiment start year is not explicit or is doubtful in DR. See file doc/some_experiments_starty_in_DR01.00.21. You should then specify it, using next setting in order that requestItems analysis work in all cases. In some other cases, DR requestItems which apply to the experiment form its start does not cover its whole duration and have a wrong duration (computed based on a wrong start year); They necessitate to fix the start year.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": "branch_year_in_child" + } + ] + }, + "bypass_CV_components": { + "help": "If the CMIP6 Controlled Vocabulary doesn't allow all the components you activate, you can set next toggle to True", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["bypass_CV_components"] + }, + false + ] + }, + "bytes_per_float": { + "help": "Estimate of number of bytes per floating value, given the chosen :term:`compression_level`.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["bytes_per_float"] + }, + 2 + ] + }, + "CFsubhr_frequency": { + "help": "CFMIP has an elaborated requirement for defining subhr frequency; by default, dr2xml uses 1 time step.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": "CFsubhr_frequency" + }, + "1ts" + ] + }, + "configuration": { + "help": "Configuration used for this experiment. If there is no configuration in lab_settings which matches you case, please rather use next or next two entries: :term:`source_id` and, if needed, :term:`source_type`.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["configuration"] + } + ] + }, + "context": { + "help": "Context associated with the xml file produced.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "dict", + "keys": ["context"] + } + ] + }, + "debug_parsing": { + "help": "In order to identify which xml files generates a problem, you can use this flag.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["debug_parsing"] + }, + false + ] + }, + "dr2xml_manages_enddate": { + "help": "A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["dr2xml_manages_enddate"] + }, + true + ] + }, + "end_year": { + "help": "If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["end_year"] + }, + false + ] + }, + "excluded_expgroups_lset": { + "help": "List of the experiments groups that will be excluded from outputs from laboratory settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["excluded_expgroups"] + }, + [] + ] + }, + "excluded_expgroups_sset": { + "help": "List of the experiments groups that will be excluded from outputs from simulation settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["excluded_expgroups"] + }, + [] + ] + }, + "excluded_opportunities_lset": { + "help": "List of the opportunities that will be excluded from outputs from laboratory settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["excluded_opportunities"] + }, + [] + ] + }, + "excluded_opportunities_sset": { + "help": "List of the opportunities that will be excluded from outputs from simulation settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["excluded_opportunities"] + }, + [] + ] + }, + "excluded_pairs_lset": { + "help": "You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from laboratory settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["excluded_pairs"] + }, + [] + ] + }, + "excluded_pairs_sset": { + "help": "You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from simulation settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["excluded_pairs"] + }, + [] + ] + }, + "excluded_request_links": { + "help": "List of links un data request that should not been followed (those request are not taken into account).", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["excluded_request_links"] + }, + [] + ] + }, + "excluded_spshapes_lset": { + "help": "The list of shapes that should be excluded (all variables in those shapes will be excluded from outputs).", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["excluded_spshapes"] + }, + [] + ] + }, + "excluded_tables_lset": { + "help": "List of the tables that will be excluded from outputs from laboratory settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["excluded_tables"] + }, + [] + ] + }, + "excluded_tables_sset": { + "help": "List of the tables that will be excluded from outputs from simulation settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["excluded_tables"] + }, + [] + ] + }, + "excluded_vargroups_lset": { + "help": "List of the variables groups that will be excluded from outputs from laboratory settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["excluded_vargroups"] + }, + [] + ] + }, + "excluded_vargroups_sset": { + "help": "List of the variables groups that will be excluded from outputs from simulation settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["excluded_vargroups"] + }, + [] + ] + }, + "excluded_vars_lset": { + "help": "List of CMOR variables to exclude from the result based on previous Data Request extraction from laboratory settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["excluded_vars"] + }, + [] + ] + }, + "excluded_vars_per_config": { + "help": "A dictionary which keys are configurations and values the list of variables that must be excluded for each configuration.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": [ + "excluded_vars_per_config", + { + "type": "value", + "origin": "internal", + "keys": ["configuration"] + } + ] + }, + [] + ] + }, + "excluded_vars_per_shape": { + "help": "A dictionary which keys are shapes and values the list of variables that must be excluded for each shape.", + "target_type": "dict", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": [ + "excluded_vars_per_shape" + ] + }, + {} + ] + }, + "excluded_vars_sset": { + "help": "List of CMOR variables to exclude from the result based on previous Data Request extraction from simulation settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["excluded_vars"] + }, + [] + ] + }, + "experiment_for_requests": { + "help": "Experiment id to use for driving the use of the Data Request.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": "experiment_for_requests" + }, + { + "type": "value", + "origin": "internal", + "keys": "experiment_id" + } + ] + }, + "experiment_id": { + "help": "Root experiment identifier", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": "experiment_id" + } + ] + }, + "filter_on_realization": { + "help": "If you want to produce the same variables set for all members, set this parameter to False.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["filter_on_realization"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["filter_on_realization"] + }, + true + ] + }, + "fx_from_file": { + "help": "You may provide some variables already horizontally remapped to some grid (i.e. Xios domain) in external files. The varname in file must match the referenced id in pingfile. Tested only for fixed fields. A dictionary with variable id as key and a dictionary as value: the key must be the grid id, the value a dictionary with the file for each resolution.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["fx_from_file"] + }, + [] + ] + }, + "grid_choice": { + "help": "A dictionary which keys are models name and values the corresponding resolution.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": [ + "grid_choice", + { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + ] + } + ] + }, + "grid_policy": { + "help": "The grid choice policy for output files.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["grid_policy"] + }, + false + ] + }, + "grid_prefix": { + "help": "Prefix of the dr2xml generated grid named to be used.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["grid_prefix"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["ping_variables_prefix"] + } + ] + }, + "grids": { + "help": "Grids : per model resolution and per context :\\n- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)\\n- Xios id for the production grid (if it is not the native grid)\\n- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)\\n- resolution of the production grid (using CMIP6 conventions)\\n- grid description", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["grids"] + } + ] + }, + "grids_dev": { + "help": "Grids definition for dev variables.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["grids_dev"] + }, + {} + ] + }, + "grouped_vars_per_file": { + "help": "Variables to be grouped in the same output file (provided additional conditions are filled).", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["grouped_vars_per_file"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["grouped_vars_per_file"] + }, + [] + ] + }, + "included_expgroups": { + "help": "List of experiments groups that will be processed (all others will not).", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["included_expgroups"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["included_expgroups_lset"] + } + ] + }, + "included_expgroups_lset": { + "help": "List of experiments groups that will be processed (all others will not) from laboratory settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["included_expgroups"] + }, + [] + ] + }, + "included_opportunities": { + "help": "List of opportunities that will be processed (all others will not).", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["included_opportunities"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["included_opportunities_lset"] + } + ] + }, + "included_opportunities_lset": { + "help": "List of opportunities that will be processed (all others will not) from laboratory settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["included_opportunities"] + }, + [] + ] + }, + "included_request_links": { + "help": "List of the request links that will be processed (all others will not).", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["included_request_links"] + }, + [] + ] + }, + "included_tables": { + "help": "List of tables that will be processed (all others will not).", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["included_tables"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["included_tables_lset"] + } + ] + }, + "included_tables_lset": { + "help": "List of tables that will be processed (all others will not) from laboratory settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["included_tables"] + }, + [] + ] + }, + "included_vargroups": { + "help": "List of variables groups that will be processed (all others will not).", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["included_vargroups"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["included_vargroups_lset"] + } + ] + }, + "included_vargroups_lset": { + "help": "List of variables groups that will be processed (all others will not) from laboratory settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["included_vargroups"] + }, + [] + ] + }, + "included_vars": { + "help": "Variables to be considered from the Data Request (all others will not)", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["included_vars"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["included_vars_lset"] + } + ] + }, + "included_vars_lset": { + "help": "Variables to be considered from the Data Request (all others will not) from laboratory settings.", + "target_type": "list", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["included_vars"] + }, + [] + ] + }, + "listof_home_vars": { + "help": "Full path to the file which contains the list of home variables to be taken into account, in addition to the Data Request.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["listof_home_vars"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["listof_home_vars"] + }, + null + ] + }, + "max_file_size_in_floats": { + "help": "The maximum size of generated files in number of floating values.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["max_file_size_in_floats"] + }, + 500000000.0 + ] + }, + "max_priority": { + "help": "Max variable priority level to be output (you may set 3 when creating ping_files while being more restrictive at run time).", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["max_priority"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["max_priority_lset"] + } + ] + }, + "max_priority_lset": { + "help": "Max variable priority level to be output (you may set 3 when creating ping_files while being more restrictive at run time) from lab settings.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["max_priority"] + } + ] + }, + "max_split_freq": { + "help": "The maximum number of years that should be putted in a single file.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["max_split_freq"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["max_split_freq"] + }, + null + ] + }, + "mips": { + "help": "A dictionary in which keys are grid and values a set of strings corresponding to MIPs names.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["mips"] + } + ] + }, + "nemo_sources_management_policy_master_of_the_world": { + "help": "Set that to True if you use a context named 'nemo' and the corresponding model unduly sets a general freq_op AT THE FIELD_DEFINITION GROUP LEVEL. Due to Xios rules for inheritance, that behavior prevents inheriting specific freq_ops by reference from dr2xml generated field_definitions.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["nemo_sources_management_policy_master_of_the_world"] + }, + false + ] + }, + "non_standard_attributes": { + "help": "You may add a series of NetCDF attributes in all files for this simulation.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["non_standard_attributes"] + }, + {} + ] + }, + "non_standard_axes": { + "help": "If your model has some axis which does not have all its attributes as in DR, and you want dr2xml to fix that it, give here the correspondence from model axis id to DR dim/grid id. For label dimensions you should provide the list of labels, ordered as in your model, as second element of a pair. Label-type axes will be processed even if not quoted. Scalar dimensions are not concerned by this feature. A dictionary with (axis_id, axis_correct_id) or (axis_id, tuple of labels) as key, values.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["non_standard_axes"] + }, + {} + ] + }, + "orography_field_name": { + "help": "Name of the orography field name to be used to compute height over orog fields.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["orography_field_name"] + }, + "orog" + ] + }, + "orphan_variables": { + "help": "A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context).", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["orphan_variables"] + } + ] + }, + "path_extra_tables": { + "help": "Full path of the directory which contains extra tables.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["path_extra_tables"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["path_extra_tables"] + }, + null + ] + }, + "path_to_parse": { + "help": "The path of the directory which, at run time, contains the root XML file (iodef.xml).", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["path_to_parse"] + }, + "./" + ] + }, + "perso_sdims_description": { + "help": "A dictionary containing, for each perso or dev variables with a XY-perso shape, and for each vertical coordinate associated, the main attributes of the dimension.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["perso_sdims_description"] + }, + {} + ] + }, + "ping_variables_prefix": { + "help": "The tag used to prefix the variables in the ‘field id’ namespaces of the ping file; may be an empty string.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["ping_variables_prefix"] + } + ] + }, + "prefixed_orography_field_name": { + "help": "Name of the orography field name to be used to compute height over orog fields prefixed with :term:`ping_variable_prefix`.", + "values": [ + { + "type": "func", + "origin": "self", + "keys": ["format"], + "template": "{prefix}{variable}", + "options": { + "prefix": { + "type": "value", + "origin": "internal", + "keys": ["ping_variables_prefix"] + }, + "variable": { + "type": "value", + "origin": "internal", + "keys": ["orography_field_name"] + } + } + } + ] + }, + "print_stats_per_var_label": { + "help": "For an extended printout of selected CMOR variables, grouped by variable label.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["print_stats_per_var_label"] + }, + false + ] + }, + "print_variables": { + "help": "If the value is a list, only the file/field variables listed here will be put in output files. If boolean, tell if the file/field variables should be put in output files.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["print_variables"] + }, + true + ] + }, + "realization_index": { + "help": "Realization number.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["realization_index"] + }, + "1" + ] + }, + "realms_per_context": { + "help": "A dictionary which keys are context names and values the lists of realms associated with each context.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": [ + "realms_per_context", + { + "type": "value", + "origin": "internal", + "keys": ["context"] + } + ] + } + ] + }, + "required_model_components": { + "help": "Dictionary which gives, for each model name, the components that must be present.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": [ + "required_model_components", + { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + ] + }, + [] + ] + }, + "sampling_timestep": { + "help": "Basic sampling timestep set in your field definition (used to feed metadata 'interval_operation'). Should be a dictionary which keys are resolutions and values a context/timestep dictionary.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["sampling_timestep"] + }, + 2 + ] + }, + "sectors": { + "help": "List of the sectors to be considered.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["sectors"] + } + ] + }, + "select": { + "help": "Selection strategy for variables.", + "fatal": true, + "authorized_values": ["on_expt_and_year", "on_expt", "no"], + "corrections": { + "": "on_expt_and_year" + }, + "values": [ + { + "type": "value", + "origin": "dict", + "keys": ["select"] + } + ] + }, + "select_on_expt": { + "help": "Should data be selected on experiment?", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select"] + }, + "check_to_perform": "eq", + "reference_values": ["on_expt_and_year", "on_expt"], + "values": [true] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select"] + }, + "check_to_perform": "eq", + "reference_values": ["no"], + "values": [false] + } + ] + }, + "select_on_year": { + "help": "Should data be selected on year?", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select"] + }, + "check_to_perform": "eq", + "reference_values": ["on_expt_and_year"], + "values": [true] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select"] + }, + "check_to_perform": "eq", + "reference_values": ["on_expt", "no"], + "values": [false] + } + ] + }, + "select_grid_choice": { + "help": "Grid choice for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["grid_choice"] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": ["LR"] + } + ] + }, + "select_excluded_expgroups": { + "help": "Excluded experiments groups for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "merge", + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["excluded_expgroups_lset"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["excluded_expgroups_sset"] + } + ] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["excluded_expgroups_lset"] + } + ] + } + ] + }, + "select_excluded_opportunities": { + "help": "Excluded opportunities for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "merge", + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["excluded_opportunities_lset"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["excluded_opportunities_sset"] + } + ] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["excluded_opportunities_lset"] + } + ] + } + ] + }, + "select_excluded_pairs": { + "help": "Excluded pairs for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "merge", + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["excluded_pairs_lset"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["excluded_pairs_sset"] + } + ] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["excluded_pairs_lset"] + } + ] + } + ] + }, + "select_excluded_request_links": { + "help": "Excluded request links for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["excluded_request_links"] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [null] + } + ] + }, + "select_excluded_tables": { + "help": "Excluded tables for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "merge", + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["excluded_tables_lset"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["excluded_tables_sset"] + } + ] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["excluded_tables_lset"] + } + ] + } + ] + }, + "select_excluded_vargroups": { + "help": "Excluded variables groups for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "merge", + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["excluded_vargroups_lset"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["excluded_vargroups_sset"] + } + ] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["excluded_vargroups_lset"] + } + ] + } + ] + }, + "select_excluded_vars": { + "help": "Excluded variables for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "merge", + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["excluded_vars_lset"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["excluded_vars_sset"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["excluded_vars_per_config"] + } + ] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["excluded_vars_lset"] + } + ] + } + ] + }, + "select_included_expgroups": { + "help": "Included experiments groups for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["included_expgroups"] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["included_expgroups_lset"] + } + ] + } + ] + }, + "select_included_opportunities": { + "help": "Included opportunities for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["included_opportunities"] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["included_opportunities_lset"] + } + ] + } + ] + }, + "select_included_request_links": { + "help": "Included request links for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["included_request_links"] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [null] + } + ] + }, + "select_included_tables": { + "help": "Included tables for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["included_tables"] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["included_tables_lset"] + } + ] + } + ] + }, + "select_included_vargroups": { + "help": "Included variable groups for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["included_vargroups"] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["included_vargroups_lset"] + } + ] + } + ] + }, + "select_included_vars": { + "help": "Included variables for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["included_vars"] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["included_vars_lset"] + } + ] + } + ] + }, + "select_max_priority": { + "help": "Max priority for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["max_priority"] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["max_priority_lset"] + } + ] + } + ] + }, + "select_mips": { + "help": "MIPs for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": ["sort_mips"], + "options": { + "mips": { + "type": "value", + "origin": "internal", + "keys": [ + "mips", + { + "type": "value", + "origin": "internal", + "keys": ["select_grid_choice"] + } + ] + } + } + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": ["sort_mips"], + "options": { + "mips": { + "type": "value", + "origin": "internal", + "keys": ["mips"] + } + } + } + ] + } + ] + }, + "select_sizes": { + "help": "Sizes for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["sizes"] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [null] + } + ] + }, + "select_tierMax": { + "help": "tierMax for variable selection.", + "fatal": true, + "values": [ + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [true], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["tierMax"] + } + ] + }, + { + "type": "condition", + "value_to_check": { + "type": "value", + "origin": "internal", + "keys": ["select_on_expt"] + }, + "check_to_perform": "eq", + "reference_values": [false], + "values": [ + { + "type": "value", + "origin": "internal", + "keys": ["tierMax_lset"] + } + ] + } + ] + }, + "simple_domain_grid_regexp": { + "help": "If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: \\n1) it must be a grid which has only a domain \\n2) the domain name must be extractable from the grid_id using a regexp and a group number \\nExample: using a pattern that returns full id except for a '_grid' suffix", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["simple_domain_grid_regexp"] + } + ] + }, + "sizes": { + "help": "A dictionary which keys are resolution and values the associated grid size for atmosphere and ocean grids. The grid size looks like : ['nho', 'nlo', 'nha', 'nla', 'nlas', 'nls', 'nh1']. Used to compute file split frequency.", + "fatal": true, + "values": [ + { + "type": "func", + "origin": "functions_file", + "keys": ["format_sizes"], + "options": { + "sizes": { + "type": "value", + "origin": "laboratory", + "keys": [ + "sizes", + { + "type": "value", + "origin": "internal", + "keys": ["grid_choice"] + } + ] + } + } + } + ] + }, + "source_id": { + "help": "Name of the model used.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": [ + "configurations", + { + "type": "value", + "origin": "internal", + "keys": ["configuration"] + }, + 0 + ] + }, + { + "type": "value", + "origin": "simulation", + "keys": ["source_id"] + } + ] + }, + "special_timestep_vars": { + "help": "This variable is used when some variables are computed with a period which is not the basic timestep. A dictionary which keys are non standard timestep and values the list of variables which are computed at this timestep.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["special_timestep_vars"] + }, + [] + ] + }, + "source_type": { + "help": "If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote \\\"AGCM AER\\\". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": [ + "configurations", + { + "type": "value", + "origin": "internal", + "keys": ["configuration"] + }, + 1 + ] + }, + { + "type": "value", + "origin": "simulation", + "keys": ["source_type"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": [ + "source_types", + { + "type": "value", + "origin": "internal", + "keys": ["source_id"] + } + ] + } + ] + }, + "split_frequencies": { + "help": "Path to the split frequencies file to be used.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["split_frequencies"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["split_frequencies"] + }, + "splitfreqs.dat" + ] + }, + "synchronisation_frequency": { + "help": "Frequency at which the synchronisation between buffer and filesystem is done.", + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["synchronisation_frequency"] + }, + { + "type": "value", + "origin": "laboratory", + "keys": ["synchronisation_frequency"] + }, + null + ] + }, + "tierMax": { + "help": "Number indicating the maximum tier to consider for experiments.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "simulation", + "keys": ["tierMax"] + }, + { + "type": "value", + "origin": "internal", + "keys": ["tierMax_lset"] + } + ] + }, + "tierMax_lset": { + "help": "Number indicating the maximum tier to consider for experiments from lab settings.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["tierMax"] + } + ] + }, + "too_long_periods": { + "help": "The CMIP6 frequencies that are unreachable for a single model run. Datafiles will be labelled with dates consistent with content (but not with CMIP6 requirements). Allowed values are only 'dec' and 'yr'.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["too_long_periods"] + }, + [] + ] + }, + "use_cmorvar_label_in_filename": { + "help": "CMIP6 rule is that filenames includes the variable label, and that this variable label is not the CMORvar label, but 'MIPvar' label. This may lead to conflicts, e.g. for 'ua' and 'ua7h' in table 6hPlevPt; allows to avoid that, if set to True.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["use_cmorvar_label_in_filename"] + }, + false + ] + }, + "use_union_zoom": { + "help": "Say if you want to use XIOS union/zoom axis to optimize vertical interpolation requested by the DR.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["use_union_zoom"] + }, + false + ] + }, + "useAtForInstant": { + "help": "Should xml output files use the `@` symbol for definitions for instant variables?", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["useAtForInstant"] + }, + false + ] + }, + "vertical_interpolation_operation": { + "help": "Operation done for vertical interpolation.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["vertical_interpolation_operation"] + }, + "instant" + ] + }, + "vertical_interpolation_sample_freq": { + "help": "Time frequency of vertical interpolation.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["vertical_interpolation_sample_freq"] + } + ] + }, + "xios_version": { + "help": "Version of XIOS used.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["xios_version"] + }, + 2 + ] + }, + "year": { + "help": "Year associated with the launch of dr2xml.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "dict", + "keys": ["year"] + } + ] + }, + "zg_field_name": { + "help": "Name of the geopotential height field name to be used to compute height over orog fields.", + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": ["zg_field_name"] + }, + "zg" + ] + } + }, + "common": { + "prefix": { + "help": "Prefix to be used for each file definition.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "dict", + "keys": ["prefix"] + } + ] + } + }, + "project_settings": { + "axis": { + "help": "XIOS axis beacon" + }, + "axis_definition": { + "help": "XIOS axis_definition beacon" + }, + "axis_group": { + "help": "XIOS axis_group beacon" + }, + "context": { + "help": "XIOS context beacon" + }, + "domain": { + "help": "XIOS domain beacon" + }, + "domain_definition": { + "help": "XIOS domain_definition beacon" + }, + "domain_group": { + "help": "XIOS domain_group beacon" + }, + "duplicate_scalar": { + "help": "XIOS duplicate_scalar beacon" + }, + "field": { + "help": "XIOS field beacon (except for output fields)" + }, + "field_definition": { + "help": "XIOS field_definition beacon" + }, + "field_group": { + "help": "XIOS field_group beacon" + }, + "field_output": { + "help": "XIOS field beacon (only for output fields)" + }, + "file": { + "help": "XIOS file beacon (except for output files)" + }, + "file_definition": { + "help": "XIOS file_definition beacon" + }, + "file_output": { + "help": "XIOS file beacon (only for output files)" + }, + "generate_rectilinear_domain": { + "help": "XIOS generate_rectilinear_domain beacon" + }, + "grid": { + "help": "XIOS grid beacon" + }, + "grid_definition": { + "help": "XIOS grid_definition beacon" + }, + "interpolate_domain": { + "help": "XIOS interpolate_domain beacon" + }, + "interpolate_axis": { + "helps": "XIOS interpolate_axis beacon" + }, + "scalar": { + "help": "XIOS scalar beacon" + }, + "scalar_definition": { + "help": "XIOS scalar_definition beacon" + }, + "temporal_splitting": { + "help": "XIOS temporal_splitting beacon" + }, + "variable": { + "help": "XIOS variable beacon", + "attrs_list": ["name", "type"], + "attrs_constraints": { + "name": { + "help": "Content of the variable", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["name"] + } + ] + }, + "type": { + "help": "Encoding type of the variable's content.", + "fatal": true, + "values": [ + { + "type": "value", + "origin": "attrs", + "keys": ["type"] + } + ] + } + } + }, + "zoom_axis": { + "help": "XIOS zoom_axis beacon" + } + } +} \ No newline at end of file diff --git a/dr2xml/projects/dr2xml.py b/dr2xml/projects/dr2xml.py deleted file mode 100644 index 248ea6db..00000000 --- a/dr2xml/projects/dr2xml.py +++ /dev/null @@ -1,1557 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -""" -dr2xml specific project settings -""" - -from __future__ import print_function, division, absolute_import, unicode_literals - -import os.path - -from dr2xml.projects.projects_interface_definitions import ValueSettings, ParameterSettings, TagSettings, \ - FunctionSettings, CaseSettings, ConditionSettings -from utilities.logger import get_logger - -parent_project_settings = None - - -def format_sizes(*sizes): - """ - Transform into a dict the sizes values provided as ['nho', 'nlo', 'nha', 'nla', 'nlas', 'nls', 'nh1'], with: - - nho: oce grid size - - nlo : oce nb levels - - nha: atm grid size - - nla: atm nb levels - - nlas: - - nls : soil nb of levels - - nh1 : number of latitude (atmosphere/ocean grids) - Also provide others infor such as: - - nb cosp sites (default 129) - - nb lidar temp (default 40) - - nb_parasol_refl (default 5) - - nb isccp tau (default 7) - - nb isccp pc (default 5) - - nb curtains sites (default 1000) - :param dict or list sizes: dict containing the sizes as a list or dict - :return dict: dictionary containing sizes as a dict - """ - logger = get_logger() - rep = dict(nho=None, nlo=None, nha=None, nla=None, nlas=None, nls=None, nh1=None, - nb_cosp_sites=129, nb_lidar_temp=40, nb_parasol_refl=5, nb_isccp_tau=7, nb_isccp_pc=7, - nb_curtain_sites=1000) - if isinstance(sizes, (list, tuple)) and len(sizes) == 1 and isinstance(sizes[0], (dict, list, tuple)): - sizes = sizes[0] - if isinstance(sizes, (list, tuple)): - mcfg = dict() - for (key, val) in zip(['nho', 'nlo', 'nha', 'nla', 'nlas', 'nls', 'nh1'], sizes): - mcfg[key] = val - rep.update(mcfg) - elif isinstance(sizes, dict): - rep.update(sizes) - else: - logger.error("Unable to transform sizes to get relevant information.") - raise ValueError("Unable to transform sizes to get relevant information.") - issues_values = [elt for elt in rep if rep[elt] is None] - if len(issues_values) > 0: - logger.error(f"The values provided by sizes must not be None, issues with {issues_values}.") - raise ValueError(f"The values provided by sizes must not be None, issues with {issues_values}.") - return rep - - -def sort_mips(*mips): - if isinstance(mips, (list, tuple)) and len(mips) == 1 and isinstance(mips[0], (dict, set, list)): - mips = mips[0] - elif len(mips) == 0: - mips = list() - rep = set() - if isinstance(mips, dict): - for grid in mips: - rep = rep | mips[grid] - else: - rep = mips - return sorted(list(rep)) - - -internal_values = dict( - xios_version=ParameterSettings( - key="xios_version", - default_values=[ - ValueSettings(key_type="laboratory", keys="xios_version"), - 2 - ], - help="Version of XIOS used." - ), - synchronisation_frequency=ParameterSettings( - key="synchronisation_frequency", - help="Frequency at which the synchornisation between buffer and filesystem is done.", - default_value=[ - ValueSettings(key_type="simulation", keys="synchronisation_frequency"), - ValueSettings(key_type="laboratory", keys="synchronisation_frequency"), - None - ] - ), - grouped_vars_per_file=ParameterSettings( - key="grouped_vars_per_file", - default_values=[ - ValueSettings(key_type="simulation", keys="grouped_vars_per_file"), - ValueSettings(key_type="laboratory", keys="grouped_vars_per_file"), - list() - ], - help="Variables to be grouped in the same output file (provided additional conditions are filled)." - ), - debug_parsing=ParameterSettings( - key="debug_parsing", - default_values=[ - ValueSettings(key_type="laboratory", keys="debug_parsing"), - False - ], - help="In order to identify which xml files generates a problem, you can use this flag." - ), - project=ParameterSettings( - key="project", - default_values=[ - ValueSettings(key_type="laboratory", keys="project"), - "CMIP6" - ], - help="Project associated with the simulation." - ), - project_settings=ParameterSettings( - key="project_settings", - default_values=[ - ValueSettings(key_type="laboratory", keys="project_settings"), - ValueSettings(key_type="internal", keys="project") - ], - help="Project settings definition file to be used." - ), - institution_id=ParameterSettings( - key="institution_id", - default_values=[ - ValueSettings(key_type="laboratory", keys="institution_id") - ], - fatal=True, - help="Institution identifier." - ), - context=ParameterSettings( - key="context", - default_values=[ - ValueSettings(key_type="dict", keys="context") - ], - fatal=True, - help="Context associated with the xml file produced." - ), - select=ParameterSettings( - key="select", - default_values=[ - ValueSettings(key_type="dict", keys="select") - ], - authorized_values=["on_expt_and_year", "on_expt", "no"], - fatal=True, - help="Selection strategy for variables." - ), - select_on_expt=ParameterSettings( - key="select_on_expt", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select"), - check_to_do="eq", - reference_values=["on_expt_and_year", "on_expt"]), - value=True - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select"), - check_to_do="eq", - reference_values=["no", ]), - value=False - ) - ], - fatal=True, - help="Should data be selected on experiment?" - ), - select_on_year=ParameterSettings( - key="select_on_year", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select"), - check_to_do="eq", - reference_values=["on_expt_and_year", ]), - value=ValueSettings(key_type="internal", keys="year") - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select"), - check_to_do="eq", - reference_values=["no", "on_expt"]), - value=None - ) - ], - fatal=True, - help="Should data be selected on year?" - ), - select_grid_choice=ParameterSettings( - key="select_grid_choice", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="internal", keys="grid_choice") - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value="LR" - ) - ], - fatal=True, - help="Grid choice for variable selection." - ), - select_sizes=ParameterSettings( - key="select_sizes", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="internal", keys="sizes") - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=None - ) - ], - fatal=True, - help="Sizes for variable selection." - ), - select_max_priority=ParameterSettings( - key="select_max_priority", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="internal", keys="max_priority") - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=ValueSettings(key_type="internal", keys="max_priority_lset") - ) - ], - fatal=True, - help="Max priority for variable selection." - ), - select_tierMax=ParameterSettings( - key="select_tierMax", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="internal", keys="tierMax") - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=ValueSettings(key_type="internal", keys="tierMax_lset") - ) - ], - fatal=True, - help="tierMax for variable selection." - ), - select_included_vars=ParameterSettings( - key="select_included_vars", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="internal", keys="included_vars") - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=ValueSettings(key_type="internal", keys="included_vars_lset") - ) - ], - fatal=True, - help="Included variables for variable selection." - ), - select_included_tables=ParameterSettings( - key="select_included_tables", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="internal", keys="included_tables") - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=ValueSettings(key_type="internal", keys="included_tables_lset") - ) - ], - fatal=True, - help="Included tables for variable selection." - ), - select_included_opportunities=ParameterSettings( - key="select_included_opportunities", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="internal", keys="included_opportunities") - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=ValueSettings(key_type="internal", keys="included_opportunities_lset") - ) - ], - fatal=True, - help="Included opportunities for variable selection." - ), - select_included_vargroups=ParameterSettings( - key="select_included_vargroups", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="internal", keys="included_vargroups") - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=ValueSettings(key_type="internal", keys="included_vargroups_lset") - ) - ], - fatal=True, - help="Included variables groups for variable selection." - ), - select_included_request_links=ParameterSettings( - key="select_included_request_links", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="internal", keys="included_request_links") - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=None - ) - ], - fatal=True, - help="Included request links for variable selection." - ), - select_excluded_request_links=ParameterSettings( - key="select_excluded_request_links", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="internal", keys="excluded_request_links") - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=None - ) - ], - fatal=True, - help="Excluded request links for variable selection." - ), - select_excluded_vars=ParameterSettings( - key="select_excluded_vars", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="merge", - keys=[ - ValueSettings(key_type="internal", keys="excluded_vars_lset"), - ValueSettings(key_type="internal", keys="excluded_vars_sset"), - ValueSettings(key_type="internal", keys="excluded_vars_per_config") - ]) - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=ValueSettings(key_type="internal", keys="excluded_vars_lset") - ) - ], - fatal=True, - help="Excluded variables for variable selection." - ), - select_excluded_tables=ParameterSettings( - key="select_excluded_tables", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="merge", - keys=[ - ValueSettings(key_type="internal", keys="excluded_tables_lset"), - ValueSettings(key_type="internal", keys="excluded_tables_sset") - ]) - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=ValueSettings(key_type="internal", keys="excluded_tables_lset") - ) - ], - fatal=True, - help="Excluded tables for variable selection." - ), - select_excluded_opportunities=ParameterSettings( - key="select_excluded_opportunities", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="merge", - keys=[ - ValueSettings(key_type="internal", keys="excluded_opportunities_lset"), - ValueSettings(key_type="internal", keys="excluded_opportunities_sset") - ]) - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=ValueSettings(key_type="internal", keys="excluded_opportunities_lset") - ) - ], - fatal=True, - help="Excluded opportunities for variable selection." - ), - select_excluded_vargroups=ParameterSettings( - key="select_excluded_vargroups", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="merge", - keys=[ - ValueSettings(key_type="internal", keys="excluded_vargroups_lset"), - ValueSettings(key_type="internal", keys="excluded_vargroups_sset") - ]) - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=ValueSettings(key_type="internal", keys="excluded_vargroups_lset") - ) - ], - fatal=True, - help="Excluded variables groups for variable selection." - ), - select_excluded_pairs=ParameterSettings( - key="select_excluded_pairs", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="merge", - keys=[ - ValueSettings(key_type="internal", keys="excluded_pairs_lset"), - ValueSettings(key_type="internal", keys="excluded_pairs_sset") - ]) - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=ValueSettings(key_type="internal", keys="excluded_pairs_lset") - ) - ], - fatal=True, - help="Excluded pairs for variable selection." - ), - select_mips=ParameterSettings( - key="select_mips", - cases=[ - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=True), - value=ValueSettings(key_type="internal", - keys=[ - "mips", - ValueSettings(key_type="internal", keys="select_grid_choice") - ], - func=sort_mips) - ), - CaseSettings( - conditions=ConditionSettings(check_value=ValueSettings(key_type="internal", keys="select_on_expt"), - check_to_do="eq", - reference_values=False), - value=ValueSettings(key_type="internal", keys="mips", func=sort_mips) - ) - ], - fatal=True, - help="MIPs for variable selection." - ), - path_to_parse=ParameterSettings( - key="path_to_parse", - default_values=[ - ValueSettings(key_type="laboratory", keys="path_to_parse"), - "./" - ], - help="The path of the directory which, at run time, contains the root XML file (iodef.xml)." - ), - use_union_zoom=ParameterSettings( - key="use_union_zoom", - default_values=[ - ValueSettings(key_type="laboratory", keys="use_union_zoom"), - False - ], - help="Say if you want to use XIOS union/zoom axis to optimize vertical interpolation requested by the DR." - ), - print_stats_per_var_label=ParameterSettings( - key="print_stats_per_var_label", - default_values=[ - ValueSettings(key_type="laboratory", keys="print_stats_per_var_label"), - False - ], - help="For an extended printout of selected CMOR variables, grouped by variable label." - ), - ping_variables_prefix=ParameterSettings( - key="ping_variables_prefix", - default_values=[ - ValueSettings(key_type="laboratory", keys="ping_variables_prefix") - ], - fatal=True, - help="The tag used to prefix the variables in the ‘field id’ namespaces of the ping file; may be an empty string." - ), - grid_prefix=ParameterSettings( - key="grid_prefix", - default_values=[ - ValueSettings(key_type="laboratory", keys="grid_prefix"), - ValueSettings(key_type="internal", keys="ping_variables_prefix") - ], - fatal=True, - help="Prefix of the dr2xml generated grid named to be used." - ), - split_frequencies=ParameterSettings( - key="split_frequencies", - default_values=[ - ValueSettings(key_type="simulation", keys="split_frequencies"), - ValueSettings(key_type="laboratory", keys="split_frequencies"), - "splitfreqs.dat" - ], - help="Path to the split frequencies file to be used." - ), - max_file_size_in_floats=ParameterSettings( - key="max_file_size_in_floats", - default_values=[ - ValueSettings(key_type="laboratory", keys="max_file_size_in_floats"), - 500 * 1.e6 - ], - help="The maximum size of generated files in number of floating values." - ), - bytes_per_float=ParameterSettings( - key="bytes_per_float", - default_values=[ - ValueSettings(key_type="laboratory", keys="bytes_per_float"), - 2 - ], - help="Estimate of number of bytes per floating value, given the chosen :term:`compression_level`." - ), - sampling_timestep=ParameterSettings( - key="sampling_timestep", - default_values=[ - ValueSettings(key_type="laboratory", keys="sampling_timestep") - ], - fatal=True, - help="Basic sampling timestep set in your field definition (used to feed metadata 'interval_operation'). " - "Should be a dictionary which keys are resolutions and values a context/timestep dictionary." - ), - tierMax_lset=ParameterSettings( - key="tierMax_lset", - default_values=[ - ValueSettings(key_type="laboratory", keys="tierMax") - ], - fatal=True, - help="Number indicating the maximum tier to consider for experiments from lab settings." - ), - tierMax=ParameterSettings( - key="tierMax", - default_values=[ - ValueSettings(key_type="simulation", keys="tierMax"), - ValueSettings(key_type="internal", keys="tierMax_lset") - ], - fatal=True, - help="Number indicating the maximum tier to consider for experiments." - ), - max_priority_lset=ParameterSettings( - key="max_priority_lset", - default_values=[ - ValueSettings(key_type="laboratory", keys="max_priority") - ], - fatal=True, - help="Max variable priority level to be output (you may set 3 when creating ping_files while being more " - "restrictive at run time) from lab settings." - ), - max_priority=ParameterSettings( - key="max_priority", - default_values=[ - ValueSettings(key_type="simulation", keys="max_priority"), - ValueSettings(key_type="internal", keys="max_priority_lset") - ], - fatal=True, - help="Max variable priority level to be output (you may set 3 when creating ping_files while being more " - "restrictive at run time)." - ), - grid_choice=ParameterSettings( - key="grid_choice", - default_values=[ - ValueSettings( - key_type="laboratory", - keys=[ - "grid_choice", - ValueSettings(key_type="internal", keys="source_id") - ] - ) - ], - fatal=True, - help="A dictionary which keys are models name and values the corresponding resolution." - ), - configuration=ParameterSettings( - key="configuration", - default_values=[ - ValueSettings(key_type="simulation", keys="configuration") - ], - fatal=True, - help="Configuration used for this experiment. " - "If there is no configuration in lab_settings which matches you case, please rather use next or next two " - "entries: :term:`source_id` and, if needed, :term:`source_type`." - ), - source_id=ParameterSettings( - key="source_id", - default_values=[ - ValueSettings( - key_type="laboratory", - keys=[ - "configurations", - ValueSettings(key_type="internal", keys="configuration"), - 0 - ] - ), - ValueSettings(key_type="simulation", keys="source_id") - ], - fatal=True, - help="Name of the model used." - ), - sizes=ParameterSettings( - key="sizes", - default_values=[ - ValueSettings( - key_type="laboratory", - keys=[ - "sizes", - ValueSettings(key_type="internal", keys="grid_choice") - ], - func=FunctionSettings(func=format_sizes) - ) - ], - fatal=True, - help="A dictionary which keys are resolution and values the associated grid size for atmosphere and ocean " - "grids. The grid size looks like : ['nho', 'nlo', 'nha', 'nla', 'nlas', 'nls', 'nh1']. Used to compute " - "file split frequency." - ), - mips=ParameterSettings( - key="mips", - default_values=[ - ValueSettings(key_type="laboratory", keys="mips") - ], - fatal=True, - help="A dictionary in which keys are grid and values a set of strings corresponding to MIPs names." - ), - excluded_request_links=ParameterSettings( - key="excluded_request_links", - default_values=[ - ValueSettings(key_type="laboratory", keys="excluded_request_links"), - list() - ], - target_type="list", - help="List of links un data request that should not been followed (those request are not taken into account)." - ), - included_request_links=ParameterSettings( - key="included_request_links", - default_values=[ - ValueSettings(key_type="laboratory", keys="included_request_links"), - list() - ], - target_type="list", - help="List of the request links that will be processed (all others will not)." - ), - excluded_tables_lset=ParameterSettings( - key="excluded_tables_lset", - default_values=[ - ValueSettings(key_type="laboratory", keys="excluded_tables"), - list() - ], - target_type="list", - help="List of the tables that will be excluded from outputs from laboratory settings." - ), - excluded_tables_sset=ParameterSettings( - key="excluded_tables_sset", - default_values=[ - ValueSettings(key_type="simulation", keys="excluded_tables"), - list() - ], - target_type="list", - help="List of the tables that will be excluded from outputs from simulation settings." - ), - excluded_spshapes_lset=ParameterSettings( - key="excluded_spshapes_lset", - default_values=[ - ValueSettings(key_type="laboratory", keys="excluded_spshapes"), - list() - ], - target_type="list", - help="The list of shapes that should be excluded (all variables in those shapes will be excluded from outputs)." - ), - excluded_vars_lset=ParameterSettings( - key="excluded_vars_lset", - default_values=[ - ValueSettings(key_type="laboratory", keys="excluded_vars"), - list() - ], - target_type="list", - help="List of CMOR variables to exclude from the result based on previous Data Request extraction from " - "laboratory settings." - ), - excluded_vars_sset=ParameterSettings( - key="excluded_vars_sset", - default_values=[ - ValueSettings(key_type="simulation", keys="excluded_vars"), - list() - ], - target_type="list", - help="List of CMOR variables to exclude from the result based on previous Data Request extraction from " - "simulation settings." - ), - excluded_pairs_lset=ParameterSettings( - key="excluded_pairs_lset", - default_values=[ - ValueSettings(key_type="laboratory", keys="excluded_pairs"), - list() - ], - target_type="list", - help="You can exclude some (variable, table) pairs from outputs. " - "A list of tuple (variable, table) to be excluded from laboratory settings." - ), - excluded_pairs_sset=ParameterSettings( - key="excluded_pairs_sset", - default_values=[ - ValueSettings(key_type="simulation", keys="excluded_pairs"), - list() - ], - target_type="list", - help="You can exclude some (variable, table) pairs from outputs. " - "A list of tuple (variable, table) to be excluded from simulation settings." - ), - included_tables_lset=ParameterSettings( - key="included_tables_lset", - default_values=[ - ValueSettings(key_type="laboratory", keys="included_tables"), - list() - ], - target_type="list", - help="List of tables that will be processed (all others will not) from laboratory settings." - ), - included_tables=ParameterSettings( - key="included_tables", - default_values=[ - ValueSettings(key_type="simulation", keys="included_tables"), - ValueSettings(key_type="internal", keys="included_tables_lset") - ], - target_type="list", - help="List of tables that will be processed (all others will not)." - ), - included_vars_lset=ParameterSettings( - key="included_vars_lset", - default_values=[ - ValueSettings(key_type="laboratory", keys="included_vars"), - list() - ], - target_type="list", - help="Variables to be considered from the Data Request (all others will not) from laboratory settings." - ), - included_vars=ParameterSettings( - key="included_vars", - default_values=[ - ValueSettings(key_type="simulation", keys="included_vars"), - ValueSettings(key_type="internal", keys="included_vars_lset") - ], - target_type="list", - help="Variables to be considered from the Data Request (all others will not)" - ), - excluded_vars_per_config=ParameterSettings( - key="excluded_vars_per_config", - default_values=[ - ValueSettings( - key_type="laboratory", - keys=[ - "excluded_vars_per_config", - ValueSettings(key_type="internal", keys="configuration") - ] - ), - list() - ], - help="A dictionary which keys are configurations and values the list of variables that must be excluded for " - "each configuration." - ), - included_opportunities_lset=ParameterSettings( - key="included_opportunities_lset", - default_values=[ - ValueSettings(key_type="laboratory", keys="included_opportunities"), - list() - ], - target_type="list", - help="List of opportunities that will be processed (all others will not) from laboratory settings." - ), - included_opportunities=ParameterSettings( - key="included_opportunities", - default_values=[ - ValueSettings(key_type="simulation", keys="included_opportunities"), - ValueSettings(key_type="internal", keys="included_opportunities_lset") - ], - target_type="list", - help="List of opportunities that will be processed (all others will not)." - ), - included_vargroups_lset=ParameterSettings( - key="included_vargroups_lset", - default_values=[ - ValueSettings(key_type="laboratory", keys="included_vargroups"), - list() - ], - target_type="list", - help="List of variables groups that will be processed (all others will not) from laboratory settings." - ), - included_vargroups=ParameterSettings( - key="included_vargroups", - default_values=[ - ValueSettings(key_type="simulation", keys="included_vargroups"), - ValueSettings(key_type="internal", keys="included_vargroups_lset") - ], - target_type="list", - help="List of variables groups that will be processed (all others will not)." - ), - excluded_opportunities_lset=ParameterSettings( - key="excluded_opportunities_lset", - default_values=[ - ValueSettings(key_type="laboratory", keys="excluded_opportunities"), - list() - ], - target_type="list", - help="List of the opportunities that will be excluded from outputs from laboratory settings." - ), - excluded_opportunities_sset=ParameterSettings( - key="excluded_opportunities_sset", - default_values=[ - ValueSettings(key_type="simulation", keys="excluded_opportunities"), - list() - ], - target_type="list", - help="List of the opportunities that will be excluded from outputs from simulation settings." - ), - excluded_vargroups_lset=ParameterSettings( - key="excluded_vargroups_lset", - default_values=[ - ValueSettings(key_type="laboratory", keys="excluded_vargroups"), - list() - ], - target_type="list", - help="List of the variables groups that will be excluded from outputs from laboratory settings." - ), - excluded_vargroups_sset=ParameterSettings( - key="excluded_vargroups_sset", - default_values=[ - ValueSettings(key_type="simulation", keys="excluded_vargroups"), - list() - ], - target_type="list", - help="List of the variables groups that will be excluded from outputs from simulation settings." - ), - experiment_id=ParameterSettings( - key="experiment_id", - default_values=[ - ValueSettings(key_type="simulation", keys="experiment_id") - ], - fatal=True, - help="Root experiment identifier." - ), - experiment_for_requests=ParameterSettings( - key="experiment_for_requests", - default_values=[ - ValueSettings(key_type="simulation", keys="experiment_for_requests"), - ValueSettings(key_type="internal", keys="experiment_id") - ], - fatal=True, - help="Experiment id to use for driving the use of the Data Request." - ), - branching=ParameterSettings( - key="branching", - default_values=[ - ValueSettings( - key_type="laboratory", - keys=[ - "branching", - ValueSettings(key_type="internal", keys="source_id") - ], - ), - dict() - ], - help=" Describe the branching scheme for experiments involved in some 'branchedYears type' tslice " - "(for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). " - "Just put the as key the common start year in child and as value the list of start years in parent " - "for all members." - "A dictionary with models name as key and dictionary containing experiment," - "(branch year in child, list of branch year in parent) key values." - ), - branch_year_in_child=ParameterSettings( - key="branch_year_in_child", - default_values=[ - ValueSettings(key_type="simulation", keys="branch_year_in_child") - ], - help="In some instances, the experiment start year is not explicit or is doubtful in DR. See " - "file doc/some_experiments_starty_in_DR01.00.21. You should then specify it, using next setting " - "in order that requestItems analysis work in all cases. " - "In some other cases, DR requestItems which apply to the experiment form its start does not " - "cover its whole duration and have a wrong duration (computed based on a wrong start year); " - "They necessitate to fix the start year." - ), - end_year=ParameterSettings( - key="end_year", - default_values=[ - ValueSettings(key_type="simulation", keys="end_year"), - False - ], - help="If you want to carry on the experiment beyond the duration set in DR, and that all " - "requestItems that apply to DR end year also apply later on, set 'end_year' " - "You can also set it if you don't know if DR has a wrong value" - ), - allow_pseudo_standard_names=ParameterSettings( - key="allow_pseudo_standard_names", - default_values=[ - ValueSettings(key_type="laboratory", keys="allow_pseudo_standard_names"), - False - ], - help="DR has sn attributes for MIP variables. They can be real,CF-compliant, standard_names or " - "pseudo_standard_names, i.e. not yet approved labels. Default is to use only CF ones." - ), - realization_index=ParameterSettings( - key="realization_index", - default_values=[ - ValueSettings(key_type="simulation", keys="realization_index"), - "1" - ], - help="Realization number." - ), - filter_on_realization=ParameterSettings( - key="filter_on_realization", - default_values=[ - ValueSettings(key_type="simulation", keys="filter_on_realization"), - ValueSettings(key_type="laboratory", keys="filter_on_realization"), - True - ], - help="If you want to produce the same variables set for all members, set this parameter to False." - ), - listof_home_vars=ParameterSettings( - key="listof_home_vars", - default_values=[ - ValueSettings(key_type="simulation", keys="listof_home_vars"), - ValueSettings(key_type="laboratory", keys="listof_home_vars"), - None - ], - help="Full path to the file which contains the list of home variables to be taken into account, " - "in addition to the Data Request." - ), - path_extra_tables=ParameterSettings( - key="path_extra_tables", - default_values=[ - ValueSettings(key_type="simulation", keys="path_extra_tables"), - ValueSettings(key_type="laboratory", keys="path_extra_tables"), - None - ], - help="Full path of the directory which contains extra tables." - ), - allow_duplicates=ParameterSettings( - key="allow_duplicates", - default_values=[ - ValueSettings(key_type="laboratory", keys="allow_duplicates"), - True - ], - help="Should we allow for duplicate vars: two vars with same frequency, shape and realm, which differ only by " - "the table. In DR01.00.21, this actually applies to very few fields " - "(ps-Aermon, tas-ImonAnt, areacellg-IfxAnt)." - ), - orphan_variables=ParameterSettings( - key="orphan_variables", - default_values=[ - ValueSettings(key_type="laboratory", keys="orphan_variables") - ], - fatal=True, - help="A dictionary with (context name, list of variables) as (key,value) pairs, " - "where the list indicates the variables to be re-affected to the key-context " - "(initially affected to a realm falling in another context)" - ), - too_long_periods=ParameterSettings( - key="too_long_periods", - default_values=[ - ValueSettings(key_type="laboratory", keys="too_long_periods"), - list() - ], - fatal=True, - help="The CMIP6 frequencies that are unreachable for a single model run. Datafiles will " - "be labelled with dates consistent with content (but not with CMIP6 requirements). " - "Allowed values are only 'dec' and 'yr'." - ), - CFsubhr_frequency=ParameterSettings( - key="CFsubhr_frequency", - default_values=[ - ValueSettings(key_type="laboratory", keys="CFsubhr_frequency"), - "1ts" - ], - help="CFMIP has an elaborated requirement for defining subhr frequency; by default, dr2xml uses 1 time step." - ), - simple_domain_grid_regexp=ParameterSettings( - key="simple_domain_grid_regexp", - default_values=[ - ValueSettings(key_type="laboratory", keys="simple_domain_grid_regexp") - ], - help="If some grid is not defined in xml but by API, and is referenced by a " - "field which is considered by the DR as having a singleton dimension, then: " - "1) it must be a grid which has only a domain " - "2) the domain name must be extractable from the grid_id using a regexp and a group number " - "Example: using a pattern that returns full id except for a '_grid' suffix" - ), - vertical_interpolation_operation=ParameterSettings( - key="vertical_interpolation_operation", - default_values=[ - ValueSettings(key_type="laboratory", keys="vertical_interpolation_operation"), - "instant" - ], - help="Operation done for vertical interpolation." - ), - vertical_interpolation_sample_freq=ParameterSettings( - key="vertical_interpolation_sample_freq", - default_values=[ - ValueSettings(key_type="laboratory", keys="vertical_interpolation_sample_freq") - ], - help="Time frequency of vertical interpolation." - ), - sectors=ParameterSettings( - key="sectors", - default_values=[ - ValueSettings(key_type="laboratory", keys="sectors") - ], - help="List of the sectors to be considered." - ), - non_standard_axes=ParameterSettings( - key="non_standard_axes", - default_values=[ - ValueSettings(key_type="laboratory", keys="non_standard_axes"), - dict() - ], - help="If your model has some axis which does not have all its attributes as in DR, and you want dr2xml to fix " - "that it, give here the correspondence from model axis id to DR dim/grid id. For label dimensions you " - "should provide the list of labels, ordered as in your model, as second element of a pair. " - "Label-type axes will be processed even if not quoted. " - "Scalar dimensions are not concerned by this feature. " - "A dictionary with (axis_id, axis_correct_id) or (axis_id, tuple of labels) as key, values." - ), - add_Gibraltar=ParameterSettings( - key="add_Gibraltar", - default_values=[ - ValueSettings(key_type="laboratory", keys="add_Gibraltar"), - False - ], - help="DR01.00.21 does not include Gibraltar strait, which is requested by OMIP. " - "Can include it, if model provides it as last value of array." - ), - grid_policy=ParameterSettings( - key="grid_policy", - default_values=[ - ValueSettings(key_type="laboratory", keys="grid_policy"), - False - ], - fatal=True, - help="The grid choice policy for output files." - ), - allow_tos_3hr_1deg=ParameterSettings( - key="allow_tos_3hr_1deg", - default_values=[ - ValueSettings(key_type="laboratory", keys="allow_tos_3hr_1deg"), - True - ], - help="When using select='no', Xios may enter an endless loop, which is solved if next setting is False." - ), - adhoc_policy_do_add_1deg_grid_for_tos=ParameterSettings( - key="adhoc_policy_do_add_1deg_grid_for_tos", - default_values=[ - ValueSettings(key_type="laboratory", keys="adhoc_policy_do_add_1deg_grid_for_tos"), - False - ], - help="Some scenario experiment in DR 01.00.21 do not request tos on 1 degree grid, while other do. " - "If you use grid_policy=adhoc and had not changed the mapping of function. " - "grids.lab_adhoc_grid_policy to grids.CNRM_grid_policy, next setting can force any tos request " - "to also produce tos on a 1 degree grid." - ), - fx_from_file=ParameterSettings( - key="fx_from_file", - default_values=[ - ValueSettings(key_type="laboratory", keys="fx_from_file"), - list() - ], - help="You may provide some variables already horizontally remapped to some grid (i.e. Xios domain) in external " - "files. The varname in file must match the referenced id in pingfile. Tested only for fixed fields. " - "A dictionary with variable id as key and a dictionary as value: " - "the key must be the grid id, the value a dictionary with the file for each resolution." - ), - prefixed_orography_field_name=ParameterSettings( - key="prefixed_orography_field_name", - default_values=[ - ValueSettings(key_type="combine", - keys=[ - ValueSettings(key_type="internal", keys="ping_variables_prefix"), - ValueSettings(key_type="internal", keys="orography_field_name") - ], - fmt="{}{}"), - ], - help="Name of the orography field name to be used to compute height over orog fields prefixed with " - ":term:`ping_variable_prefix`." - ), - orography_field_name=ParameterSettings( - key="orography_field_name", - default_values=[ - ValueSettings(key_type="laboratory", keys="orography_field_name"), - "orog" - ], - help="Name of the orography field name to be used to compute height over orog fields." - ), - zg_field_name=ParameterSettings( - key="zg_field_name", - default_values=[ - ValueSettings(key_type="laboratory", keys="zg_field_name"), - "zg" - ], - help="Name of the geopotential height field name to be used to compute height over orog fields." - ), - print_variables=ParameterSettings( - key="print_variables", - default_values=[ - ValueSettings(key_type="laboratory", keys="print_variables"), - True - ], - help="If the value is a list, only the file/field variables listed here will be put in output files. " - "If boolean, tell if the file/field variables should be put in output files." - ), - grids_dev=ParameterSettings( - key="grids_dev", - default_values=[ - ValueSettings(key_type="laboratory", keys="grids_dev"), - dict() - ], - fatal=True, - help="Grids definition for dev variables." - ), - grids=ParameterSettings( - key="grids", - default_values=[ - ValueSettings(key_type="laboratory", keys="grids") - ], - fatal=True, - help="Grids : per model resolution and per context :" - "- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you" - " may choose has main production grid a regular one, when the native grid is e.g. unstructured)" - "- Xios id for the production grid (if it is not the native grid)," - "- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)" - "- resolution of the production grid (using CMIP6 conventions)," - "- grid description" - ), - required_model_components=ParameterSettings( - key="required_model_components", - default_values=[ - ValueSettings( - key_type="laboratory", - keys=[ - "required_model_components", - ValueSettings(key_type="internal", keys="source_id") - ] - ), - list() - ], - fatal=True, - help="Dictionary which gives, for each model name, the components that must be present." - ), - additional_allowed_model_components=ParameterSettings( - key="additional_allowed_model_components", - default_values=[ - ValueSettings( - key_type="laboratory", - keys=[ - "additional_allowed_model_components", - ValueSettings(key_type="internal", keys="source_id") - ] - ), - list() - ], - fatal=True, - help="Dictionary which contains, for each model, the list of components whih can be used in addition to the " - "declared ones." - ), - max_split_freq=ParameterSettings( - key="max_split_freq", - default_values=[ - ValueSettings(key_type="simulation", keys="max_split_freq"), - ValueSettings(key_type="laboratory", keys="max_split_freq"), - None - ], - fatal=True, - help="The maximum number of years that should be putted in a single file." - ), - dr2xml_manages_enddate=ParameterSettings( - key="dr2xml_manages_enddate", - default_values=[ - ValueSettings(key_type="laboratory", keys="dr2xml_manages_enddate"), - True - ], - fatal=True, - help="A smart workflow will allow you to extend a simulation during it course and to complement the output " - "files accordingly, by managing the 'end date' part in filenames. " - "You can then set next setting to False." - ), - non_standard_attributes=ParameterSettings( - key="non_standard_attributes", - default_values=[ - ValueSettings(key_type="laboratory", keys="non_standard_attributes"), - dict() - ], - help="You may add a series of NetCDF attributes in all files for this simulation" - ), - allow_duplicates_in_same_table=ParameterSettings( - key="allow_duplicates_in_same_table", - default_values=[ - ValueSettings(key_type="laboratory", keys="allow_duplicates_in_same_table"), - False - ], - fatal=True, - help="Should we allow for another type of duplicate vars : two vars with same name in same table " - "(usually with different shapes). This applies to e.g. CMOR vars 'ua' and 'ua7h' in " - "6hPlevPt. Default to False, because CMIP6 rules does not allow to name output files differently in that " - "case. If set to True, you should also set 'use_cmorvar_label_in_filename' to True to overcome the said " - "rule." - ), - use_cmorvar_label_in_filename=ParameterSettings( - key="use_cmorvar_label_in_filename", - default_values=[ - ValueSettings(key_type="laboratory", keys="use_cmorvar_label_in_filename"), - False - ], - fatal=True, - help="CMIP6 rule is that filenames includes the variable label, and that this variable label is not the CMORvar " - "label, but 'MIPvar' label. This may lead to conflicts, e.g. for 'ua' and 'ua7h' in table 6hPlevPt; " - "allows to avoid that, if set to True." - ), - nemo_sources_management_policy_master_of_the_world=ParameterSettings( - key="nemo_sources_management_policy_master_of_the_world", - default_values=[ - ValueSettings(key_type="laboratory", keys="nemo_sources_management_policy_master_of_the_world"), - False - ], - fatal=True, - help="Set that to True if you use a context named 'nemo' and the corresponding model unduly sets " - "a general freq_op AT THE FIELD_DEFINITION GROUP LEVEL. Due to Xios rules for inheritance, " - "that behavior prevents inheriting specific freq_ops by reference from dr2xml generated field_definitions." - ), - special_timestep_vars=ParameterSettings( - key="special_timestep_vars", - default_values=[ - ValueSettings(key_type="laboratory", keys="special_timestep_vars"), - list() - ], - help="This variable is used when some variables are computed with a period which is not the basic timestep. " - "A dictionary which keys are non standard timestep and values the list of variables " - "which are computed at this timestep." - ), - useAtForInstant=ParameterSettings( - key="useAtForInstant", - default_values=[ - ValueSettings(key_type="laboratory", keys="useAtForInstant"), - False - ], - help="Should xml output files use the `@` symbol for definitions for instant variables?" - ), - bypass_CV_components=ParameterSettings( - key="bypass_CV_components", - default_values=[ - ValueSettings(key_type="laboratory", keys="bypass_CV_components"), - False - ], - help="If the CMIP6 Controlled Vocabulary doesn't allow all the components you activate, you can set " - "next toggle to True" - ), - data_request_used=ParameterSettings( - key="data_request_used", - default_values=[ - ValueSettings(key_type="laboratory", keys="data_request_used"), - "CMIP6" - ], - help="The Data Request infrastructure type which should be used." - ), - data_request_path=ParameterSettings( - key="data_request_path", - default_values=[ - ValueSettings(key_type="laboratory", keys="data_request_path"), - None - ], - help="Path where the data request API used is placed." - ), - data_request_content_version=ParameterSettings( - key="data_request_content_version", - default_values=[ - ValueSettings(key_type="laboratory", keys="data_request_content_version"), - "latest_stable" - ], - help="Version of the data request content to be used" - ), - data_request_config=ParameterSettings( - key="data_request_config", - default_values=[ - ValueSettings(key_type="laboratory", keys="data_request_config"), - os.sep.join([os.path.dirname(os.path.dirname(os.path.abspath(__file__))), "dr_interface", "CMIP7_config"]) - ], - help="Configuration file of the data request content to be used" - ), - laboratory_used=ParameterSettings( - key="laboratory_used", - default_values=[ - ValueSettings(key_type="laboratory", keys="laboratory_used"), - None - ], - help="File which contains the settings to be used for a specific laboratory which is not present by default in " - "dr2xml. Must contains at least the `lab_grid_policy` function." - ), - save_project_settings=ParameterSettings( - key="save_project_settings", - default_values=[ - ValueSettings(key_type="laboratory", keys="save_project_settings"), - None - ], - help="The path of the file where the complete project settings will be written, if needed." - ), - perso_sdims_description=ParameterSettings( - key="perso_sdims_description", - default_values=[ - ValueSettings(key_type="simulation", keys="perso_sdims_description"), - dict() - ], - help="A dictionary containing, for each perso or dev variables with a XY-perso shape, and for each vertical " - "coordinate associated, the main attributes of the dimension." - ), - realms_per_context=ParameterSettings( - key="realms_per_context", - default_values=[ - ValueSettings( - key_type="laboratory", - keys=[ - "realms_per_context", - ValueSettings(key_type="internal", keys="context") - ] - ) - ], - fatal=True, - help="A dictionary which keys are context names and values the lists of realms associated with each context" - ), - source_type=ParameterSettings( - key="source_type", - default_values=[ - ValueSettings( - key_type="laboratory", - keys=[ - "configurations", - ValueSettings(key_type="internal", keys="configuration"), - 1 - ] - ), - ValueSettings(key_type="simulation", keys="source_type"), - ValueSettings( - key_type="laboratory", - keys=[ - "source_types", - ValueSettings(key_type="internal", keys="source_id") - ] - ) - ], - fatal=True, - help="If the default source-type value for your source " - "(:term:`source_types` from :term:`lab_and_model_settings`) " - "does not fit, you may change it here. " - "This should describe the model most directly responsible for the output. " - "Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, " - "ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote \"AGCM AER\". " - "Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit" - ), - year=ParameterSettings( - key="year", - default_values=[ - ValueSettings(key_type="dict", keys="year") - ], - fatal=True, - help="Year associated with the launch of dr2xml." - ) -) - -common_values = dict( - prefix=ParameterSettings( - key="prefix", - default_values=[ - ValueSettings(key_type="dict", keys="prefix") - ], - fatal=True, - help="Prefix to be used for each file definition." - ) -) - -project_settings = dict( - context=TagSettings( - key="context", - help="XIOS context beacon" - ), - file_definition=TagSettings( - key="file_definition", - help="XIOS file_definition beacon" - ), - file=TagSettings( - key="file", - help="XIOS file beacon (except for output files)" - ), - file_output=TagSettings( - key="file_output", - help="XIOS file beacon (only for output files)" - ), - field_definition=TagSettings( - key="field_definition", - help="XIOS field_definition beacon" - ), - field_group=TagSettings( - key="field_group", - help="XIOS field_group beacon" - ), - field=TagSettings( - key="field", - help="XIOS field beacon (except for output fields)" - ), - field_output=TagSettings( - key="field_output", - help="XIOS field beacon (only for output fields)" - ), - grid=TagSettings( - key="grid", - help="XIOS grid beacon" - ), - grid_definition=TagSettings( - key="grid_definition", - help="XIOS grid_definition beacon" - ), - axis=TagSettings( - key="axis", - help="XIOS axis beacon" - ), - zoom_axis=TagSettings( - key="zoom_axis", - help="XIOS zoom_axis beacon" - ), - interpolate_axis=TagSettings( - key="interpolate_axis", - help="XIOS interpolate_axis beacon" - ), - axis_definition=TagSettings( - key="axis_definition", - help="XIOS axis_definition beacon" - ), - axis_group=TagSettings( - key="axis_group", - help="XIOS axis_group beacon" - ), - temporal_splitting=TagSettings( - key="temporal_splitting", - help="XIOS temporal_splitting beacon" - ), - domain=TagSettings( - key="domain", - help="XIOS domain beacon" - ), - generate_rectilinear_domain=TagSettings( - key="generate_rectilinear_domain", - help="XIOS generate_rectilinear_domain beacon" - ), - interpolate_domain=TagSettings( - key="interpolate_domain", - help="XIOS interpolate_domain beacon" - ), - domain_definition=TagSettings( - key="domain_definition", - help="XIOS domain_definition beacon" - ), - domain_group=TagSettings( - key="domain_group", - help="XIOS domain_group beacon" - ), - scalar=TagSettings( - key="scalar", - help="XIOS scalar beacon" - ), - duplicate_scalar=TagSettings( - key="duplicate_scalar", - help="XIOS duplicate_scalar beacon" - ), - scalar_definition=TagSettings( - key="scalar_definition", - help="XIOS scalar_definition beacon" - ), - variable=TagSettings( - key="variable", - help="XIOS variable beacon", - attrs_list=["name", "type"], - attrs_constraints=dict( - name=ParameterSettings( - key="name", - help="Content of the variable" - ), - type=ParameterSettings( - key="type", - help="Encoding type of the variable's content." - ) - ) - ) -) diff --git a/dr2xml/projects/dr2xml_func.py b/dr2xml/projects/dr2xml_func.py new file mode 100644 index 00000000..1dbd06cd --- /dev/null +++ b/dr2xml/projects/dr2xml_func.py @@ -0,0 +1,67 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +Function used for dr2xml projects +""" + +from __future__ import print_function, division, absolute_import, unicode_literals + +from utilities.logger import get_logger + + +def format_sizes(sizes): + """ + Transform into a dict the sizes values provided as ['nho', 'nlo', 'nha', 'nla', 'nlas', 'nls', 'nh1'], with: + - nho: oce grid size + - nlo : oce nb levels + - nha: atm grid size + - nla: atm nb levels + - nlas: + - nls : soil nb of levels + - nh1 : number of latitude (atmosphere/ocean grids) + Also provide others infor such as: + - nb cosp sites (default 129) + - nb lidar temp (default 40) + - nb_parasol_refl (default 5) + - nb isccp tau (default 7) + - nb isccp pc (default 5) + - nb curtains sites (default 1000) + :param dict or list sizes: dict containing the sizes as a list or dict + :return dict: dictionary containing sizes as a dict + """ + logger = get_logger() + rep = dict(nho=None, nlo=None, nha=None, nla=None, nlas=None, nls=None, nh1=None, + nb_cosp_sites=129, nb_lidar_temp=40, nb_parasol_refl=5, nb_isccp_tau=7, nb_isccp_pc=7, + nb_curtain_sites=1000) + if isinstance(sizes, (list, tuple)) and len(sizes) == 1 and isinstance(sizes[0], (dict, list, tuple)): + sizes = sizes[0] + if isinstance(sizes, (list, tuple)): + mcfg = dict() + for (key, val) in zip(['nho', 'nlo', 'nha', 'nla', 'nlas', 'nls', 'nh1'], sizes): + mcfg[key] = val + rep.update(mcfg) + elif isinstance(sizes, dict): + rep.update(sizes) + else: + logger.error("Unable to transform sizes to get relevant information.") + raise ValueError("Unable to transform sizes to get relevant information.") + issues_values = [elt for elt in rep if rep[elt] is None] + if len(issues_values) > 0: + logger.error(f"The values provided by sizes must not be None, issues with {issues_values}.") + raise ValueError(f"The values provided by sizes must not be None, issues with {issues_values}.") + return rep + + +def sort_mips(mips): + if isinstance(mips, (list, tuple)) and len(mips) == 1 and isinstance(mips[0], (dict, set, list)): + mips = mips[0] + elif len(mips) == 0: + mips = list() + rep = set() + if isinstance(mips, dict): + for grid in mips: + rep = rep | mips[grid] + else: + rep = mips + return sorted(list(rep)) \ No newline at end of file diff --git a/dr2xml/projects/ping.json b/dr2xml/projects/ping.json new file mode 100644 index 00000000..3d352a74 --- /dev/null +++ b/dr2xml/projects/ping.json @@ -0,0 +1,47 @@ +{ + "parent_project_settings": "basics", + "internal": { + "configuration": { + "values": [null] + }, + "source_id": { + "values": [null] + }, + "experiment_id": { + "values": [null] + }, + "experiment_for_requests": { + "values": [null] + }, + "grid_choice": { + "values": [null] + }, + "grid_policy": { + "values": [null] + }, + "grids": { + "values": [null] + }, + "orphan_variables": { + "values": [[]] + }, + "sampling_timestep": { + "values": [null] + }, + "sizes": { + "values": [null] + }, + "source_type": { + "values": [null] + }, + "path_special_defs": { + "values": [ + { + "type": "value", + "origin": "laboratory", + "keys": "path_special_defs" + } + ] + } + } +} \ No newline at end of file diff --git a/dr2xml/projects/ping.py b/dr2xml/projects/ping.py deleted file mode 100644 index a83cefa9..00000000 --- a/dr2xml/projects/ping.py +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -""" -CMIP6 python tools -""" - -from __future__ import print_function, division, absolute_import, unicode_literals - -from dr2xml.projects.projects_interface_definitions import ParameterSettings, ValueSettings, FunctionSettings, \ - TagSettings, ConditionSettings - -parent_project_settings = "basics" - - -internal_values = dict( - configuration=ParameterSettings( - key="configuration", - default_values=[None, ] - ), - source_id=ParameterSettings( - key="source_id", - default_values=[None, ] - ), - experiment_id=ParameterSettings( - key="experiment_id", - default_values=[None, ] - ), - experiment_for_requests=ParameterSettings( - key="experiment_for_requests", - default_values=[None, ] - ), - grid_choice=ParameterSettings( - key="grid_choice", - default_values=[[None, ], ] - ), - grid_policy=ParameterSettings( - key="grid_policy", - default_values=[None, ] - ), - grids=ParameterSettings( - key="grids", - default_values=[[None, ], ] - ), - orphan_variables=ParameterSettings( - key="orphan_variables", - default_values=[list(), ] - ), - sampling_timestep=ParameterSettings( - key="sampling_timestep", - default_values=[None, ] - ), - sizes=ParameterSettings( - key="sizes", - default_values=[None, ] - ), - source_type=ParameterSettings( - key="source_type", - default_values=[None, ] - ), - path_special_defs=ParameterSettings( - key="path_special_defs", - default_values=[ValueSettings(key_type="laboratory", keys="path_special_defs")] - ) -) - -common_values = dict() - -project_settings = dict() \ No newline at end of file diff --git a/dr2xml/projects/projects_default_settings.json b/dr2xml/projects/projects_default_settings.json new file mode 100644 index 00000000..10930fc6 --- /dev/null +++ b/dr2xml/projects/projects_default_settings.json @@ -0,0 +1,91 @@ +{ + "parent_project_settings": { + "help": "If needed, the name of the parent file which is modified by the current one. Can be a complete path or the name of the file which will be taken from the default directory. All files should be created (through parents) from dr2xml.", + "default": null + }, + "functions_file": { + "help": "If needed, the file which contains all the functions needed by a project.", + "default": null + }, + "init": { + "help": "All variables which are needed to begin configuring dr2xml.", + "default": {}, + "default_config": { + "help": "TODO", + "fatal": false, + "corrections": false, + "authorized_values": true, + "authorized_types": true, + "authorized_patterns": true, + "forbidden_patterns": true, + "forbidden_values": true, + "forbidden_types": true, + "target_type": false, + "values": [] + } + }, + "internal": { + "help": "All variables which are needed to go on configuring dr2xml.", + "default": {}, + "default_config": { + "help": "TODO", + "fatal": false, + "corrections": false, + "authorized_values": true, + "authorized_types": true, + "authorized_patterns": true, + "forbidden_patterns": true, + "forbidden_values": true, + "forbidden_types": true, + "target_type": false, + "values": [] + } + }, + "common": { + "help": "All variables which are needed for projects.", + "default": {}, + "default_config": { + "help": "TODO", + "fatal": false, + "corrections": false, + "authorized_values": true, + "authorized_types": true, + "authorized_patterns": true, + "forbidden_patterns": true, + "forbidden_values": true, + "forbidden_types": true, + "target_type": false, + "values": [] + } + }, + "project_settings": { + "help": "All elements used to configure xml beacons created by dr2xml.", + "default": {}, + "default_config": { + "common_list": [], + "common_constraints": {}, + "attrs_list": [], + "attrs_constraints": {}, + "comments_list": [], + "comments_constraints": {}, + "vars_list": [], + "vars_constraints": {} + }, + "default_constraint": { + "help": "TODO", + "fatal": false, + "corrections": false, + "authorized_values": true, + "authorized_types": true, + "authorized_patterns": true, + "forbidden_values": true, + "forbidden_types": true, + "forbidden_patterns": true, + "target_type": false, + "values": [], + "output_key": false, + "num_type": "string", + "conditions": true + } + } +} \ No newline at end of file diff --git a/dr2xml/projects/projects_interface_definitions.py b/dr2xml/projects/projects_interface_definitions.py index 9793cb07..dff0ff0d 100644 --- a/dr2xml/projects/projects_interface_definitions.py +++ b/dr2xml/projects/projects_interface_definitions.py @@ -6,9 +6,11 @@ """ from __future__ import print_function, division, absolute_import, unicode_literals +import copy import os import re from collections import OrderedDict +from importlib.machinery import SourceFileLoader import six @@ -20,23 +22,39 @@ from utilities.logger import get_logger -def return_value(value, common_dict=dict(), internal_dict=dict(), additional_dict=dict(), - allow_additional_keytypes=True): - if isinstance(value, ValueSettings): - return determine_value(key_type=value.key_type, keys=value.keys, func=value.func, fmt=value.fmt, src=value.src, - common_dict=common_dict, internal_dict=internal_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) +def val_or_func(key, element, project_funcs=None): + if isinstance(element, dict): + element_type = element.get("type") + if element_type is None: + return element + elif element_type in ["condition", ]: + return ConditionSettings.from_dict(key, element, project_funcs=project_funcs) + elif element_type in ["func", ]: + return FunctionSettings.from_dict(key, element, project_funcs=project_funcs) + else: + return ValueSettings.from_dict(key, element, project_funcs=project_funcs) + else: + return element + + +def return_value(value, init_dict=dict(), common_dict=dict(), internal_dict=dict(), additional_dict=dict(), + allow_additional_keytypes=True, project_funcs=None, common_tag=dict(), **attrs): + if isinstance(value, (ValueSettings, FunctionSettings, ConditionSettings)): + return value.__call__(common_dict=common_dict, internal_dict=internal_dict, additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, init_dict=init_dict, + project_funcs=project_funcs, common_tag=common_tag, **attrs) else: return True, value def determine_value(key_type=None, keys=list(), func=None, fmt=None, src=None, common_dict=dict(), internal_dict=dict(), - additional_dict=dict(), allow_additional_keytypes=True): + additional_dict=dict(), allow_additional_keytypes=True, init_dict=dict(), project_funcs=None, + common_tag=dict()): logger = get_logger() if key_type in ["combine", "merge"] or (key_type is None and func is not None): - keys = [return_value(key, common_dict=common_dict, internal_dict=internal_dict, - additional_dict=additional_dict, allow_additional_keytypes=allow_additional_keytypes) + keys = [return_value(key, common_dict=common_dict, internal_dict=internal_dict, init_dict=init_dict, + additional_dict=additional_dict, allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) for key in keys] key_found = all([elt[0] for elt in keys]) if key_found: @@ -59,8 +77,19 @@ def determine_value(key_type=None, keys=list(), func=None, fmt=None, src=None, c else: if isinstance(func, FunctionSettings): found, value = func(*keys, additional_dict=additional_dict, internal_dict=internal_dict, - common_dict=common_dict, allow_additional_keytypes=allow_additional_keytypes) + init_dict=init_dict, common_dict=common_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) else: + if isinstance(func, ValueSettings): + func_test, func_value = return_value(func, common_dict=common_dict, internal_dict=internal_dict, + additional_dict=additional_dict, init_dict=init_dict, + allow_additional_keytypes=allow_additional_keytypes, + prohect_funcs=project_funcs, common_tag=common_tag) + if not func_test: + logger.warning("Unable to determine function %s" % func) + else: + func = func_value try: value = func(*keys) found = True @@ -79,6 +108,9 @@ def determine_value(key_type=None, keys=list(), func=None, fmt=None, src=None, c elif key_type in ["internal", ]: value = internal_dict found = True + elif key_type in ["init", ]: + value = init_dict + found = True elif key_type in ["dict", ]: value = additional_dict found = True @@ -87,9 +119,10 @@ def determine_value(key_type=None, keys=list(), func=None, fmt=None, src=None, c raise ValueError("At least a key must be provided if key_type=config") else: try: - found, value = return_value(value=keys[i_keys], common_dict=common_dict, + found, value = return_value(value=keys[i_keys], common_dict=common_dict, init_dict=init_dict, internal_dict=internal_dict, additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs) if found: value = get_config_variable(value) i_keys += 1 @@ -101,9 +134,10 @@ def determine_value(key_type=None, keys=list(), func=None, fmt=None, src=None, c value = format_dict_for_printing("lset") found = True else: - found, value = return_value(value=keys[i_keys], common_dict=common_dict, + found, value = return_value(value=keys[i_keys], common_dict=common_dict, init_dict=init_dict, internal_dict=internal_dict, additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs) if found: found = is_key_in_lset(value) if found: @@ -114,9 +148,10 @@ def determine_value(key_type=None, keys=list(), func=None, fmt=None, src=None, c value = format_dict_for_printing("sset") found = True else: - found, value = return_value(value=keys[i_keys], common_dict=common_dict, + found, value = return_value(value=keys[i_keys], common_dict=common_dict, init_dict=init_dict, internal_dict=internal_dict, additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs) if found: found = is_key_in_sset(value) if found: @@ -124,8 +159,9 @@ def determine_value(key_type=None, keys=list(), func=None, fmt=None, src=None, c i_keys += 1 elif key_type in ["json", ]: found, src = return_value(value=src, common_dict=common_dict, internal_dict=internal_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + additional_dict=additional_dict, init_dict=init_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs) if found: if not isinstance(src, six.string_types): raise TypeError("src must be a string or a ValueSettings") @@ -134,16 +170,23 @@ def determine_value(key_type=None, keys=list(), func=None, fmt=None, src=None, c else: value = None elif allow_additional_keytypes: - if key_type in ["data_request", ] and allow_additional_keytypes: + if key_type in ["data_request", ]: from dr2xml.dr_interface import get_dr_object value = get_dr_object("get_data_request") found = True + elif key_type in ["vocabulary", ]: + from dr2xml.vocabulary import get_vocabulary + value = get_vocabulary() + found = True elif key_type in ["variable", ] and "variable" in additional_dict: value = additional_dict["variable"] if isinstance(value, list): value = value[0] value = value.__dict__ found = True + elif key_type in ["common_tag", ]: + value = common_tag + found = True else: value = None found = False @@ -153,8 +196,9 @@ def determine_value(key_type=None, keys=list(), func=None, fmt=None, src=None, c if found: while found and i_keys < len(keys): found, key = return_value(keys[i_keys], common_dict=common_dict, internal_dict=internal_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + additional_dict=additional_dict, init_dict=init_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) if found: if isinstance(value, (dict, OrderedDict)): if key in value: @@ -162,7 +206,7 @@ def determine_value(key_type=None, keys=list(), func=None, fmt=None, src=None, c i_keys += 1 else: found = False - elif isinstance(value, (tuple, list, six.string_types)): + elif isinstance(value, (tuple, list, six.string_types)) and isinstance(key, int): if isinstance(key, int) and key < len(value): value = value[key] i_keys += 1 @@ -174,6 +218,9 @@ def determine_value(key_type=None, keys=list(), func=None, fmt=None, src=None, c elif value is not None and key in value.__dir__(): value = value.__getattribute__(key) i_keys += 1 + elif value is not None and "__dict__" in value.__dir__(): + value = value.__getattr__(key) + i_keys += 1 else: found = False if found and func is not None: @@ -181,7 +228,9 @@ def determine_value(key_type=None, keys=list(), func=None, fmt=None, src=None, c value = [value, ] if isinstance(func, FunctionSettings): found, value = func(*value, additional_dict=additional_dict, internal_dict=internal_dict, - common_dict=common_dict, allow_additional_keytypes=allow_additional_keytypes) + init_dict=init_dict, common_dict=common_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) else: try: value = func(*value) @@ -199,7 +248,7 @@ def determine_value(key_type=None, keys=list(), func=None, fmt=None, src=None, c class Settings(object): - def __init__(self, *args, **kwargs): + def __init__(self, *args, project_funcs=None, **kwargs): self.dict_default = self.init_dict_default() self.updated = set() for elt in self.dict_default: @@ -210,6 +259,10 @@ def __init__(self, *args, **kwargs): val = self.dict_default[elt] self.__setattr__(elt, val) + @classmethod + def from_dict(cls, key, kwargs, additional_keys=False, project_funcs=None): + raise NotImplementedError() + def init_dict_default(self): return dict() @@ -224,17 +277,22 @@ def __str__(self): def __repr__(self): return self.__str__() + def __call__(self, init_dict=dict(), internal_dict=dict(), common_dict=dict(), additional_dict=dict(), + allow_additional_keytypes=False, project_funcs=None, **attrs): + raise NotImplementedError() + def dump_doc(self, force_void=False): raise NotImplementedError("Dump documentation is not implemented for class %s" % type(self)) - def dump_doc_inner(self, value, force_void=False, format_struct=True, remove_new_lines=False): + def dump_doc_inner(self, value, force_void=False, format_struct=True, remove_new_lines=False, + force_format_struct=False): if isinstance(value, Settings): rep = value.dump_doc(force_void=force_void) elif isinstance(value, (list, set)): rep = list() if len(value) == 0 and force_void: rep.append(list()) - elif len(value) == 1: + elif len(value) == 1 and not force_format_struct: rep.extend(self.dump_doc_inner(value[0], force_void=force_void, format_struct=format_struct)) elif format_struct: rep.append(" ") @@ -247,7 +305,7 @@ def dump_doc_inner(self, value, force_void=False, format_struct=True, remove_new elif isinstance(value, (dict, OrderedDict)): rep = list() if len(value) == 0 and force_void: - rep.append(type(value).__call__()) + rep.append("%s" % type(value).__call__()) else: if format_struct: rep.append(" ") @@ -289,51 +347,233 @@ def dump_doc_inner(self, value, force_void=False, format_struct=True, remove_new class ValueSettings(Settings): def init_dict_default(self): - return dict(key_type=None, keys=list(), fmt=None, src=None, func=None) + return dict(key=None, type=None, origin=None, keys=[], format=False, src=False, values=[]) - def __init__(self, *args, **kwargs): - super(ValueSettings, self).__init__(*args, **kwargs) + def __init__(self, *args, project_funcs=None, **kwargs): + logger = get_logger() + super(ValueSettings, self).__init__(*args, project_funcs=project_funcs, **kwargs) if "keys" in self.updated and not isinstance(self.keys, list): self.keys = [self.keys, ] + self.keys = [val_or_func(self.key, elt, project_funcs=project_funcs) for elt in self.keys] + if self.type in ["file", ]: + if self.origin not in ["json", ]: + logger.error("'Origin' must be specified among 'json' for %s, not %s" % (self.key, self.type)) + raise ValueError( "'Origin' must be specified among 'json' for %s, not %s" % (self.key, self.type)) + if isinstance(self.src, six.string_types) and not os.path.exists(self.src): + logger.error("Source file provided for %s does not exists: %s") + elif self.type in ["merge", ]: + if not isinstance(self.values, list) or len(self.values) == 0: + logger.error("Values must be specified for %s" % self.key) + raise ValueError("Values must be specified for %s" % self.key) + elif self.type in ["value", ]: + if self.origin not in ["attrs", "common", "config", "dict", "init", "internal", "laboratory", "simulation", + "variable", "common_tag"]: + logger.error("'Origin' must be specified among 'attrs', 'common', 'config', 'dict', 'init', 'internal'," + " 'common_tag', 'laboratory', 'simulation' and 'variable' for %s, not %s" % + (self.key, self.origin)) + raise ValueError("'Origin' must be specified among 'attrs', 'common', 'config', 'dict', 'init'," + " 'internal', 'common_tag', 'laboratory', 'simulation' and 'variable' for %s, not %s" % + (self.key, self.origin)) + else: + logger.error("'Type' must be specified among 'file', 'merge' and 'value' for %s, not %s" % (self.key, self.type)) + raise ValueError("'Type' must be specified among 'file', 'merge' and 'value' for %s, not %s" % (self.key, self.type)) + + @classmethod + def from_dict(cls, key, kwargs, additional_keys=False, project_funcs=None): + logger = get_logger() + attrs = copy.deepcopy(kwargs) + for (keyword, val) in attrs.items(): + if keyword in ["type", "origin"] and not isinstance(val, six.string_types): + logger.error("Attribute '%s' of ValueSettings %s must be a string" % (keyword, key)) + raise ValueError("Attribute '%s' of ValueSettings %s must be a string" % (keyword, key)) + elif keyword in ["src", "values", "keys", "format"]: + if isinstance(val, list): + for (i, subval) in enumerate(val): + attrs[keyword][i] = val_or_func(keyword, subval, project_funcs=project_funcs) + else: + attrs[keyword] = val_or_func(keyword, val, project_funcs=project_funcs) + attrs["key"] = key + return cls(project_funcs=project_funcs, **attrs) + + def __call__(self, init_dict=dict(), internal_dict=dict(), common_dict=dict(), additional_dict=dict(), + allow_additional_keytypes=False, project_funcs=None, common_tag=dict(), **attrs): + logger = get_logger() + found = False + keys = copy.deepcopy(self.keys) + if self.type in ["file", ]: + if self.origin in ["json", ]: + found, src = return_value(self.src, init_dict=init_dict, internal_dict=internal_dict, + common_dict=common_dict, additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag, **attrs) + if found: + if not isinstance(src, six.string_types): + logger.error("src found should be a string for %s, not %s" % (self.key, src)) + raise TypeError("src found should be a string for %s, not %s" % (self.key, src)) + else: + value = read_json_content(src) + found = True + else: + logger.error("Unknown origin %s for type %s" % (self.origin, self.type)) + raise ValueError("Unknown origin %s for type %s" % (self.origin, self.type)) + elif self.type in ["merge", ]: + values = [return_value(val, init_dict=init_dict, internal_dict=internal_dict, + common_dict=common_dict, additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag, **attrs) + for val in self.values] + if all(val[0] for val in values): + value = list() + for val in values: + value.extend(val[1]) + found = True + else: + logger.error("Unable to determine the %s index to be merged in %s" % + (str([i for (i, val) in enumerate(values) if not val[0]]), self.key)) + raise ValueError("Unable to determine the %s index to be merged in %s" % + (str([i for (i, val) in enumerate(values) if not val[0]]), self.key)) + elif self.type in ["value", ]: + if self.origin in ["attrs", ]: + value = additional_dict + found = True + elif self.origin in ["dict", ]: + value = additional_dict + found = True + elif self.origin in ["init", ]: + value = init_dict + found = True + elif self.origin in ["internal", ]: + value = internal_dict + found = True + elif self.origin in ["common", ]: + value = common_dict + found = True + elif self.origin in ["common_tag", ]: + value = common_tag + found = True + elif self.origin in ["variable", ] and allow_additional_keytypes: + value = additional_dict["variable"] + if isinstance(value, list): + value = value[0] + value = value.__dict__ + found = True + elif self.origin in ["config", "simulation", "laboratory"]: + if len(keys) == 0: + if self.origin in ["config", ]: + logger.error("Must define at least one keys for type values and origin config") + raise ValueError("Must define at least one keys for type values and origin config") + elif self.origin in ["simulation", ]: + value = format_dict_for_printing("sset") + found = True + elif self.origin in ["laboratory", ]: + value = format_dict_for_printing("lset") + found = True + else: + logger.error("Unexpected origin %s" % self.origin) + raise ValueError("Unexpected origin %s" % self.origin) + else: + key = keys[0] + keys = keys[1:] + key = val_or_func(self.key, key, project_funcs=project_funcs) + found, value = return_value(key, init_dict=init_dict, internal_dict=internal_dict, + common_dict=common_dict, additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag, **attrs) + if found: + if self.origin in ["config", ]: + value = get_config_variable(key) + found = True + elif self.origin in ["simulation", ]: + found = is_key_in_sset(key) + if found: + value = get_variable_from_sset_without_default(key) + elif self.origin in ["laboratory", ]: + found = is_key_in_lset(key) + if found: + value = get_variable_from_lset_without_default(key) + else: + logger.error("Unexpected origin %s" % self.origin) + raise ValueError("Unexpected origin %s" % self.origin) + else: + logger.error("Could not find the first value to be looked for for %s" % self.key) + raise ValueError("Could not find the first value to be looked for for %s" % self.key) + + else: + logger.error("Unknown origin %s for type %s and allow additional %s" % + (self.origin, self.type, allow_additional_keytypes)) + raise ValueError("Unknown origin %s for type %s and allow additional %s" % + (self.origin, self.type, allow_additional_keytypes)) + else: + logger.error("Unknown type %s" % self.type) + raise ValueError("Unknown type %s" % self.type) + while found and len(keys) > 0: + key = keys[0] + keys = keys[1:] + key = val_or_func(self.key, key, project_funcs=project_funcs) + found, key = return_value(key, init_dict=init_dict, internal_dict=internal_dict, + common_dict=common_dict, additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag, **attrs) + if found: + if isinstance(value, (dict, OrderedDict)): + if key in value: + value = value[key] + else: + found = False + elif isinstance(value, (tuple, list, six.string_types)) and isinstance(key, int): + if isinstance(key, int) and key < len(value): + value = value[key] + else: + found = False + elif value is not None and key in value.__dir__(): + value = value.__getattribute__(key) + elif value is not None and "__dict__" in value.__dir__(): + value = value.__dict__.get(key) + else: + found = False + if found and self.format is not False: + if isinstance(self.format, FunctionSettings): + found, value = self.format(value) + elif isinstance(self.format, six.string_types): + if not isinstance(value, list): + value = [value, ] + value = self.format.format(*value) + else: + logger.error("Unknown format type %s" % self.format) + raise TypeError("Unknown format type %s" % self.format) + return found, value def dump_doc(self, force_void=False): rep = list() tmp_rep = "" - key_type = self.key_type - if key_type in ["laboratory", "simulation", "dict", "internal", "common", "json"]: - if key_type in ["json", ]: - tmp_rep = "read_json_file(%s)" - tmp_rep = tmp_rep % self.dump_doc_inner(self.src, format_struct=False)[0] - else: - tmp_rep = "%s" % key_type - keys_values = self.dump_doc_inner(self.keys, format_struct=False) - for key_value in keys_values: - tmp_rep += "[%s]" % key_value - elif key_type in ["combine", ]: - tmp_rep = ", ".join(self.dump_doc_inner(self.keys, format_struct=False)) - elif key_type in ["merge", ]: - tmp_rep = str(self.dump_doc_inner(self.keys, format_struct=False)) - elif key_type in ["data_request", ]: - tmp_rep = "%s" % key_type - keys_values = self.dump_doc_inner(self.keys, format_struct=False) - for key_value in keys_values: - if key_value in ["__call__", ]: - tmp_rep += "()" - else: + value_origin = self.origin + value_type = self.type + if value_type in ["value", ]: + if value_origin in ["laboratory", "simulation", "dict", "init", "internal", "common", "attrs", "common_tag"]: + tmp_rep = "%s" % value_origin + keys_values = self.dump_doc_inner(self.keys, format_struct=False) + for key_value in keys_values: + tmp_rep += "[%s]" % key_value + elif value_origin in ["data_request", "vocabulary", "config", "variable"]: + tmp_rep = "%s" % value_origin + keys_values = self.dump_doc_inner(self.keys, format_struct=False) + for key_value in keys_values: tmp_rep += ".%s" % key_value - elif key_type in ["config", "variable"]: - tmp_rep = "%s" % key_type - if key_type in ["config", ]: - tmp_rep = "dr2xml." + tmp_rep + elif value_type in ["file", ]: + tmp_rep = "read_%s_file(%s)" % (value_origin, self.dump_doc_inner(self.src, format_struct=False)[0]) keys_values = self.dump_doc_inner(self.keys, format_struct=False) for key_value in keys_values: - tmp_rep += ".%s" % key_value - if self.func is not None: - tmp_rep += self.dump_doc_inner(self.func, format_struct=False)[0] - if self.fmt is not None: - tmp_rep = self.dump_doc_inner(self.fmt, force_void=force_void, remove_new_lines=True)[0] + \ - ".format(%s)" % tmp_rep + tmp_rep += "[%s]" % key_value + elif value_type in ["merge", ]: + tmp_rep = "merge_lists(%s)" % ", ".join(self.dump_doc_inner(self.keys, format_struct=False)) + if self.format is not False: + if isinstance(self.format, FunctionSettings): + tmp_rep += " formatted with %s" % self.dump_doc_inner(self.format, force_void=force_void, remove_new_lines=True)[0] + else: + tmp_rep = self.dump_doc_inner(self.format, force_void=force_void, remove_new_lines=True)[0] + \ + ".format(%s)" % tmp_rep if len(tmp_rep) == 0: + print(self) rep.extend(super().dump_doc(force_void=force_void)) else: rep.append(tmp_rep) @@ -343,10 +583,60 @@ def dump_doc(self, force_void=False): class ParameterSettings(Settings): def init_dict_default(self): - return dict(skip_values=list(), forbidden_patterns=list(), conditions=list(), default_values=list(), - cases=list(), authorized_values=list(), authorized_types=list(), corrections=dict(), - output_key=None, num_type="string", is_default=False, fatal=False, key=None, help="TODO", - target_type=None) + return dict(key=None, help="TODO", fatal=False, corrections=False, values=list(), target_type=False, + authorized_values=True, authorized_types=True, authorized_patterns=True, + forbidden_types=True, forbidden_patterns=True, forbidden_values=True, + output_key=False, num_type="string", conditions=True) + + @classmethod + def from_dict(cls, key, kwargs, additional_keys=False, project_funcs=None): + logger = get_logger() + attrs = copy.deepcopy(kwargs) + if not additional_keys: + for elt in ["output_key", "num_type", "conditions"]: + if elt in attrs: + del attrs[elt] + for (keyword, val) in attrs.items(): + if keyword in ["help", ] and not isinstance(val, six.string_types): + logger.error("Attribute '%s' of ParameterSettings %s must be a string" % (keyword, key)) + raise ValueError("Attribute '%s' of ParameterSettings %s must be a string" % (keyword, key)) + elif keyword in ["fatal", ] and not isinstance(val, bool): + logger.error("Attribute '%s' of ParameterSettings %s must be a boolean" % (keyword, key)) + raise ValueError("Attribute '%s' of ParameterSettings %s must be a boolean" % (keyword, key)) + elif keyword in ["num_type", ] and val is not False and not isinstance(val, six.string_types): + logger.error("Attribute '%s' of ParameterSettings %s must be a string or None or False" % (keyword, key)) + raise ValueError("Attribute '%s' of ParameterSettings %s must be a string or None or False" % (keyword, key)) + elif keyword in ["target_type", ] and val is not False and val is not None and not isinstance(val, six.string_types): + logger.error("Attribute '%s' of ParameterSettings %s must be a string or None or False" % (keyword, key)) + raise ValueError("Attribute '%s' of ParameterSettings %s must be a string or None or False" % (keyword, key)) + elif keyword in ["corrections", ] and val is not False and not isinstance(val, dict): + logger.error("Attribute '%s' of ParameterSettings %s must be a dict or False" % (keyword, key)) + raise ValueError("Attribute '%s' of ParameterSettings %s must be a dict or False" % (keyword, key)) + elif keyword in ["authorized_types", "forbidden_types", "authorized_patterns", "forbidden_patterns"] \ + and val is not True and not isinstance(val, list) \ + and not all([isinstance(elt, six.string_types) for elt in val]): + logger.error("Attribute '%s' of ParameterSettings %s must be a list of str or False" % (keyword, key)) + raise ValueError("Attribute '%s' of ParameterSettings %s must be a list of str or False" % (keyword, key)) + elif keyword in ["conditions", ] and val is not True: + if isinstance(val, list): + attrs[keyword] = copy.deepcopy([ConditionSettings.from_dict(keyword, elt, project_funcs=project_funcs) for elt in val]) + else: + logger.error("Attribute '%s' of ParameterSettings %s must be a list or True" % (keyword, key)) + raise ValueError("Attribute '%s' of ParameterSettings %s must be a list or True" % (keyword, key)) + elif keyword in ["authorized_values", "forbidden_values"] and val is not True: + if isinstance(val, list): + attrs[keyword] = copy.deepcopy([val_or_func(keyword, elt, project_funcs=project_funcs) for elt in val]) + else: + logger.error("Attribute '%s' of ParameterSettings %s must be a list or True" % (keyword, key)) + raise ValueError("Attribute '%s' of ParameterSettings %s must be a list or True" % (keyword, key)) + elif keyword in ["values", ]: + if isinstance(val, list): + attrs[keyword] = copy.deepcopy([val_or_func(keyword, elt, project_funcs=project_funcs) for elt in val]) + else: + logger.error("Attribute '%s' of ParameterSettings %s must be a list" % (keyword, key)) + raise ValueError("Attribute '%s' of ParameterSettings %s must be a list" % (keyword, key)) + attrs["key"] = key + return cls(project_funcs=project_funcs, **attrs) def dump_doc(self, force_void=False): rep = list() @@ -355,46 +645,46 @@ def dump_doc(self, force_void=False): rep.append(fmt % "") rep.append(fmt % self.help) rep.append(fmt % "") - output_keys = ["fatal", "default_values", "skip_values", "authorized_values", "authorized_types", - "forbidden_patterns", "conditions", "cases", "corrections", "num_type"] - if self.__getattribute__("output_key") != self.key: + output_keys = ["fatal", "values", "corrections", "target_type", "authorized_values", "authorized_patterns", + "authorized_types", "forbidden_values", "forbidden_patterns", "forbidden_types", "conditions", + "num_type"] + default_dict = self.init_dict_default() + if self.output_key != self.key: output_keys.insert(0, "output_key") for key in output_keys: value = self.__getattribute__(key) - value = self.dump_doc_inner(value, force_void=force_void or key in ["default_values", ], - format_struct=key not in ["cases", "conditions"]) - add = False - key = key.replace("_", " ") - if len(value) == 1: - value = "%s" % value[0] - value = value.strip() - if len(value) > 0: - rep.append(fmt % ("%s: %s" % (key, value))) + if value not in [default_dict[key], ] or key in ["num_type", ]: + value = self.dump_doc_inner(value, force_void=force_void or key in ["values", ], + format_struct=key not in ["conditions", ], + force_format_struct=key in ["values", ]) + add = False + key = key.replace("_", " ") + if len(value) > 1 or key in ["values", ]: + rep.append(fmt % ("%s:" % key)) + rep.extend(fmt % elt for elt in value) add = True - elif len(value) > 1: - rep.append(fmt % ("%s:" % key)) - rep.extend(fmt % elt for elt in value) - add = True - if add: - rep.append(fmt % "") + elif len(value) == 1: + value = "%s" % value[0] + value = value.strip() + if len(value) > 0: + rep.append(fmt % ("%s: %s" % (key, value))) + add = True + if add: + rep.append(fmt % "") return rep - def __init__(self, *args, **kwargs): + def __init__(self, *args, project_funcs=None, **kwargs): super(ParameterSettings, self).__init__(*args, **kwargs) if self.key is None: raise ValueError("Attribute 'key' must not be None") if self.output_key is None: self.output_key = self.key - if not self.is_default and len(self.default_values) > 0: - self.is_default = True - self.updated.add("is_default") - elif self.is_default and len(self.default_values) == 0: - self.is_default = False - self.updated.add("is_default") if isinstance(self.authorized_types, list) and len(self.authorized_types) == 1: self.authorized_types = self.authorized_types[0] - if not self.target_type in ["list", "set", "str", None]: - raise ValueError("Target type must have a value among 'str', 'set', 'list', None.") + if isinstance(self.forbidden_types, list) and len(self.forbidden_types) == 1: + self.forbidden_types = self.forbidden_types[0] + if self.target_type and not self.target_type in ["list", "set", "str", "dict", None]: + raise ValueError("Target type must have a value among 'str', 'set', 'list', 'dict', None.") def update(self, other): super(ParameterSettings, self).update(other) @@ -405,42 +695,62 @@ def update(self, other): self.__setattr__(elt, other.__getattribute__(elt)) self.updated.add(elt) - def check_value(self, value, internal_dict=dict(), common_dict=dict(), additional_dict=dict(), - allow_additional_keytypes=True): + def check_value(self, value, init_dict=dict(), internal_dict=dict(), common_dict=dict(), additional_dict=dict(), + allow_additional_keytypes=True, project_funcs=None, common_tag=dict()): test = True relevant = True - i = 0 - while test and i < len(self.conditions): - cond = self.conditions[i] - if isinstance(cond, bool): - test = test and cond - else: - relevant, cond = cond.check(internal_dict=internal_dict, common_dict=common_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) - test = relevant and cond - if test: - i += 1 + if isinstance(self.conditions, bool): + test = self.conditions + else: + i = 0 + while test and i < len(self.conditions): + cond = self.conditions[i] + if isinstance(cond, bool): + test = test and cond + else: + relevant, cond = cond.check(init_dict=init_dict, internal_dict=internal_dict, common_dict=common_dict, + additional_dict=additional_dict, project_funcs=project_funcs, + allow_additional_keytypes=allow_additional_keytypes, + common_tag=common_tag) + test = relevant and cond + if test: + i += 1 + if test: + if isinstance(self.forbidden_values, bool): + test = self.forbidden_values + else: + forbidden_values = [return_value(val, init_dict=init_dict, internal_dict=internal_dict, + common_dict=common_dict, additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) + for val in self.forbidden_values] + relevant = all([elt[0] for elt in forbidden_values]) + forbidden_values = [elt[1] for elt in forbidden_values] + test = relevant and value not in forbidden_values + if test: + if isinstance(self.authorized_types, bool): + test = self.authorized_types + elif ((isinstance(self.authorized_types, list) and len(self.authorized_types) > 0) + or not isinstance(self.authorized_types, list)): + test = isinstance(value, self.authorized_types) if test: - skip_values = [return_value(val, internal_dict=internal_dict, common_dict=common_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) - for val in self.skip_values] - relevant = all([elt[0] for elt in skip_values]) - skip_values = [elt[1] for elt in skip_values] - test = relevant and value not in skip_values - if test and ((isinstance(self.authorized_types, list) and len(self.authorized_types) > 0) - or not isinstance(self.authorized_types, list)): - test = isinstance(value, self.authorized_types) + if isinstance(self.forbidden_types, bool): + test = self.forbidden_types + elif ((isinstance(self.forbidden_types, list) and len(self.forbidden_types) > 0) + or not isinstance(self.forbidden_types, list)): + test = not isinstance(value, self.forbidden_types) if test: if isinstance(self.authorized_values, ValueSettings): - relevant, authorized_values = return_value(self.authorized_values, internal_dict=internal_dict, - common_dict=common_dict, additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + relevant, authorized_values = return_value(self.authorized_values, init_dict=init_dict, + internal_dict=internal_dict, common_dict=common_dict, + additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) elif isinstance(self.authorized_values, list) and len(self.authorized_values) > 0: - authorized_values = [return_value(val, internal_dict=internal_dict, common_dict=common_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + authorized_values = [return_value(val, init_dict=init_dict, internal_dict=internal_dict, + common_dict=common_dict, additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) for val in self.authorized_values] relevant = all([elt[0] for elt in authorized_values]) authorized_values = [elt[1] for elt in authorized_values] @@ -449,77 +759,84 @@ def check_value(self, value, internal_dict=dict(), common_dict=dict(), additiona if authorized_values is not None: test = relevant and value in authorized_values if test: - test = not (any([re.compile(pattern).match(str(value)) for pattern in self.forbidden_patterns])) + if isinstance(self.forbidden_patterns, bool): + test = self.forbidden_patterns + else: + test = not (any([re.compile(pattern).match(str(value)) for pattern in self.forbidden_patterns])) + if test: + if isinstance(self.authorized_patterns, bool): + test = self.authorized_patterns + else: + test = any([re.compile(pattern).match(str(value)) for pattern in self.authorized_patterns]) return relevant, test - def correct_value(self, value, internal_values=dict(), common_values=dict(), additional_dict=dict(), - allow_additional_keytypes=True): + def correct_value(self, value, init_dict=dict(), internal_values=dict(), common_values=dict(), + additional_dict=dict(), allow_additional_keytypes=True, project_funcs=None, common_tag=dict()): test = True if isinstance(value, six.string_types): value = value.strip() - if isinstance(value, (int, float, six.string_types)) and value in self.corrections: + if isinstance(value, (int, float, six.string_types)) and self.corrections is not False and value in self.corrections: correction = self.corrections[value] if isinstance(correction, list): conditions, correction = correction - conditions = [condition.check(internal_dict=internal_values, common_dict=common_values, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + conditions = [condition.check(init_dict=init_dict, internal_dict=internal_values, + common_dict=common_values, additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) for condition in conditions] test = all(elt[0] for elt in conditions) conditions = all(elt[1] for elt in conditions) test = test and conditions if test: - test, value = return_value(correction, internal_dict=internal_values, common_dict=common_values, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + test, value = return_value(correction, init_dict=init_dict, internal_dict=internal_values, + common_dict=common_values, additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) return test, value - def find_value(self, is_value=False, value=None, internal_dict=dict(), common_dict=dict(), additional_dict=dict(), - allow_additional_keytypes=True, raise_on_error=True): + def find_value(self, is_value=False, value=None, init_dict=dict(), internal_dict=dict(), common_dict=dict(), + additional_dict=dict(), allow_additional_keytypes=True, raise_on_error=True, project_funcs=None, + common_tag=dict()): + logger = get_logger() test = False if is_value: - test, value = self.correct_value(value, internal_values=internal_dict, common_values=common_dict, - additional_dict=dict(), allow_additional_keytypes=True) - relevant, test = self.check_value(value, internal_dict=internal_dict, common_dict=common_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + test, value = self.correct_value(value, init_dict=init_dict, internal_values=internal_dict, + common_values=common_dict, additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) + relevant, test = self.check_value(value, init_dict=init_dict, internal_dict=internal_dict, + common_dict=common_dict, additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) test = test and relevant i = 0 - while not test and i < len(self.cases): - test, value = self.cases[i].check(internal_dict=internal_dict, common_dict=common_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) - if test: - test, value = self.correct_value(value, internal_values=internal_dict, common_values=common_dict, - additional_dict=dict(), - allow_additional_keytypes=allow_additional_keytypes) - if test: - relevant, test = self.check_value(value, internal_dict=internal_dict, common_dict=common_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) - test = test and relevant - if not test: - i += 1 - i = 0 - while not test and i < len(self.default_values): - default = self.default_values[i] - test, value = return_value(default, internal_dict=internal_dict, common_dict=common_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + while not test and i < len(self.values): + default = self.values[i] + test, value = return_value(default, init_dict=init_dict, internal_dict=internal_dict, + common_dict=common_dict, additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) if test: - test, value = self.correct_value(value, internal_values=internal_dict, common_values=common_dict, - additional_dict=dict(), allow_additional_keytypes=True) + test, value = self.correct_value(value, init_dict=init_dict, internal_values=internal_dict, + common_values=common_dict, additional_dict=dict(), + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) if test: - relevant, test = self.check_value(value, internal_dict=internal_dict, common_dict=common_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + relevant, test = self.check_value(value, init_dict=init_dict, internal_dict=internal_dict, + common_dict=common_dict, additional_dict=additional_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag) test = test and relevant if not test: i += 1 if test: value = self.correct_target_type(value) + logger.debug("For parameter %s, found value %s" % (self.key, "''" if isinstance(value, str) and len(value) == 0 else value)) elif not test and self.fatal and raise_on_error: + logger.debug("Could not find a proper value for %s" % self.key) raise ValueError("Could not find a proper value for %s" % self.key) + else: + logger.debug("Could not find a proper value for %s" % self.key) return test, value def correct_target_type(self, value): @@ -543,6 +860,13 @@ def correct_target_type(self, value): value = self.correct_target_type(value[0]) elif not isinstance(value, six.string_types): value = str(value) + elif target_type in ["dict", ]: + if isinstance(value, dict): + pass + elif len(value) == 0: + value = dict() + else: + raise ValueError(f"Unable to transform {type(value)} into {target_type}.") return value @@ -550,7 +874,32 @@ class TagSettings(Settings): def init_dict_default(self): return dict(attrs_list=list(), attrs_constraints=dict(), vars_list=list(), vars_constraints=dict(), - comments_list=list(), comments_constraints=dict(), help="TODO", key="TODO") + comments_list=list(), comments_constraints=dict(), help="TODO", key=None, + common_list=list(), common_constraints=dict()) + + @classmethod + def from_dict(cls, key, kwargs, additional_keys=False, project_funcs=None): + logger = get_logger() + attrs = copy.deepcopy(kwargs) + for (keyword, val) in attrs.items(): + if keyword in ["help", ] and not isinstance(val, six.string_types): + logger.error("Attribute '%s' of TagSettings %s must be a string" % (keyword, key)) + raise ValueError("Attribute '%s' of TagSettings %s must be a string" % (keyword, key)) + elif keyword.endswith("_list") and not isinstance(val, list) \ + and not all([isinstance(elt, six.string_types) for elt in val]): + logger.error("Attribute '%s' of TagSettings %s must be a list of str" % (keyword, key)) + raise ValueError("Attribute '%s' of TagSettings %s must be a list of str" % (keyword, key)) + elif keyword.endswith("constraints"): + if isinstance(val, dict): + for (subkey, subval) in val.items(): + attrs[keyword][subkey] = copy.deepcopy(ParameterSettings.from_dict(subkey, subval, + additional_keys=True, + project_funcs=project_funcs)) + else: + logger.error("Attribute '%s' of TagSettings %s must be a dict" % (keyword, key)) + raise ValueError("Attribute '%s' of TagSettings %s must be a dict" % (keyword, key)) + attrs["key"] = key + return cls(**attrs) def dump_doc(self, force_void=False): rep = list() @@ -558,6 +907,11 @@ def dump_doc(self, force_void=False): fmt = " %s" rep.append(fmt % "") rep.append(fmt % self.help) + if len(self.common_list) > 0: + rep.append(fmt % "") + rep.append(fmt % "Common:") + for common in self.common_list: + rep.extend([fmt % elt for elt in self.common_constraints[common].dump_doc(force_void=force_void)]) if len(self.comments_list) > 0: rep.append(fmt % "") rep.append(fmt % "Comments:") @@ -578,7 +932,7 @@ def dump_doc(self, force_void=False): def update(self, other): super(TagSettings, self).update(other) for elt in other.updated: - if elt in ["attrs_constraints", "vars_constraints", "comments_constraints"]: + if elt in ["attrs_constraints", "vars_constraints", "comments_constraints", "common_constraints"]: current_val = self.__getattribute__(elt) new_val = other.__getattribute__(elt) for key in new_val: @@ -592,6 +946,10 @@ def update(self, other): self.updated.add(elt) def complete_and_clean(self): + for common in [common for common in self.common_list if common not in self.common_constraints]: + self.common_constraints[common] = ParameterSettings(key=common) + for common in [common for common in self.common_constraints if common not in self.common_list]: + del self.common_constraints[common] for attr in [attr for attr in self.attrs_list if attr not in self.attrs_constraints]: self.attrs_constraints[attr] = ParameterSettings(key=attr) for attr in [attr for attr in self.attrs_constraints if attr not in self.attrs_list]: @@ -608,55 +966,262 @@ def complete_and_clean(self): class FunctionSettings(Settings): - def __init__(self, func, options=dict()): - self.func = func - self.options = options + def init_dict_default(self): + return dict(type=False, origin=False, keys=[], options=dict(), template=False, format=False, + functions_file=None, func=None, key=None) + + def __init__(self, *args, project_funcs=None, **kwargs): + logger = get_logger() + super(FunctionSettings, self).__init__(*args, **kwargs) + if "keys" in self.updated and not isinstance(self.keys, list): + self.keys = [self.keys, ] + if not isinstance(self.keys, list) or len(self.keys) == 0: + logger.error("Keys must be specified for %s" % self.key) + raise ValueError("Keys must be specified for %s" % self.key) + elif self.origin in ["self"]: + if self.keys == ["format", ] and self.template is False: + logger.error("To use 'format' function in %s, 'template' must be a specified." % self.key) + raise ValueError("To use 'format' function in %s, 'template' must be a specified." % self.key) + elif self.keys in [["format", ], ["lower", ], ["upper", ]]: + self.func = self.keys[0] + elif self.keys == ["join", ]: + if not isinstance(self.template, six.string_types): + logger.error("To use 'join' function in %s, 'template' must be a specified to the joining string." % self.key) + raise ValueError("To use 'join' function in %s, 'template' must be a specified to the joining string." % self.key) + else: + self.func = "join" + elif self.keys == ["replace", ]: + if not isinstance(self.template, list) and not len(self.template) == 2: + logger.error("To use 'replace' function in %s, 'template' must be a specified to list of two strings." % self.key) + raise ValueError("To use 'replace' function in %s, 'template' must be a specified to list of two strings" % self.key) + else: + self.func = "replace" + else: + logger.error("Unknown self functions %s" % self.key) + raise ValueError("Unknown self functions %s" % self.key) + elif self.format is not False and not isinstance(self.format, FunctionSettings): + logger.error("Format must be either False or a function for %s" % self.key) + raise ValueError("Format must be either False or a function for %s" % self.key) + elif self.origin in ["functions_file", ]: + if self.functions_file is None and project_funcs is not None: + self.functions_file = SourceFileLoader("functions_file", project_funcs).load_module() + elif isinstance(self.functions_file, six.string_types): + self.functions_file = SourceFileLoader("functions_file", self.functions_file).load_module() + if self.functions_file is None or self.keys[0] not in self.functions_file.__dir__(): + logger.error("Could not find function %s from file %s" % (self.keys[0], self.functions_file)) + raise ValueError("Could not find function %s from file %s" % (self.keys[0], self.functions_file)) + else: + self.func = self.functions_file.__getattribute__(self.keys[0]) + elif self.origin in ["data_request", "vocabulary_server"]: + pass + else: + raise ValueError(self.origin) + # TODO + + def __deepcopy__(self, memo): + dict_call = dict( + type=self.type, + origin=self.origin, + keys=copy.deepcopy(self.keys), + options=copy.deepcopy(self.options), + template=self.template, + format=self.format, + key=self.key + ) + if self.functions_file is None: + dict_call["project_funcs"] = None + elif isinstance(self.functions_file, six.string_types): + dict_call["project_funcs"] = self.functions_file + elif "__file__" in self.functions_file.__dir__(): + dict_call["project_funcs"] = self.functions_file.__file__ + else: + dict_call["project_funcs"] = copy.deepcopy(self.functions_file) + return FunctionSettings(**dict_call) + + @classmethod + def from_dict(cls, key, kwargs, additional_keys=False, project_funcs=None): + logger = get_logger() + attrs = copy.deepcopy(kwargs) + for (keyword, val) in attrs.items(): + if keyword in ["type",] and val not in ["func", ]: + logger.error("Attribute '%s' of FunctionSettings %s must be 'func' not %s" % (keyword, key, val)) + raise ValueError("Attribute '%s' of FunctionSettings %s must be 'func' not %s" % (keyword, key, val)) + elif keyword in ["origin",] and val not in ["functions_file", "self", "vocabulary_server", "data_request"]: + logger.error("Attribute '%s' of FunctionSettings %s must be 'functions_file', 'self', 'vocabulary_server' and" + " 'data_request' not %s" % (keyword, key, val)) + raise ValueError("Attribute '%s' of FunctionSettings %s must be 'functions_file', 'self', 'vocabulary_server'" + " and 'data_request' not %s" % (keyword, key, val)) + elif keyword in ["keys", "options", "format", "template"]: + if isinstance(val, list): + for (i, subval) in enumerate(val): + attrs[keyword][i] = val_or_func(keyword, subval, project_funcs=project_funcs) + elif isinstance(val, dict): + for (subkey, subval) in val.items(): + attrs[keyword][subkey] = val_or_func(subkey, subval, project_funcs=project_funcs) + else: + attrs[keyword] = val_or_func(keyword, val, project_funcs=project_funcs) + attrs["key"] = key + return cls(project_funcs=project_funcs, **attrs) def dump_doc(self, force_void=False): rep = list() - tmp_rep = self.func.__name__ + "(%s)" + tmp_rep = "function from %s named %s" % (self.origin, self.keys[0]) + "(%s)" options = self.dump_doc_inner(self.options, force_void=force_void, format_struct=False) tmp_rep = tmp_rep % ", ".join(options) rep.append(tmp_rep) return rep - def __call__(self, *args, additional_dict=dict(), internal_dict=dict(), common_dict=dict(), - allow_additional_keytypes=True): + def __call__(self, *args, init_dict=dict(), internal_dict=dict(), common_dict=dict(), additional_dict=dict(), + allow_additional_keytypes=False, project_funcs=None, common_tag=dict(), **attrs): logger = get_logger() test = True + options = copy.deepcopy(self.options) for key in sorted(list(self.options)): - key_test, val = return_value(self.options[key], common_dict=common_dict, internal_dict=internal_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + val = val_or_func(key, options[key], project_funcs=project_funcs) + key_test, val = return_value(val, common_dict=common_dict, internal_dict=internal_dict, + additional_dict=additional_dict, init_dict=init_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag, **attrs) if key_test: - self.options[key] = val - else: - del self.options[key] - try: - value = self.func(*args, **self.options) - except BaseException as e: - logger.debug("Issue calling %s with arguments %s and options %s" % (str(self.func), str(args), str(self.options))) - logger.debug(str(e)) - value = None - test = False + options[key] = val + else: + del options[key] + if isinstance(self.func, ValueSettings): + func_test, func_val = return_value(self.func, common_dict=common_dict, internal_dict=internal_dict, + additional_dict=additional_dict, init_dict=init_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag, **attrs) + if func_test: + self.func = func_val + else: + logger.error("Unable to determine function to be used %s" % self.func) + raise ValueError("Unable to determine function to be used %s" % self.func) + elif self.func is None and allow_additional_keytypes: + if self.origin in ["data_request", ]: + from dr2xml.dr_interface import get_dr_object + value = get_dr_object("get_data_request") + elif self.origin in ["vocabulary_server", ]: + from dr2xml.vocabulary import get_vocabulary + value = get_vocabulary() + else: + value = None + if value is not None: + if self.keys[0] not in value.__dir__(): + logger.error("Could not find function %s from %s" % (self.keys[0], self.origin.replace("_", " "))) + raise ValueError("Could not find function %s from %s" % (self.keys[0], self.origin.replace("_", " "))) + else: + self.func = value.__getattribute__(self.keys[0]) + if self.origin in ["self", ] and isinstance(self.func, six.string_types): + if self.func in ["lower", ]: + try: + value = args[0].lower() + except BaseException as e: + logger.debug("Issue formating string %s with method %s" % (args[0], self.func)) + logger.debug(str(e)) + value = None + test = False + elif self.func in ["upper", ]: + try: + value = args[0].upper() + except BaseException as e: + logger.debug("Issue formating string %s with method %s" % (args[0], self.func)) + logger.debug(str(e)) + value = None + test = False + elif self.func in ["format", ]: + try: + value = self.template.format(*args, **options) + except BaseException as e: + logger.debug("Issue formating string %s with %s and %s" % (self.template, args, options)) + logger.debug(str(e)) + value = None + test = False + elif self.func in ["join", ]: + try: + if not isinstance(args, tuple): + args = tuple([args, ]) + if not isinstance(args[0], list): + args = tuple([[args[0], ], ]) + value = self.template.join(*args) + except BaseException as e: + logger.debug("Issue joining string %s with %s" % (self.template, args)) + logger.debug(str(e)) + value = None + test = False + elif self.func in ["replace", ]: + try: + value = args.replace(*self.template) + except BaseException as e: + logger.debug("Issue joining string %s with %s" % (self.template, args)) + logger.debug(str(e)) + value = None + test = False + else: + logger.error("Unknown func %s" % self.func) + raise ValueError("Unknown func %s" % self.func) + else: + try: + value = self.func(*args, **options) + except BaseException as e: + logger.debug("Issue calling %s with args %s and options %s" % (str(self.func), str(args), str(options))) + logger.debug(str(e)) + value = None + test = False return test, value class ConditionSettings(Settings): - def __init__(self, check_value, check_to_do, reference_values): - self.check_value = check_value - self.check_to_do = check_to_do - if not isinstance(reference_values, list): - reference_values = [reference_values, ] - self.reference_values = reference_values + def init_dict_default(self): + return dict(value_to_check=False, check_to_perform=False, reference_values=False, values=list(), key=None, + not_values=list()) + + def __init__(self, *args, project_funcs=None, **kwargs): + logger = get_logger() + super(ConditionSettings, self).__init__(*args, **kwargs) + if not isinstance(self.reference_values, list): + self.reference_values = [self.reference_values, ] + self.reference_values = [val_or_func(self.key, elt, project_funcs=project_funcs) for elt in self.reference_values] + if not isinstance(self.values, list): + self.values = [self.values, ] + self.values = [val_or_func(self.key, elt, project_funcs=project_funcs) for elt in self.values] + if not isinstance(self.not_values, list): + self.not_values = [self.not_values, ] + self.not_values = [val_or_func(self.key, elt, project_funcs=project_funcs) for elt in self.not_values] + if self.value_to_check is False or self.check_to_perform is False or len(self.reference_values) == 0: + logger.error("For condition %s, 'value_to_check', 'check_to_perform' and 'reference_values' must be " + "specified" % self.key) + raise ValueError("For condition %s, 'value_to_check', 'check_to_perform' and 'reference_values' must be " + "specified" % self.key) + elif self.check_to_perform not in ["eq", "neq", "match", "nmatch"]: + logger.error("For condition %s, 'check_to_perform' values must be among 'eq', 'neq', 'match', 'nmatch'" % self.key) + raise ValueError("For condition %s, 'check_to_perform' values must be among 'eq', 'neq', 'match', 'nmatch'" % self.key) + + @classmethod + def from_dict(cls, key, kwargs, additional_keys=False, project_funcs=None): + logger = get_logger() + attrs = copy.deepcopy(kwargs) + for (keyword, val) in attrs.items(): + if keyword in ["type", ] and val not in ["condition", ]: + logger.error("Attribute '%s' of ConditionSettings %s must be 'func' not %s" % (keyword, key, val)) + raise ValueError("Attribute '%s' of ConditionSettings %s must be 'func' not %s" % (keyword, key, val)) + elif keyword in ["values", "value_to_check", "reference_values"]: + if isinstance(val, list): + for (i, subval) in enumerate(val): + attrs[keyword][i] = val_or_func(keyword, subval, project_funcs=project_funcs) + else: + attrs[keyword] = val_or_func(keyword, val, project_funcs=project_funcs) + attrs["key"] = key + return cls(project_funcs=project_funcs, **attrs) def dump_doc(self, force_void=False): rep = list() rep.append(" Condition:") rep.append(" ") fmt = " %s" - output_keys = ["check_value", "check_to_do", "reference_values"] + output_keys = ["value_to_check", "check_to_perform", "reference_values"] + if len(self.values) > 0: + output_keys.append("values") for key in output_keys: value = self.__getattribute__(key) value = self.dump_doc_inner(value, force_void=force_void) @@ -676,82 +1241,69 @@ def dump_doc(self, force_void=False): rep.append(fmt % "") return rep - def check(self, common_dict=dict(), internal_dict=dict(), additional_dict=dict(), allow_additional_keytypes=True): + def __call__(self, init_dict=dict(), internal_dict=dict(), common_dict=dict(), additional_dict=dict(), + allow_additional_keytypes=False, project_funcs=None, common_tag=dict(), **attrs): + relevant, test = self.check(common_dict=common_dict, internal_dict=internal_dict, init_dict=init_dict, + additional_dict=additional_dict, allow_additional_keytypes=True, + project_funcs=project_funcs, common_tag=common_tag, **attrs) + if not relevant: + return relevant, None + elif test: + if len(self.values) == 0: + return relevant and test, None + else: + test = False + i = 0 + while i < len(self.values) and not test: + test, val = return_value(self.values[i], common_dict=common_dict, internal_dict=internal_dict, + additional_dict=additional_dict, init_dict=init_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag, **attrs) + i += 1 + return relevant and test, val + else: + if len(self.not_values) == 0: + return relevant and test, None + else: + test = False + i = 0 + while i < len(self.not_values) and not test: + test, val = return_value(self.not_values[i], common_dict=common_dict, internal_dict=internal_dict, + additional_dict=additional_dict, init_dict=init_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag, **attrs) + i += 1 + return relevant and test, val + + def check(self, common_dict=dict(), internal_dict=dict(), additional_dict=dict(), allow_additional_keytypes=True, + init_dict=dict(), project_funcs=None, common_tag=dict(), **attrs): test = False - relevant, check_value = return_value(self.check_value, common_dict=common_dict, internal_dict=internal_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + relevant, check_value = return_value(self.value_to_check, common_dict=common_dict, internal_dict=internal_dict, + additional_dict=additional_dict, init_dict=init_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag, **attrs) if relevant: if isinstance(check_value, list) and len(check_value) == 1: check_value = check_value[0] reference_values = [return_value(reference_value, common_dict=common_dict, internal_dict=internal_dict, - additional_dict=additional_dict, - allow_additional_keytypes=allow_additional_keytypes) + additional_dict=additional_dict, init_dict=init_dict, + allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_tag=common_tag, **attrs) for reference_value in self.reference_values] relevant = all([elt[0] for elt in reference_values]) if relevant: reference_values = [elt[1] for elt in reference_values] - if self.check_to_do in ["eq", ]: + if self.check_to_perform in ["eq", ]: test = check_value in reference_values - elif self.check_to_do in ["neq", ]: + elif self.check_to_perform in ["neq", ]: test = check_value not in reference_values - elif self.check_to_do in ["match", ]: + elif self.check_to_perform in ["match", ]: test = all([re.compile(val).match(str(check_value)) is not None for val in reference_values]) - elif self.check_to_do in ["nmatch", ]: + elif self.check_to_perform in ["nmatch", ]: test = not(any([re.compile(val).match(str(check_value)) is not None for val in reference_values])) else: - ValueError("Conditions can have 'eq' or 'neq' as operator, found: %s" % self.check_to_do) - elif len(self.reference_values) == 0 and self.check_to_do in ["eq", ]: + ValueError("Conditions can have 'eq', 'neq', 'match' or 'nmatch' as operator, found: %s" % self.check_to_perform) + elif len(self.reference_values) == 0 and self.check_to_perform in ["eq", ]: test = True relevant = True return relevant, test - - -class CaseSettings(Settings): - - def __init__(self, conditions, value): - if not isinstance(conditions, list): - conditions = [conditions, ] - self.conditions = conditions - self.value = value - - def dump_doc(self, force_void=False): - rep = list() - rep.append(" Case:") - rep.append(" ") - fmt = " %s" - output_keys = ["conditions", "value"] - for key in output_keys: - value = self.__getattribute__(key) - value = self.dump_doc_inner(value, force_void=force_void, format_struct=key not in ["conditions", ]) - add = False - key = key.replace("_", " ") - if len(value) == 1: - value = "%s" % value[0] - value = value.strip() - if len(value) > 0: - rep.append(fmt % ("%s: %s" % (key, value))) - add = True - elif len(value) > 1: - rep.append(fmt % ("%s:" % key)) - rep.extend(" " + fmt % elt for elt in value) - add = True - if add: - rep.append(fmt % "") - return rep - - def check(self, common_dict=dict(), internal_dict=dict(), additional_dict=dict(), allow_additional_keytypes=True): - test, value = return_value(self.value, common_dict=common_dict, additional_dict=additional_dict, - internal_dict=internal_dict, allow_additional_keytypes=allow_additional_keytypes) - if test: - check_conditions = [elt.check(common_dict=common_dict, additional_dict=additional_dict, - internal_dict=internal_dict, - allow_additional_keytypes=allow_additional_keytypes) - if isinstance(elt, ConditionSettings) else (True, elt) - for elt in self.conditions] - test = all([elt[0] for elt in check_conditions]) - if test: - check_conditions = [elt[1] for elt in check_conditions] - test = all(check_conditions) - return test, value - diff --git a/dr2xml/settings_interface/__init__.py b/dr2xml/settings_interface/__init__.py index e4fb471d..2fa43e14 100644 --- a/dr2xml/settings_interface/__init__.py +++ b/dr2xml/settings_interface/__init__.py @@ -13,41 +13,53 @@ from dr2xml.utils import Dr2xmlError from utilities.logger import get_logger -# Internal settings for dr2xml +# Init settings for dr2xml (values required to start configuring the software) +init_settings = None +# Internal settings for dr2xml (values required to use the software) internal_settings = None -# Common settings +# Common settings (values required for projects) common_settings = None -# Project settings +# Project settings (definition of project requirement) project_settings = None +# Project functions +project_funcs = None # Internal values used everywhere in dr2xml internal_values = None def initialize_settings(lset=None, sset=None, force_reset=False, **kwargs): - global internal_settings, common_settings, project_settings + global init_settings, internal_settings, common_settings, project_settings, project_funcs # Initialize settings and internal values initialize_internal_values(force_reset=force_reset) if force_reset: + init_settings = None internal_settings = None common_settings = None project_settings = None + project_funcs = None # Initialize python settings dictionaries from .py_settings_interface import initialize_dict initialize_dict(new_lset=lset, new_sset=sset) # Read, merge and format complete settings linked to project - from .py_project_interface import initialize_project_settings, solve_values, solve_settings - internal_settings, common_settings, project_settings = initialize_project_settings(kwargs["dirname"]) + from .py_project_interface import initialize_project_settings, solve_values + init_settings, internal_settings, common_settings, project_settings, project_funcs = initialize_project_settings(kwargs["dirname"]) # Solve internal settings - internal_settings = solve_values("internal", internal_dict=internal_settings, additional_dict=kwargs, - allow_additional_keytypes=False) + init_settings = solve_values("init", init_dict=init_settings, additional_dict=kwargs, + allow_additional_keytypes=False) + # Initialize vocabulary + from dr2xml.vocabulary import load_vocabulary + load_vocabulary() from dr2xml.dr_interface import load_correct_dr load_correct_dr() # Initialize laboratory sources from dr2xml.laboratories import initialize_laboratory_settings initialize_laboratory_settings() + # Solve not initial internal settings + internal_settings = solve_values("internal", init_dict=init_settings, internal_dict=internal_settings, + additional_dict=kwargs, project_funcs=project_funcs) # Solve common settings - common_settings = solve_values("common", common_dict=common_settings, internal_dict=internal_settings, - additional_dict=kwargs) + common_settings = solve_values("common", init_dict=init_settings, common_dict=common_settings, + internal_dict=internal_settings, additional_dict=kwargs, project_funcs=project_funcs) def initialize_internal_values(force_reset=False): @@ -90,34 +102,39 @@ def get_settings_values(*args, **kwargs): else: args = list() logger = get_logger() - if setting in ["internal", ]: - settings = internal_settings - elif setting in ["common", ]: - settings = common_settings - elif setting in ["project", ]: - settings = project_settings - elif setting in ["internal_values", ]: - settings = internal_values + if setting in ["project_funcs", ]: + return project_funcs else: - logger.error("Unknown settings %s" % setting) - raise ValueError("Unknown settings %s" % setting) - test = True - i = 0 - while test and i < len(args): - if args[i] in settings: - settings = settings[args[i]] - i += 1 + if setting in ["init", ]: + settings = init_settings + elif setting in ["internal", ]: + settings = internal_settings + elif setting in ["common", ]: + settings = common_settings + elif setting in ["project", ]: + settings = project_settings + elif setting in ["internal_values", ]: + settings = internal_values else: - test = False - if test and must_copy: - return copy.deepcopy(settings) - elif test: - return settings - elif not is_default: - logger.error("Could not find a proper value: %s not in %s" % (args[i], settings)) - raise ValueError("Could not find a proper value: %s not in %s" % (args[i], settings)) - else: - return default + logger.error("Unknown settings %s" % setting) + raise ValueError("Unknown settings %s" % setting) + test = True + i = 0 + while test and i < len(args): + if args[i] in settings: + settings = settings[args[i]] + i += 1 + else: + test = False + if test and must_copy: + return copy.deepcopy(settings) + elif test: + return settings + elif not is_default: + logger.error("Could not find a proper value: %s not in %s" % (args[i], settings)) + raise ValueError("Could not find a proper value: %s not in %s" % (args[i], settings)) + else: + return default def get_values_from_internal_settings(*args, **kwargs): diff --git a/dr2xml/settings_interface/py_project_interface.py b/dr2xml/settings_interface/py_project_interface.py index ada81070..0403ac55 100644 --- a/dr2xml/settings_interface/py_project_interface.py +++ b/dr2xml/settings_interface/py_project_interface.py @@ -6,38 +6,64 @@ """ from __future__ import print_function, division, absolute_import, unicode_literals +import copy import os -from importlib.machinery import SourceFileLoader +import six +from utilities.json_tools import write_json_content, read_json_content +from utilities.logger import get_logger from .py_settings_interface import get_variable_from_lset_with_default_in_lset, get_variable_from_lset_with_default, \ get_variable_from_lset_without_default -from dr2xml.projects.projects_interface_definitions import ParameterSettings +from dr2xml.projects.projects_interface_definitions import ParameterSettings, TagSettings def initialize_project_settings(dirname, doc_writer=False): # Read content from json file project_filename = get_variable_from_lset_with_default_in_lset(key="project_settings", key_default="project", default="CMIP6") + config = read_json_content(os.sep.join([os.path.dirname(os.path.abspath(__file__)), "..", "projects", + "projects_default_settings.json"])) # Merge with parent if needed - project_filename, internal_values, common_values, project_settings = merge_project_settings(project_filename) + _, project_content = merge_project_settings(project_filename, config=config) # Complete and clean project settings - project_settings = solve_settings(project_settings) + project_content = solve_settings(project_content, config=config) # If asked, save the settings into a dedicated file save_project_settings = get_variable_from_lset_with_default("save_project_settings", None) if save_project_settings is not None: - write_project_content(save_project_settings, internal_values, common_values, project_settings, dirname) + if not save_project_settings.endswith(".json"): + save_project_settings += ".json" + if len(os.path.dirname(save_project_settings)) == 0: + save_project_settings = os.path.sep.join([dirname, save_project_settings]) + write_json_content(save_project_settings, project_content) + # Transform json dictionary into settings objects + init_values = turn_dict_to_settings("init", project_content["init"], + project_funcs=project_content["functions_file"]) + internal_values = turn_dict_to_settings("internal", project_content["internal"], + project_funcs=project_content["functions_file"]) + common_values = turn_dict_to_settings("common", project_content["common"], + project_funcs=project_content["functions_file"]) + project_settings = turn_dict_to_settings("project", project_content["project_settings"], + project_funcs=project_content["functions_file"]) + # Write documentations if doc_writer: - write_project_documentation(internal_values, common_values, project_settings, dirname, + write_project_documentation(init_values, internal_values, common_values, project_settings, dirname, get_variable_from_lset_without_default("project")) - return internal_values, common_values, project_settings + return init_values, internal_values, common_values, project_settings, project_content["functions_file"] -def write_project_documentation(internal_values, common_values, project_settings, dirname, project): +def write_project_documentation(init_values, internal_values, common_values, project_settings, dirname, project): target_filename = os.sep.join([dirname, project + ".rst"]) content = list() content.append("Parameters available for project %s" % project) content.append("=" * len(content[0])) content.append("") + content.append("Init values") + content.append("---------------") + content.append(".. glossary::") + content.append(" :sorted:") + content.append(" ") + for value in sorted(list(init_values)): + content.extend(init_values[value].dump_doc()) content.append("Internal values") content.append("---------------") content.append(".. glossary::") @@ -63,106 +89,170 @@ def write_project_documentation(internal_values, common_values, project_settings fic.write(os.linesep.join(content)) -def write_project_content(target, internal_values, common_values, project_settings, dirname): - with open(os.sep.join([dirname, target]), "w") as target_fic: - target_fic.write(os.linesep.join([ - "from dr2xml.projects.projects_interface_definitions import *", - "internal_values = %s" % internal_values, - "common_values = %s" % common_values, - "project_settings = %s" % project_settings])) - - -def merge_project_settings(project_filename): +def merge_project_settings(project_filename, config): # Initialize settings from current filename - project_filename, parent_project_filename, internal_values, common_values, project_settings = \ - read_project_settings(filename=project_filename) + project_filename, project_content = read_project_settings(filename=project_filename) + parent_project_filename = project_content.get("parent_project_settings") if parent_project_filename is not None: # Merge parent settings - parent_project_filename, parent_internal_values, parent_common_values, parent_project_settings = \ - merge_project_settings(project_filename=parent_project_filename) + parent_project_filename, parent_content = merge_project_settings(project_filename=parent_project_filename, + config=config) if project_filename != parent_project_filename: - internal_values = update_settings(internal_values, parent_internal_values) - common_values = update_settings(common_values, parent_common_values) - project_settings = update_settings(project_settings, parent_project_settings) + new_content = copy.deepcopy(parent_content) + for (element, value) in project_content.items(): + if element in ["parent_project_settings", ]: + pass + elif element in ["functions_file", ]: + new_content[element] = value + elif element in ["init", "internal", "common"]: + for (subelt, subval) in value.items(): + if subelt not in new_content[element]: + new_content[element][subelt] = dict() + new_content[element][subelt].update(subval) + else: + for (subelt, subval) in value.items(): + if subelt not in new_content[element]: + new_content[element][subelt] = dict() + for (subsubelt, subsubval) in subval.items(): + if subsubelt in ["help", ] or subsubelt.endswith("list"): + new_content[element][subelt][subsubelt] = subsubval + else: + if subsubelt not in new_content[element][subelt]: + new_content[element][subelt][subsubelt] = dict() + for (subsubsubelt, subsubsubval) in subsubval.items(): + if subsubsubelt not in new_content[element][subelt][subsubelt]: + new_content[element][subelt][subsubelt][subsubsubelt] = dict() + new_content[element][subelt][subsubelt][subsubsubelt].update(subsubsubval) + project_content = new_content else: raise ValueError("The settings %s reference itself as parent settings. Stop" % project_filename) - return project_filename, internal_values, common_values, project_settings - - -def update_settings(current_settings, parent_settings): - for value in current_settings: - if value in parent_settings: - parent_settings[value].update(current_settings[value]) - else: - parent_settings[value] = current_settings[value] - return parent_settings + for element in config: + default = copy.deepcopy(config[element]["default"]) + if element not in project_content: + project_content[element] = copy.deepcopy(default) + if project_content["functions_file"] is not None: + if not os.path.isfile(project_content["functions_file"]): + project_content["functions_file"] = os.sep.join([os.path.dirname(os.path.abspath(__file__)), "..", "projects", project_content["functions_file"]]) + return project_filename, project_content def read_project_settings(filename): if not os.path.isfile(filename): - filename = os.sep.join([os.path.dirname(os.path.abspath(__file__)), "..", "projects", - "{}.py".format(filename)]) - file_module = SourceFileLoader(os.path.basename(filename), filename).load_module(os.path.basename(filename)) - if "parent_project_settings" in file_module.__dict__: - parent_project_filename = file_module.__getattribute__("parent_project_settings") - else: - parent_project_filename = None - if "internal_values" in file_module.__dict__: - internal_values = file_module.__getattribute__("internal_values") - else: - internal_values = dict() - if "common_values" in file_module.__dict__: - common_values = file_module.__getattribute__("common_values") - else: - common_values = dict() - if "project_settings" in file_module.__dict__: - project_settings = file_module.__getattribute__("project_settings") - else: - project_settings = dict() - return filename, parent_project_filename, internal_values, common_values, project_settings + filename = os.sep.join([os.path.dirname(os.path.abspath(__file__)), "..", "projects", filename]) + if not filename.endswith(".json"): + filename += ".json" + content = read_json_content(filename) + return filename, content -def solve_values(values, internal_dict=dict(), common_dict=dict(), additional_dict=dict(), - allow_additional_keytypes=True): - if values in ["internal", ]: - args_dict = dict(common_dict=common_dict, additional_dict=additional_dict, raise_on_error=False, - allow_additional_keytypes=allow_additional_keytypes) + +def solve_settings(content, config): + for element in config: + default_config = copy.deepcopy(config[element].get("default_config", dict())) + default_constraints = copy.deepcopy(config[element].get("default_constraint", dict())) + + if element in ["init", "internal", "common", "project_settings"]: + for (content_elt, content_value) in content[element].items(): + new_content_value = copy.deepcopy(default_config) + new_content_value.update(content_value) + content[element][content_elt] = new_content_value + + if element in ["project_settings", ]: + for (content_elt, content_value) in content[element].items(): + for key in ["attrs_constraints", "comments_constraints", "vars_constraints", "common_constraints"]: + if key in content_value: + for (subkey, subval) in content_value[key].items(): + new_subval = copy.deepcopy(default_constraints) + new_subval.update(subval) + content_value[key][subkey] = new_subval + else: + content_value[key] = dict() + + for key in ["attrs", "comments", "vars", "common"]: + list_expected_keywords = copy.deepcopy(content_value[key + "_list"]) + list_current_keywords = copy.deepcopy(list(content_value[key + "_constraints"])) + for keyword in sorted(list(set(list_current_keywords) - set(list_expected_keywords))): + del content_value[key + "_constraints"][keyword] + for keyword in sorted(list(set(list_expected_keywords) - set(list_current_keywords))): + content_value[key + "_constraints"][keyword] = default_constraints + + content[element][content_elt] = content_value + + return content + + +def solve_values(values, init_dict=dict(), internal_dict=dict(), common_dict=dict(), additional_dict=dict(), + allow_additional_keytypes=True, project_funcs=None, common_tag_dict=dict()): + if values in ["init", ]: + args_dict = dict(internal_dict=internal_dict, common_dict=common_dict, additional_dict=additional_dict, + raise_on_error=False, allow_additional_keytypes=allow_additional_keytypes) + dict_name = "init_dict" + current_dict = init_dict + elif values in ["internal", ]: + args_dict = dict(init_dict=init_dict, common_dict=common_dict, additional_dict=additional_dict, + raise_on_error=False, allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs) dict_name = "internal_dict" current_dict = internal_dict elif values in ["common", ]: - args_dict = dict(internal_dict=internal_dict, additional_dict=additional_dict, raise_on_error=False, - allow_additional_keytypes=allow_additional_keytypes) + args_dict = dict(init_dict=init_dict, internal_dict=internal_dict, additional_dict=additional_dict, + raise_on_error=False, allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs) dict_name = "common_dict" current_dict = common_dict + elif values in ["common_tag", ]: + args_dict = dict(init_dict=init_dict, internal_dict=internal_dict, additional_dict=additional_dict, + raise_on_error=False, allow_additional_keytypes=allow_additional_keytypes, + project_funcs=project_funcs, common_dict=common_dict) + dict_name = "common_tag" + current_dict = common_tag_dict else: raise ValueError("Could not solve values for setting %s" % values) rep = dict() + items_to_treat = sorted(list(current_dict)) + test = True while len(items_to_treat) > 0 and test: + resolved_items = list() for item in items_to_treat: val = current_dict[item] if isinstance(val, ParameterSettings): found, value = val.find_value(**{dict_name: rep}, **args_dict) if found: + if isinstance(value, six.string_types) and "__package-root__" in value: + value = value.replace("__package-root__", os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) rep[item] = value del current_dict[item] + resolved_items.append(item) else: raise TypeError("Can only treat ParameterSettings type objects, not %s." % type(val)) - test = len(current_dict) < len(items_to_treat) - items_to_treat = sorted(list(current_dict)) + test = len(resolved_items) > 0 + items_to_treat = sorted(list(set(items_to_treat) - set(resolved_items))) if not test: + not_to_solve_items = list() for item in items_to_treat: if not current_dict[item].fatal: del current_dict[item] - items_to_treat = sorted(list(current_dict)) + not_to_solve_items.append(item) + items_to_treat = sorted(list(set(items_to_treat) - set(not_to_solve_items))) test = len(items_to_treat) == 0 + if not test: raise ValueError("Could not evaluate all %s values: the following are missing %s" % (values, items_to_treat)) return rep -def solve_settings(settings): - for tag in settings: - settings[tag].complete_and_clean() - return settings +def turn_dict_to_settings(settings_type, settings, project_funcs=None): + logger = get_logger() + rep = dict() + if settings_type in ["init", "internal", "common"]: + for (key, val) in settings.items(): + rep[key] = ParameterSettings.from_dict(key, val, additional_keys=False, project_funcs=project_funcs) + elif settings_type in ["project", ]: + for (key, val) in settings.items(): + rep[key] = TagSettings.from_dict(key, val, project_funcs=project_funcs) + else: + logger.error("Unknown settings type %s" % settings_type) + raise ValueError("Unknown settings type %s" % settings_type) + return rep \ No newline at end of file diff --git a/dr2xml/utils.py b/dr2xml/utils.py index 5e2e731d..2eeaa294 100644 --- a/dr2xml/utils.py +++ b/dr2xml/utils.py @@ -104,6 +104,10 @@ def is_elt_applicable(elt, attribute=None, included=None, excluded=None): else: attr = elt test = True + if included is not None and not isinstance(included, list): + included = [included, ] + if excluded is not None and not isinstance(excluded, list): + excluded = [excluded, ] if test and excluded is not None and len(excluded) > 0 and attr in excluded: test = False if test and included is not None and len(included) > 0 and attr not in included: diff --git a/dr2xml/vars_interface/cmor.py b/dr2xml/vars_interface/cmor.py index e61d0b85..7fb50457 100644 --- a/dr2xml/vars_interface/cmor.py +++ b/dr2xml/vars_interface/cmor.py @@ -47,14 +47,14 @@ def check_cmor_variable(home_var, mip_vars_list, hv_info): return None -def get_cmor_var(label, table): +def get_cmor_var(**kwargs): """ Returns CMOR variable for a given label in a given table (could be optimized using inverse index) """ data_request = get_dr_object("get_data_request") cmvar = [cmvar for cmvar in data_request.get_list_by_id("CMORvar", elt_type="variable") - if cmvar.mipTable == table and cmvar.label == label] + if all([cmvar.__getattribute__(key) == val for key, val in kwargs.items()])] if len(cmvar) > 0: return cmvar[0] else: @@ -92,29 +92,20 @@ def ping_alias(svar, error_on_fail=False): return alias_ping -def get_simplevar(label, table, freq=None): +def get_simplevar(label, reference_var): """ Returns 'simplified variable' for a given CMORvar label and table """ svar = get_dr_object("SimpleCMORVar") - psvar = get_cmor_var(label, table) + psvar = get_cmor_var(label=label, mipTable=reference_var.mipTable) # # Try to get a var for 'ps' when table is only in Home DR - if psvar is None and label in ["ps", ] and freq is not None: + if psvar is None and label in ["ps", ] and reference_var.frequency is not None: # print "\tSearching for alternate ps " - if freq in ["3h", "3hr", "3hrPt"]: - psvar = get_cmor_var('ps', 'E3hrPt') - elif freq in ["6h", "6hr"]: - psvar = get_cmor_var('ps', '6hrLev') - elif freq in ["day", ]: - psvar = get_cmor_var('ps', 'CFday') - elif freq in ["mon", "1mo"]: - psvar = get_cmor_var('ps', 'Emon') - elif freq in ["subhr", ]: - if table in ["CFsubhr", ]: - psvar = get_cmor_var('ps', 'CFsubhr') - else: - psvar = get_cmor_var('ps', 'Esubhr') + dr = get_dr_object("get_data_request") + psvar_dict = dr.get_ps_data(reference_var) + if psvar_dict is not None: + psvar = get_cmor_var(**psvar_dict) if psvar: complement_svar_using_cmorvar(svar, psvar, []) return svar diff --git a/dr2xml/vars_interface/extra.py b/dr2xml/vars_interface/extra.py index 0647d5be..4ba3df19 100644 --- a/dr2xml/vars_interface/extra.py +++ b/dr2xml/vars_interface/extra.py @@ -7,6 +7,7 @@ from __future__ import print_function, division, absolute_import, unicode_literals +import copy import os from collections import OrderedDict, defaultdict @@ -99,13 +100,14 @@ def read_extra_table(path, table): else: tdata = read_json_content(json_table) for k, v in tdata["variable_entry"].items(): + v = copy.deepcopy(v) new_plev_suffix = None if "frequency" in v: freq = v["frequency"] else: freq = guess_freq_from_table_name(tbl) - extra_var = get_dr_object("SimpleCMORVar").get_from_extra(input_var=v, mip_era=mip_era, freq=freq, - table=tbl) + extra_var = get_dr_object("SimpleCMORVar").get_from_extra(input_var=v, mip_era=mip_era, + freq=freq, table=tbl) dims = v["dimensions"].split(" ") # get the index of time dimension to supress, if any dr_dims = list() diff --git a/dr2xml/vars_interface/generic.py b/dr2xml/vars_interface/generic.py index 1e5ca800..1464d649 100644 --- a/dr2xml/vars_interface/generic.py +++ b/dr2xml/vars_interface/generic.py @@ -209,7 +209,8 @@ def complement_svar_using_cmorvar(svar, cmvar, debug=[]): cm=cmvar.cm, cell_methods=cmvar.cell_methods, cell_measures=cmvar.cell_measures, sdims=cmvar.sdims, other_dims_size=cmvar.other_dims_size, mip_era=cmvar.mip_era, flag_meanings=cmvar.flag_meanings, flag_values=cmvar.flag_values, - modeling_realm=cmvar.modeling_realm, set_modeling_realms=cmvar.set_modeling_realms) + modeling_realm=cmvar.modeling_realm, set_modeling_realms=cmvar.set_modeling_realms, + region=cmvar.region, official_label=cmvar.official_label) area = cellmethod2area(svar.cell_methods) if svar.label in debug: logger.debug("complement_svar ... processing %s, area=%s" % (svar.label, str(area))) diff --git a/dr2xml/vars_interface/generic_data_request.py b/dr2xml/vars_interface/generic_data_request.py index b663f33f..f893927a 100644 --- a/dr2xml/vars_interface/generic_data_request.py +++ b/dr2xml/vars_interface/generic_data_request.py @@ -77,6 +77,7 @@ def select_data_request_CMORvars_for_lab(): cmvar = data_request.get_element_uid(v, elt_type="variable", sn_issues=sn_issues, allow_pseudo=allow_pseudo, mip_list=mips_list) complement_svar_using_cmorvar(svar, cmvar, []) + svar.type = "cmor" svar.Priority = cmvar.Priority svar.grids = d[v] simplified_vars.append(svar) diff --git a/dr2xml/vars_interface/home_data_request.py b/dr2xml/vars_interface/home_data_request.py index db2d60bd..cb4c4450 100644 --- a/dr2xml/vars_interface/home_data_request.py +++ b/dr2xml/vars_interface/home_data_request.py @@ -35,6 +35,7 @@ def read_home_vars_list(hmv_file, expid, mips, path_extra_tables=None): Returns: A list of 'simplified CMOR variables' """ + # TODO Check that variables are read if lower/upper cases used logger = get_logger() # homevars_list = get_config_variable("homevars_list") diff --git a/dr2xml/vars_interface/selection.py b/dr2xml/vars_interface/selection.py index 152c21bf..f345206d 100644 --- a/dr2xml/vars_interface/selection.py +++ b/dr2xml/vars_interface/selection.py @@ -90,7 +90,8 @@ def select_variables_to_be_processed(): "They are in exclusion list"), ("spatial_shp", [None, False], "They have no spatial shape"), ("spatial_shp", internal_dict["excluded_spshapes_lset"], - "They have excluded spatial shape : %s" % svar.spatial_shp)) + "They have excluded spatial shape : %s" % svar.spatial_shp), + ("spatial_shp", internal_dict["excluded_vars_per_shape"].get(svar.spatial_shp, list()), "Label %s is excluded for shape %s" % (svar.label, svar.spatial_shp))) if test: excluded_vars[reason].append((svar.label, svar.mipTable)) else: @@ -109,10 +110,10 @@ def select_variables_to_be_processed(): if context in orphan_variables: orphans = orphan_variables[context] for svar in [svar for svar in mip_vars_list if svar.label in orphans]: - test, reason = check_exclusion(svar, ("label", internal_dict["excluded_vars_lset"], ""), - ("spatial_shp", [None, False], ""), + test, reason = check_exclusion(svar, ("label", internal_dict["excluded_vars_lset"], "They are in exclusion list"), + ("spatial_shp", [None, False], "They have no spatial shape"), ("spatial_shp", internal_dict["excluded_spshapes_lset"], - "")) + "They have excluded spatial shape : %s" % svar.spatial_shp)) if not test: svars_per_table[svar.mipTable].append(svar) # diff --git a/dr2xml/vocabulary/__init__.py b/dr2xml/vocabulary/__init__.py new file mode 100644 index 00000000..4ccfacfb --- /dev/null +++ b/dr2xml/vocabulary/__init__.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +from __future__ import print_function, division, absolute_import, unicode_literals + +from dr2xml.settings_interface import get_settings_values + + +vocab = None + + +def load_vocabulary(): + vocabulary_used = get_settings_values("init", "vocabulary_used") + vocabulary_project = get_settings_values("init", "vocabulary_project") + vocabulary_config = get_settings_values("init", "vocabulary_config") + + if vocabulary_project is not None: + from .esgvoc_configuration import setup_esgvoc_config + setup_esgvoc_config(config_name=vocabulary_used, project=vocabulary_project, config_file=vocabulary_config) + import esgvoc.api as ev + global vocab + vocab = ev + + +def get_vocabulary(): + return vocab \ No newline at end of file diff --git a/dr2xml/vocabulary/esgvoc_configuration.py b/dr2xml/vocabulary/esgvoc_configuration.py new file mode 100644 index 00000000..7d9df77f --- /dev/null +++ b/dr2xml/vocabulary/esgvoc_configuration.py @@ -0,0 +1,49 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +from __future__ import print_function, division, absolute_import, unicode_literals + +import copy +import json +from esgvoc.core import service +from utilities.logger import get_logger + +def get_config_data(config_name, config_file="vocabulary.json"): + logger = get_logger() + with open(config_file) as config_fic: + config_data = json.load(config_fic) + rep = copy.deepcopy(config_data["dr2xml_default"]) + if config_name in config_data: + rep.update(copy.deepcopy(config_data[config_name])) + else: + logger.warning("%s not in config file, use default" % config_name) + return rep + + +def setup_esgvoc_config(config_name, project, config_file="vocabulary.json"): + logger = get_logger() + if config_name is not None: + config_manager = service.get_config_manager() + + # Create minimal configuration with Universe and CMIP7 + config_data = get_config_data(config_name, config_file=config_file) + + # Check if config already exists + if config_name in config_manager.list_configs(): + logger.debug("✅ ESGVoc already configured") + config_manager.remove_config(config_name) + config_manager.add_config(config_name, config_data) + + config_manager.switch_config(config_name) + + # Synchronize CVs + service.current_state = service.get_state() + service.current_state.synchronize_all() + + logger.debug(f"✅ ESGVoc configured with '{config_name}'") + + import esgvoc.api as ev + if project not in ev.get_all_projects(): + logger.error("Could not find project %s in ESGVoc (%s)" % (project, ev.get_all_projects())) + raise ValueError("Could not find project %s in ESGVoc (%s)" % (project, ev.get_all_projects())) + else: + logger.debug("No vocabulary configured.") diff --git a/dr2xml/vocabulary/vocabulary.json b/dr2xml/vocabulary/vocabulary.json new file mode 100644 index 00000000..388b546b --- /dev/null +++ b/dr2xml/vocabulary/vocabulary.json @@ -0,0 +1,48 @@ +{ + "dr2xml_default": { + "universe": { + "github_repo": "https://github.com/WCRP-CMIP/WCRP-universe", + "branch": "esgvoc", + "local_path": "repos/WCRP-universe", + "db_path": "dbs/universe.sqlite", + "offline_mode": true + }, + "projects": [ + { + "project_name": "cmip6", + "github_repo": "https://github.com/WCRP-CMIP/CMIP6_CVs", + "branch": "esgvoc", + "local_path": "repos/CMIP6_CVs", + "db_path": "dbs/CMIP6_CVs.sqlite", + "offline_mode": true + }, + { + "project_name": "cmip7", + "github_repo": "https://github.com/WCRP-CMIP/CMIP7_CVs", + "branch": "esgvoc", + "local_path": "repos/CMIP7_CVs", + "db_path": "dbs/CMIP7_CVs.sqlite", + "offline_mode": true + } + ] + }, + "CMIP7_test": { + "universe": { + "github_repo": "https://github.com/WCRP-CMIP/WCRP-universe", + "branch": "esgvoc_dr_1.2.2", + "local_path": "repos/CMIP7_test_WCRP-universe", + "db_path": "dbs/CMIP7_test_universe.sqlite", + "offline_mode": true + }, + "projects": [ + { + "project_name": "cmip7_test", + "github_repo": "https://github.com/WCRP-CMIP/CMIP7_CVs", + "branch": "esgvoc_dr_1.2.2", + "local_path": "repos/CMIP7_test_CVs", + "db_path": "dbs/CMIP7_test_CVs.sqlite", + "offline_mode": true + } + ] + } +} \ No newline at end of file diff --git a/dr2xml/xml_interface.py b/dr2xml/xml_interface.py index 082b0e9e..1c7c27a3 100644 --- a/dr2xml/xml_interface.py +++ b/dr2xml/xml_interface.py @@ -13,6 +13,7 @@ import xml_writer from .settings_interface import get_settings_values +from .settings_interface.py_project_interface import solve_values from .utils import reduce_and_strip from utilities.encoding_tools import decode_if_needed @@ -31,36 +32,46 @@ def __init__(self, tag, **kwargs): text = kwargs.pop("text") else: text = None + init_dict = get_settings_values("init") + common_dict = get_settings_values("common") + internal_dict = get_settings_values("internal") tag_settings = get_settings_values("project", default_tag, must_copy=True) + common_list = tag_settings.common_list + common_constraints = tag_settings.common_constraints + common_constraints = solve_values("common_tag", init_dict=init_dict, internal_dict=internal_dict, + common_dict=common_dict, additional_dict=kwargs, + common_tag_dict=common_constraints, + project_funcs=get_settings_values("project_funcs")) attrs_list = tag_settings.attrs_list attrs_constraints = tag_settings.attrs_constraints attrib = OrderedDict() - common_dict = get_settings_values("common") - internal_dict = get_settings_values("internal") for key in attrs_list: - test, value = attrs_constraints[key].find_value(is_value=key in kwargs, value=kwargs.get(key), - common_dict=common_dict, internal_dict=internal_dict, - additional_dict=kwargs) + test, value = attrs_constraints[key].find_value(common_dict=common_dict, internal_dict=internal_dict, + additional_dict=kwargs, init_dict=init_dict, + common_tag=common_constraints) output_key = attrs_constraints[key].output_key + if output_key is False: + output_key = key if test: attrib[output_key] = value super(DR2XMLElement, self).__init__(tag=tag, text=text, attrib=attrib) comments_list = tag_settings.comments_list comments_constraints = tag_settings.comments_constraints for comment in comments_list: - test, value = comments_constraints[comment].find_value(is_value=comment in kwargs, - value=kwargs.get(comment), - common_dict=common_dict, internal_dict=internal_dict, - additional_dict=kwargs) + test, value = comments_constraints[comment].find_value(common_dict=common_dict, internal_dict=internal_dict, + additional_dict=kwargs, init_dict=init_dict, + common_tag=common_constraints) if test: self.append(DR2XMLComment(text=value)) vars_list = tag_settings.vars_list vars_constraints = tag_settings.vars_constraints for var in vars_list: - test, value = vars_constraints[var].find_value(is_value=var in kwargs, value=kwargs.get(var), - common_dict=common_dict, internal_dict=internal_dict, - additional_dict=kwargs) + test, value = vars_constraints[var].find_value(common_dict=common_dict, internal_dict=internal_dict, + additional_dict=kwargs, init_dict=init_dict, + common_tag=common_constraints) output_key = vars_constraints[var].output_key + if output_key is False: + output_key = var num_type = vars_constraints[var].num_type if test: self.append(wrv(output_key, value, num_type)) diff --git a/launch_tests.sh b/launch_tests.sh new file mode 100755 index 00000000..f6a703b6 --- /dev/null +++ b/launch_tests.sh @@ -0,0 +1,70 @@ +#!/usr/bin/env bash +# -*- coding: utf-8 -*- + +export TIME="real %E\nuser %U\nsys %S" + +log_file="launch_tests.log" +echo "Launch test $(date)" > ${log_file} +echo "********************" >> ${log_file} +echo "********************" >> ${log_file} +out_code_sum=0 + +function test_function(){ + local test_to_perform=$1 + local log_out="tests/${test_to_perform}.out" + local log_err="tests/${test_to_perform}.err" + echo "Test tests/${test_to_perform}" >> ${log_file} + # /usr/bin/time -a -o ${log_file} python3 -m unittest tests/${test_to_perform} >${log_out} 2>${log_err} + python3 -m unittest tests/${test_to_perform} >${log_out} 2>${log_err} + local out_code=$? + echo "Output ${out_code}" >> ${log_file} + if [ ${out_code} -ne 0 ]; then + cat ${log_err} >>${log_file} + fi + rm -f ${log_out} ${log_err} + echo "********************" >> ${log_file} + out_code_sum=$((${out_code_sum}+${out_code})) +} + +function test_script(){ + local script_to_launch=$1 + local options_of_script=$2 + local log_out="scripts/${script_to_launch}.out" + local log_err="scripts/${script_to_launch}.err" + echo "Test scripts/${script_to_launch} ${options_of_script}" >> ${log_file} + # /usr/bin/time -a -o ${log_file} python3 scripts/${script_to_launch} ${options_of_script} >${log_out} 2>${log_err} + python3 scripts/${script_to_launch} ${options_of_script} >${log_out} 2>${log_err} + local out_code=$? + echo "Output ${out_code}" >> ${log_file} + if [ ${out_code} -ne 0 ]; then + cat ${log_err} >>${log_file} + fi + rm -f ${log_out} ${log_err} + echo "********************" >> ${log_file} + out_code_sum=$((${out_code_sum}+${out_code})) +} + +for f in $(cd tests; ls test*.py); do + test_function $f +done + +for f in $(cd tests; ls test*/__init__.py); do + test_function $f +done + +test_script "create_docs_projects.py" "--target_directory=test" + +test_script "check_outputs_produced.py" "--out=test tests/xml_outputs/dr2xml_trip.xml --ioxdir=tests/xml_outputs/outputs --fatal=0" + +test_script "check_outputs_produced.py" "--out=test tests/xml_outputs/dr2xml_trip.xml --ioxdir=tests/xml_outputs/outputs2" + +test_script "find_netcdf_names_from_xml_files.py" "--out=test tests/xml_outputs/dr2xml_trip.xml" + +test_script "create_ping_files.py" "--lab=cnrm --out=test" + +echo "Out code sum: ${out_code_sum}" >> ${log_file} + +cat ${log_file} +rm -f ${log_file} + +exit ${out_code_sum} \ No newline at end of file diff --git a/launch_tests_with_coverage.sh b/launch_tests_with_coverage.sh index 00254c9c..e3ceb449 100755 --- a/launch_tests_with_coverage.sh +++ b/launch_tests_with_coverage.sh @@ -5,14 +5,17 @@ set -e coverage erase -coverage run +for f in $(cd tests; ls *.py); do + coverage run --parallel-mode tests/$f; +done +for f in $(cd tests; ls */__init__.py); do + coverage run --parallel-mode tests/$f; +done coverage run --parallel-mode scripts/create_docs_projects.py --target_directory=test coverage run --parallel-mode scripts/check_outputs_produced.py --out=test tests/xml_outputs/dr2xml_trip.xml --ioxdir=tests/xml_outputs/outputs --fatal=0 coverage run --parallel-mode scripts/check_outputs_produced.py --out=test tests/xml_outputs/dr2xml_trip.xml --ioxdir=tests/xml_outputs/outputs2 coverage run --parallel-mode scripts/find_netcdf_names_from_xml_files.py --out=test tests/xml_outputs/dr2xml_trip.xml coverage run --parallel-mode scripts/create_ping_files.py --lab=cnrm --out=test -# coverage run --parallel-mode scripts/create_ping_files.py --lab=cerfacs --out=test -# coverage run --parallel-mode scripts/create_ping_files.py --lab=ipsl --out=test coverage combine coverage html diff --git a/requirements.txt b/requirements.txt index 94956504..e613b569 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,4 +8,5 @@ CMIP7_data_request_api coverage xlsxwriter six -importlib \ No newline at end of file +importlib +esgvoc \ No newline at end of file diff --git a/scripts/create_docs_projects.py b/scripts/create_docs_projects.py index 82db56fb..39b95853 100644 --- a/scripts/create_docs_projects.py +++ b/scripts/create_docs_projects.py @@ -28,13 +28,13 @@ def write_documentation(output_directory, package_directory): projects_list = os.listdir(os.sep.join([package_directory, "dr2xml", "projects"])) - projects_list = [elt.replace(".py", "") for elt in projects_list if elt.endswith(".py")] + projects_list = [elt.replace(".json", "") for elt in projects_list if elt.endswith(".json")] projects_list = sorted(projects_list) projects_list.remove("dr2xml") projects_list.insert(0, "dr2xml") projects_list.remove("basics") projects_list.insert(1, "basics") - projects_list.remove("projects_interface_definitions") + projects_list.remove("projects_default_settings") project_target_dir = os.sep.join([output_directory, "projects"]) diff --git a/scripts/new_projects_interface_definitions.py b/scripts/new_projects_interface_definitions.py new file mode 100644 index 00000000..6eb37496 --- /dev/null +++ b/scripts/new_projects_interface_definitions.py @@ -0,0 +1,116 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +Interface to project settings +""" +from __future__ import print_function, division, absolute_import, unicode_literals + +import copy +import os +import re +from collections import OrderedDict + +import six +import argparse +import sys + +sys.path.append(os.path.abspath(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) + +from dr2xml.config import get_config_variable +from dr2xml.settings_interface.py_settings_interface import format_dict_for_printing, is_key_in_lset, \ + get_variable_from_lset_without_default, is_key_in_sset, get_variable_from_sset_without_default +from dr2xml.utils import Dr2xmlError +from utilities.json_tools import read_json_content, write_json_content +from utilities.logger import get_logger + + +parser = argparse.ArgumentParser(description='Interface to project settings') +parser.add_argument("--input", required=True, help="Input json file") +parser.add_argument("--output", required=True, help="Output json file") +parser.add_argument("--config", required=True, help="Config json file") + +args = parser.parse_args() + +config = read_json_content(args.config) +content = read_json_content(args.input) + +# Get information from parent if any +def merge_parent(content, config): + # Create default input if not found + for element in config: + default = copy.deepcopy(config[element]["default"]) + if element not in content: + content[element] = copy.deepcopy(default) + + # Merge content + if content["parent_project_settings"] is not None: + parent_content = content["parent_project_settings"] + if len(os.path.dirname(parent_content)) == 0: + parent_content = os.sep.join([os.path.dirname(os.path.dirname(os.path.abspath(__file__))), "dr2xml", "projects", parent_content]) + parent_content += ".json" + parent_content = read_json_content(parent_content) + parent_content = merge_parent(parent_content, config) + new_content = copy.deepcopy(parent_content) + for (element, value) in content.items(): + if element in ["parent_project_settings", ]: + pass + elif element in ["functions_file", ]: + new_content[element] = value + elif element in ["init", "internal", "common"]: + for (subelt, subval) in value.items(): + if subelt not in new_content[element]: + new_content[element][subelt] = dict() + new_content[element][subelt].update(subval) + else: + for (subelt, subval) in value.items(): + if subelt not in new_content[element]: + new_content[element][subelt] = dict() + for (subsubelt, subsubval) in subval.items(): + if subsubelt in ["help", ] or subsubelt.endswith("list"): + new_content[element][subelt][subsubelt] = subsubval + else: + if subsubelt not in new_content[element][subelt]: + new_content[element][subelt][subsubelt] = dict() + for (subsubsubelt, subsubsubval) in subsubval.items(): + if subsubsubelt not in new_content[element][subelt][subsubelt]: + new_content[element][subelt][subsubelt][subsubsubelt] = dict() + new_content[element][subelt][subsubelt][subsubsubelt].update(subsubsubval) + content = new_content + return content + +content = merge_parent(content, config) + +# Fill default values +for element in config: + default_config = copy.deepcopy(config[element].get("default_config", dict())) + default_constraints = copy.deepcopy(config[element].get("default_constraint", dict())) + + if element in ["init", "internal", "common", "project_settings"]: + for (content_elt, content_value) in content[element].items(): + new_content_value = copy.deepcopy(default_config) + new_content_value.update(content_value) + content[element][content_elt] = new_content_value + + if element in ["project_settings", ]: + for (content_elt, content_value) in content[element].items(): + for key in ["attrs_constraints", "comments_constraints", "vars_constraints"]: + if key in content_value: + for (subkey, subval) in content_value[key].items(): + new_subval = copy.deepcopy(default_constraints) + new_subval.update(subval) + content_value[key][subkey] = new_subval + else: + content_value[key] = dict() + + for key in ["attrs", "comments", "vars"]: + list_expected_keywords = copy.deepcopy(content_value[key + "_list"]) + list_current_keywords = copy.deepcopy(list(content_value[key + "_constraints"])) + for keyword in sorted(list(set(list_current_keywords) - set(list_expected_keywords))): + del content_value[key + "_constraints"][keyword] + for keyword in sorted(list(set(list_expected_keywords) - set(list_current_keywords))): + content_value[key + "_constraints"][keyword] = default_constraints + + content[element][content_elt] = content_value + +write_json_content(args.output, content) diff --git a/sphinx/source/userguide/parameters.rst b/sphinx/source/userguide/parameters.rst index f6f3405a..e469ea1b 100644 --- a/sphinx/source/userguide/parameters.rst +++ b/sphinx/source/userguide/parameters.rst @@ -9,6 +9,7 @@ Parameters available in settings basics project C3S-SF project CMIP6 project + CMIP6_esgvoc project CMIP7 project CORDEX project CORDEX-CMIP6 project diff --git a/sphinx/source/userguide/projects/C3S-SF.rst b/sphinx/source/userguide/projects/C3S-SF.rst index a2ce2bfc..93dba898 100644 --- a/sphinx/source/userguide/projects/C3S-SF.rst +++ b/sphinx/source/userguide/projects/C3S-SF.rst @@ -1,6 +1,144 @@ Parameters available for project C3S-SF ======================================= +Init values +--------------- +.. glossary:: + :sorted: + + data_request_config + + Configuration file of the data request content to be used. + + values: + + - laboratory[data_request_config] + - '__package-root__/dr_interface/CMIP7_config' + + num type: 'string' + + data_request_content_version + + Version of the data request content to be used. + + values: + + - laboratory[data_request_content_version] + - 'latest_stable' + + num type: 'string' + + data_request_path + + Path where the data request API used is placed. + + values: + + - laboratory[data_request_path] + - None + + num type: 'string' + + data_request_used + + The Data Request infrastructure type which should be used. + + values: + + - laboratory[data_request_used] + - 'CMIP6' + + num type: 'string' + + institution_id + + Institution identifier. + + fatal: True + + values: + + - laboratory[institution_id] + + num type: 'string' + + laboratory_used + + File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. + + values: + + - laboratory[laboratory_used] + - None + + num type: 'string' + + project + + Project associated with the simulation. + + values: + + - laboratory[project] + - 'CMIP6' + + num type: 'string' + + project_settings + + Project settings definition file to be used. + + values: + + - laboratory[project_settings] + - init[project] + + num type: 'string' + + save_project_settings + + The path of the file where the complete project settings will be written, if needed. + + values: + + - laboratory[save_project_settings] + - None + + num type: 'string' + + vocabulary_config + + Configuration file of the vocabulary to be used. + + values: + + - laboratory[vocabulary_config] + - '__package-root__/vocabulary/vocabulary.json' + + num type: 'string' + + vocabulary_project + + The vocabulary project which should be used. + + values: + + - laboratory[vocabulary_project] formatted with function from self named lower({}) + - init[project] formatted with function from self named lower({}) + + num type: 'string' + + vocabulary_used + + The vocabulary infrastructure type which should be used. + + values: + + - laboratory[vocabulary_used] + - None + + num type: 'string' + Internal values --------------- .. glossary:: @@ -10,9 +148,7 @@ Internal values CFMIP has an elaborated requirement for defining subhr frequency; by default, dr2xml uses 1 time step. - fatal: False - - default values: + values: - laboratory[CFsubhr_frequency] - '1ts' @@ -23,9 +159,7 @@ Internal values DR01.00.21 does not include Gibraltar strait, which is requested by OMIP. Can include it, if model provides it as last value of array. - fatal: False - - default values: + values: - laboratory[add_Gibraltar] - False @@ -38,9 +172,9 @@ Internal values fatal: True - default values: + values: - - laboratory[additional_allowed_model_components][internal[source_id]] + - laboratory[additional_allowed_components][internal[source_id]] - [] num type: 'string' @@ -49,9 +183,7 @@ Internal values Some scenario experiment in DR 01.00.21 do not request tos on 1 degree grid, while other do. If you use grid_policy=adhoc and had not changed the mapping of function. grids.lab_adhoc_grid_policy to grids.CNRM_grid_policy, next setting can force any tos request to also produce tos on a 1 degree grid. - fatal: False - - default values: + values: - laboratory[adhoc_policy_do_add_1deg_grid_for_tos] - False @@ -62,9 +194,7 @@ Internal values Should we allow for duplicate vars: two vars with same frequency, shape and realm, which differ only by the table. In DR01.00.21, this actually applies to very few fields (ps-Aermon, tas-ImonAnt, areacellg-IfxAnt). - fatal: False - - default values: + values: - laboratory[allow_duplicates] - True @@ -77,7 +207,7 @@ Internal values fatal: True - default values: + values: - laboratory[allow_duplicates_in_same_table] - False @@ -88,9 +218,7 @@ Internal values DR has sn attributes for MIP variables. They can be real,CF-compliant, standard_names or pseudo_standard_names, i.e. not yet approved labels. Default is to use only CF ones. - fatal: False - - default values: + values: - laboratory[allow_pseudo_standard_names] - False @@ -101,9 +229,7 @@ Internal values When using select='no', Xios may enter an endless loop, which is solved if next setting is False. - fatal: False - - default values: + values: - laboratory[allow_tos_3hr_1deg] - True @@ -114,19 +240,17 @@ Internal values In some instances, the experiment start year is not explicit or is doubtful in DR. See file doc/some_experiments_starty_in_DR01.00.21. You should then specify it, using next setting in order that requestItems analysis work in all cases. In some other cases, DR requestItems which apply to the experiment form its start does not cover its whole duration and have a wrong duration (computed based on a wrong start year); They necessitate to fix the start year. - fatal: False - - default values: simulation[branch_year_in_child] + values: + + - simulation[branch_year_in_child] num type: 'string' branching - Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. + Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. - fatal: False - - default values: + values: - laboratory[branching][internal[source_id]] - {} @@ -137,9 +261,7 @@ Internal values If the CMIP6 Controlled Vocabulary doesn't allow all the components you activate, you can set next toggle to True - fatal: False - - default values: + values: - laboratory[bypass_CV_components] - False @@ -150,9 +272,7 @@ Internal values Estimate of number of bytes per floating value, given the chosen :term:`compression_level`. - fatal: False - - default values: + values: - laboratory[bytes_per_float] - 2 @@ -165,7 +285,9 @@ Internal values fatal: True - default values: simulation[configuration] + values: + + - simulation[configuration] num type: 'string' @@ -175,98 +297,68 @@ Internal values fatal: True - default values: dict[context] - - num type: 'string' - - data_request_config - - Configuration file of the data request content to be used - - fatal: False - - default values: - - - laboratory[data_request_config] - - '/home/rigoudyg/dev/DR2XML/dr2xml_source/dr2xml/dr_interface/CMIP7_config' - - num type: 'string' - - data_request_content_version - - Version of the data request content to be used - - fatal: False - - default values: + values: - - laboratory[data_request_content_version] - - 'latest_stable' + - dict[context] num type: 'string' - data_request_path - - Path where the data request API used is placed. + debug_parsing - fatal: False + In order to identify which xml files generates a problem, you can use this flag. - default values: + values: - - laboratory[data_request_path] - - None + - laboratory[debug_parsing] + - False num type: 'string' - data_request_used - - The Data Request infrastructure type which should be used. + dr2xml_manages_enddate - fatal: False + A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. - default values: + values: - - laboratory[data_request_used] - - 'CMIP6' + - laboratory[dr2xml_manages_enddate] + - True num type: 'string' - debug_parsing - - In order to identify which xml files generates a problem, you can use this flag. + end_year - fatal: False + If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value - default values: + values: - - laboratory[debug_parsing] + - simulation[end_year] - False num type: 'string' - dr2xml_manages_enddate + excluded_expgroups_lset - A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. + List of the experiments groups that will be excluded from outputs from laboratory settings. - fatal: True - - default values: + values: - - laboratory[dr2xml_manages_enddate] - - True + - laboratory[excluded_expgroups] + - [] - num type: 'string' + target type: 'list' - end_year + num type: 'string' - If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value + excluded_expgroups_sset - fatal: False + List of the experiments groups that will be excluded from outputs from simulation settings. - default values: + values: - - simulation[end_year] - - False + - simulation[excluded_expgroups] + - [] + + target type: 'list' num type: 'string' @@ -274,169 +366,169 @@ Internal values List of the opportunities that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_opportunities_sset List of the opportunities that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_pairs_lset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_pairs_sset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_request_links List of links un data request that should not been followed (those request are not taken into account). - fatal: False - - default values: + values: - laboratory[excluded_request_links] - [] + target type: 'list' + num type: 'string' excluded_spshapes_lset The list of shapes that should be excluded (all variables in those shapes will be excluded from outputs). - fatal: False - - default values: + values: - laboratory[excluded_spshapes] - [] + target type: 'list' + num type: 'string' excluded_tables_lset List of the tables that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_tables_sset List of the tables that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_vargroups_lset List of the variables groups that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vargroups_sset List of the variables groups that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vars_lset List of CMOR variables to exclude from the result based on previous Data Request extraction from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vars] - [] + target type: 'list' + num type: 'string' excluded_vars_per_config A dictionary which keys are configurations and values the list of variables that must be excluded for each configuration. - fatal: False - - default values: + values: - laboratory[excluded_vars_per_config][internal[configuration]] - [] + target type: 'list' + num type: 'string' excluded_vars_sset List of CMOR variables to exclude from the result based on previous Data Request extraction from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vars] - [] + target type: 'list' + num type: 'string' experiment_for_requests @@ -445,7 +537,7 @@ Internal values fatal: True - default values: + values: - simulation[experiment_for_requests] - internal[experiment_id] @@ -454,11 +546,13 @@ Internal values experiment_id - Root experiment identifier. + Root experiment identifier fatal: True - default values: simulation[experiment_id] + values: + + - simulation[experiment_id] num type: 'string' @@ -466,9 +560,7 @@ Internal values If you want to produce the same variables set for all members, set this parameter to False. - fatal: False - - default values: + values: - simulation[filter_on_realization] - laboratory[filter_on_realization] @@ -480,9 +572,7 @@ Internal values You may provide some variables already horizontally remapped to some grid (i.e. Xios domain) in external files. The varname in file must match the referenced id in pingfile. Tested only for fixed fields. A dictionary with variable id as key and a dictionary as value: the key must be the grid id, the value a dictionary with the file for each resolution. - fatal: False - - default values: + values: - laboratory[fx_from_file] - [] @@ -495,7 +585,9 @@ Internal values fatal: True - default values: laboratory[grid_choice][internal[source_id]] + values: + + - laboratory[grid_choice][internal[source_id]] num type: 'string' @@ -505,7 +597,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_policy] - False @@ -518,7 +610,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_prefix] - internal[ping_variables_prefix] @@ -527,11 +619,13 @@ Internal values grids - Grids : per model resolution and per context :- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)- Xios id for the production grid (if it is not the native grid),- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)- resolution of the production grid (using CMIP6 conventions),- grid description + Grids : per model resolution and per context :\n- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)\n- Xios id for the production grid (if it is not the native grid)\n- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)\n- resolution of the production grid (using CMIP6 conventions)\n- grid description fatal: True - default values: laboratory[grids] + values: + + - laboratory[grids] num type: 'string' @@ -541,7 +635,7 @@ Internal values fatal: True - default values: + values: - laboratory[grids_dev] - {} @@ -552,9 +646,7 @@ Internal values Variables to be grouped in the same output file (provided additional conditions are filled). - fatal: False - - default values: + values: - simulation[grouped_vars_per_file] - laboratory[grouped_vars_per_file] @@ -562,143 +654,146 @@ Internal values num type: 'string' + included_expgroups + + List of experiments groups that will be processed (all others will not). + + values: + + - simulation[included_expgroups] + - internal[included_expgroups_lset] + + target type: 'list' + + num type: 'string' + + included_expgroups_lset + + List of experiments groups that will be processed (all others will not) from laboratory settings. + + values: + + - laboratory[included_expgroups] + - [] + + target type: 'list' + + num type: 'string' + included_opportunities List of opportunities that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_opportunities] - internal[included_opportunities_lset] + target type: 'list' + num type: 'string' included_opportunities_lset List of opportunities that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_opportunities] - [] + target type: 'list' + num type: 'string' included_request_links List of the request links that will be processed (all others will not). - fatal: False - - default values: + values: - laboratory[included_request_links] - [] + target type: 'list' + num type: 'string' included_tables List of tables that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_tables] - internal[included_tables_lset] + target type: 'list' + num type: 'string' included_tables_lset List of tables that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_tables] - [] + target type: 'list' + num type: 'string' included_vargroups List of variables groups that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_vargroups] - internal[included_vargroups_lset] + target type: 'list' + num type: 'string' included_vargroups_lset List of variables groups that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vargroups] - [] + target type: 'list' + num type: 'string' included_vars Variables to be considered from the Data Request (all others will not) - fatal: False - - default values: + values: - simulation[included_vars] - internal[included_vars_lset] + target type: 'list' + num type: 'string' included_vars_lset Variables to be considered from the Data Request (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vars] - [] - num type: 'string' - - institution_id - - Institution identifier. - - fatal: True - - default values: laboratory[institution_id] - - num type: 'string' - - laboratory_used - - File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. - - fatal: False - - default values: - - - laboratory[laboratory_used] - - None + target type: 'list' num type: 'string' @@ -706,9 +801,7 @@ Internal values Full path to the file which contains the list of home variables to be taken into account, in addition to the Data Request. - fatal: False - - default values: + values: - simulation[listof_home_vars] - laboratory[listof_home_vars] @@ -720,9 +813,7 @@ Internal values The maximum size of generated files in number of floating values. - fatal: False - - default values: + values: - laboratory[max_file_size_in_floats] - 500000000.0 @@ -735,7 +826,7 @@ Internal values fatal: True - default values: + values: - simulation[max_priority] - internal[max_priority_lset] @@ -748,7 +839,9 @@ Internal values fatal: True - default values: laboratory[max_priority] + values: + + - laboratory[max_priority] num type: 'string' @@ -756,9 +849,7 @@ Internal values The maximum number of years that should be putted in a single file. - fatal: True - - default values: + values: - simulation[max_split_freq] - laboratory[max_split_freq] @@ -772,7 +863,9 @@ Internal values fatal: True - default values: laboratory[mips] + values: + + - laboratory[mips] num type: 'string' @@ -782,7 +875,7 @@ Internal values fatal: True - default values: + values: - laboratory[nemo_sources_management_policy_master_of_the_world] - False @@ -791,11 +884,9 @@ Internal values non_standard_attributes - You may add a series of NetCDF attributes in all files for this simulation - - fatal: False + You may add a series of NetCDF attributes in all files for this simulation. - default values: + values: - laboratory[non_standard_attributes] - {} @@ -806,9 +897,7 @@ Internal values If your model has some axis which does not have all its attributes as in DR, and you want dr2xml to fix that it, give here the correspondence from model axis id to DR dim/grid id. For label dimensions you should provide the list of labels, ordered as in your model, as second element of a pair. Label-type axes will be processed even if not quoted. Scalar dimensions are not concerned by this feature. A dictionary with (axis_id, axis_correct_id) or (axis_id, tuple of labels) as key, values. - fatal: False - - default values: + values: - laboratory[non_standard_axes] - {} @@ -819,9 +908,7 @@ Internal values Name of the orography field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[orography_field_name] - 'orog' @@ -830,11 +917,13 @@ Internal values orphan_variables - A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context) + A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context). fatal: True - default values: laboratory[orphan_variables] + values: + + - laboratory[orphan_variables] num type: 'string' @@ -842,9 +931,7 @@ Internal values Full path of the directory which contains extra tables. - fatal: False - - default values: + values: - simulation[path_extra_tables] - laboratory[path_extra_tables] @@ -856,9 +943,7 @@ Internal values The path of the directory which, at run time, contains the root XML file (iodef.xml). - fatal: False - - default values: + values: - laboratory[path_to_parse] - './' @@ -869,9 +954,7 @@ Internal values A dictionary containing, for each perso or dev variables with a XY-perso shape, and for each vertical coordinate associated, the main attributes of the dimension. - fatal: False - - default values: + values: - simulation[perso_sdims_description] - {} @@ -884,7 +967,9 @@ Internal values fatal: True - default values: laboratory[ping_variables_prefix] + values: + + - laboratory[ping_variables_prefix] num type: 'string' @@ -892,9 +977,9 @@ Internal values Name of the orography field name to be used to compute height over orog fields prefixed with :term:`ping_variable_prefix`. - fatal: False - - default values: '{}{}'.format(internal[ping_variables_prefix], internal[orography_field_name]) + values: + + - function from self named format('prefix'= internal[ping_variables_prefix], 'variable'= internal[orography_field_name]) num type: 'string' @@ -902,9 +987,7 @@ Internal values For an extended printout of selected CMOR variables, grouped by variable label. - fatal: False - - default values: + values: - laboratory[print_stats_per_var_label] - False @@ -915,48 +998,18 @@ Internal values If the value is a list, only the file/field variables listed here will be put in output files. If boolean, tell if the file/field variables should be put in output files. - fatal: False - - default values: + values: - laboratory[print_variables] - True num type: 'string' - project - - Project associated with the simulation. - - fatal: False - - default values: - - - laboratory[project] - - 'CMIP6' - - num type: 'string' - - project_settings - - Project settings definition file to be used. - - fatal: False - - default values: - - - laboratory[project_settings] - - internal[project] - - num type: 'string' - realization_index Realization number. - fatal: False - - default values: + values: - simulation[realization_index] - '1' @@ -965,11 +1018,13 @@ Internal values realms_per_context - A dictionary which keys are context names and values the lists of realms associated with each context + A dictionary which keys are context names and values the lists of realms associated with each context. fatal: True - default values: laboratory[realms_per_context][internal[context]] + values: + + - laboratory[realms_per_context][internal[context]] num type: 'string' @@ -979,7 +1034,7 @@ Internal values fatal: True - default values: + values: - laboratory[required_model_components][internal[source_id]] - [] @@ -992,20 +1047,10 @@ Internal values fatal: True - default values: laboratory[sampling_timestep] - - num type: 'string' - - save_project_settings - - The path of the file where the complete project settings will be written, if needed. - - fatal: False - - default values: + values: - - laboratory[save_project_settings] - - None + - laboratory[sampling_timestep] + - 2 num type: 'string' @@ -1013,9 +1058,9 @@ Internal values List of the sectors to be considered. - fatal: False - - default values: laboratory[sectors] + values: + + - laboratory[sectors] num type: 'string' @@ -1025,7 +1070,9 @@ Internal values fatal: True - default values: dict[select] + values: + + - dict[select] authorized values: @@ -1035,43 +1082,65 @@ Internal values num type: 'string' + select_excluded_expgroups + + Excluded experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_expgroups_lset] + - + + num type: 'string' + select_excluded_opportunities Excluded opportunities for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_opportunities_lset]', 'internal[excluded_opportunities_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_opportunities_lset] + - num type: 'string' @@ -1081,37 +1150,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_pairs_lset]', 'internal[excluded_pairs_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_pairs_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_pairs_lset] + - num type: 'string' @@ -1121,37 +1181,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[excluded_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[excluded_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1161,37 +1212,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_tables_lset]', 'internal[excluded_tables_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_tables_lset] + - num type: 'string' @@ -1201,37 +1243,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vargroups_lset]', 'internal[excluded_vargroups_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vargroups_lset] + - num type: 'string' @@ -1241,37 +1274,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vars_lset]', 'internal[excluded_vars_sset]', 'internal[excluded_vars_per_config]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vars_lset] + - num type: 'string' @@ -1281,37 +1305,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: + values: - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[grid_choice] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: 'LR' - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[grid_choice] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: 'LR' + - + + num type: 'string' + + select_included_expgroups + + Included experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_expgroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_expgroups_lset] + - num type: 'string' @@ -1321,37 +1367,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_opportunities] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_opportunities] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_opportunities_lset] + - num type: 'string' @@ -1361,37 +1398,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1401,77 +1429,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_tables] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_tables] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_tables_lset] + - num type: 'string' select_included_vargroups - Included variables groups for variable selection. + Included variable groups for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vargroups] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vargroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vargroups_lset] + - num type: 'string' @@ -1481,37 +1491,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vars] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vars] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vars_lset] + - num type: 'string' @@ -1521,37 +1522,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[max_priority] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[max_priority_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[max_priority] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[max_priority_lset] + - num type: 'string' @@ -1559,39 +1551,30 @@ Internal values MIPs for variable selection. - fatal: True - - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[mips][internal[select_grid_choice]]sort_mips() - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[mips]sort_mips() - + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: function from functions_file named sort_mips('mips'= internal[mips][internal[select_grid_choice]]) + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: function from functions_file named sort_mips('mips'= internal[mips]) + - num type: 'string' @@ -1601,40 +1584,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'on_expt_and_year' - - 'on_expt' - - - value: True - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'no' - - - value: False - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt_and_year' + - - 'on_expt' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'no' + - + - values: False + - num type: 'string' @@ -1644,40 +1618,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'on_expt_and_year' - - - value: internal[year] - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'no' - - 'on_expt' - - - value: None - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'on_expt_and_year' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt' + - - 'no' + - + - values: False + - num type: 'string' @@ -1687,37 +1652,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[sizes] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[sizes] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1727,47 +1683,38 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[tierMax] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[tierMax_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[tierMax] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[tierMax_lset] + - num type: 'string' simple_domain_grid_regexp - If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: 1) it must be a grid which has only a domain 2) the domain name must be extractable from the grid_id using a regexp and a group number Example: using a pattern that returns full id except for a '_grid' suffix + If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: \n1) it must be a grid which has only a domain \n2) the domain name must be extractable from the grid_id using a regexp and a group number \nExample: using a pattern that returns full id except for a '_grid' suffix - fatal: False - - default values: laboratory[simple_domain_grid_regexp] + values: + + - laboratory[simple_domain_grid_regexp] num type: 'string' @@ -1777,7 +1724,9 @@ Internal values fatal: True - default values: laboratory[sizes][internal[grid_choice]]format_sizes() + values: + + - function from functions_file named format_sizes('sizes'= laboratory[sizes][internal[grid_choice]]) num type: 'string' @@ -1787,7 +1736,7 @@ Internal values fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][0] - simulation[source_id] @@ -1796,11 +1745,11 @@ Internal values source_type - If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote "AGCM AER". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit + If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote \"AGCM AER\". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][1] - simulation[source_type] @@ -1812,9 +1761,7 @@ Internal values This variable is used when some variables are computed with a period which is not the basic timestep. A dictionary which keys are non standard timestep and values the list of variables which are computed at this timestep. - fatal: False - - default values: + values: - laboratory[special_timestep_vars] - [] @@ -1825,9 +1772,7 @@ Internal values Path to the split frequencies file to be used. - fatal: False - - default values: + values: - simulation[split_frequencies] - laboratory[split_frequencies] @@ -1837,11 +1782,13 @@ Internal values synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. - - fatal: False + Frequency at which the synchronisation between buffer and filesystem is done. - default values: [] + values: + + - simulation[synchronisation_frequency] + - laboratory[synchronisation_frequency] + - None num type: 'string' @@ -1851,7 +1798,7 @@ Internal values fatal: True - default values: + values: - simulation[tierMax] - internal[tierMax_lset] @@ -1864,7 +1811,9 @@ Internal values fatal: True - default values: laboratory[tierMax] + values: + + - laboratory[tierMax] num type: 'string' @@ -1874,7 +1823,7 @@ Internal values fatal: True - default values: + values: - laboratory[too_long_periods] - [] @@ -1885,9 +1834,7 @@ Internal values Should xml output files use the `@` symbol for definitions for instant variables? - fatal: False - - default values: + values: - laboratory[useAtForInstant] - False @@ -1900,7 +1847,7 @@ Internal values fatal: True - default values: + values: - laboratory[use_cmorvar_label_in_filename] - False @@ -1911,9 +1858,7 @@ Internal values Say if you want to use XIOS union/zoom axis to optimize vertical interpolation requested by the DR. - fatal: False - - default values: + values: - laboratory[use_union_zoom] - False @@ -1924,9 +1869,7 @@ Internal values Operation done for vertical interpolation. - fatal: False - - default values: + values: - laboratory[vertical_interpolation_operation] - 'instant' @@ -1937,9 +1880,9 @@ Internal values Time frequency of vertical interpolation. - fatal: False - - default values: laboratory[vertical_interpolation_sample_freq] + values: + + - laboratory[vertical_interpolation_sample_freq] num type: 'string' @@ -1947,9 +1890,7 @@ Internal values Version of XIOS used. - fatal: False - - default values: + values: - laboratory[xios_version] - 2 @@ -1962,7 +1903,9 @@ Internal values fatal: True - default values: dict[year] + values: + + - dict[year] num type: 'string' @@ -1970,9 +1913,7 @@ Internal values Name of the geopotential height field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[zg_field_name] - 'zg' @@ -1988,9 +1929,7 @@ Common values HDL associated with the project. - fatal: False - - default values: + values: - simulation[HDL] - laboratory[HDL] @@ -2001,9 +1940,7 @@ Common values MIP(s) name(s). - fatal: False - - default values: + values: - simulation[activity_id] - laboratory[activity_id] @@ -2014,9 +1951,7 @@ Common values Branching procedure. - fatal: False - - default values: + values: - simulation[branch_method] - 'standard' @@ -2027,9 +1962,7 @@ Common values Branch month in parent simulation with respect to its time axis. - fatal: False - - default values: + values: - simulation[branch_month_in_parent] - '1' @@ -2040,77 +1973,54 @@ Common values Branch year in parent simulation with respect to its time axis. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: simulation[branch_year_in_parent] + - + - check to perform: 'eq' + - + - reference values: internal[branching][internal[experiment_id]][1] + - + - values: simulation[branch_year_in_parent] + - + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'neq' + - + - reference values: internal[branching] + - + - values: simulation[branch_year_in_parent] + - + + forbidden values: - None - 'None' - '' - 'N/A' - cases: - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: internal[branching] - - Condition: - - check value: simulation[branch_year_in_parent] - - check to do: 'eq' - - reference values: internal[branching][internal[experiment_id]][1] - - - value: simulation[branch_year_in_parent] - - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'neq' - - reference values: internal[branching] - - - value: simulation[branch_year_in_parent] - - num type: 'string' - comment_lab + comment_lset A character string containing additional information about the models from laboratory settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - laboratory[comment] - '' num type: 'string' - comment_sim + comment_sset A character string containing additional information about the models from simulation settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - simulation[comment] - '' @@ -2121,9 +2031,7 @@ Common values Id of the commits associated with the model. - fatal: False - - default values: + values: - simulation[commit] - laboratory[commit] @@ -2132,11 +2040,9 @@ Common values compression_level - The compression level to be applied to NetCDF output files. - - fatal: False + The compression level to be applied to NetCDF output files." - default values: + values: - laboratory[compression_level] - '0' @@ -2147,9 +2053,7 @@ Common values Email address of the data producer. - fatal: False - - default values: + values: - simulation[contact] - laboratory[contact] @@ -2161,9 +2065,9 @@ Common values Version of the conventions used. - fatal: False - - default values: laboratory[convention_str] + values: + + - laboratory[convention_str] num type: 'string' @@ -2173,7 +2077,9 @@ Common values fatal: True - default values: data_request.get_version() + values: + + - function from data_request named get_version({}) num type: 'string' @@ -2181,9 +2087,9 @@ Common values Date range format to be used in file definition names. - fatal: False - - default values: '%start_date%-%end_date%' + values: + + - '%start_date%-%end_date%' num type: 'string' @@ -2191,12 +2097,10 @@ Common values Description of the simulation. - fatal: False - - default values: + values: - - simulation[description] - laboratory[description] + - simulation[description] num type: 'string' @@ -2204,9 +2108,9 @@ Common values Version of dr2xml used. - fatal: False - - default values: dr2xml.config.version + values: + + - config.version num type: 'string' @@ -2214,9 +2118,9 @@ Common values Name of the experiment. - fatal: False - - default values: simulation[experiment] + values: + + - simulation[experiment] num type: 'string' @@ -2224,9 +2128,7 @@ Common values Experiment label to use in file names and attribute. - fatal: False - - default values: + values: - simulation[expid_in_filename] - internal[experiment_id] @@ -2239,9 +2141,7 @@ Common values Index for variant of forcing. - fatal: False - - default values: + values: - simulation[forcing_index] - '1' @@ -2252,9 +2152,9 @@ Common values Reference time for the forecast done in the simulation. - fatal: False - - default values: simulation[forecast_reference_time] + values: + + - simulation[forecast_reference_time] num type: 'string' @@ -2262,9 +2162,9 @@ Common values Type of forecast done. - fatal: False - - default values: simulation[forecast_type] + values: + + - simulation[forecast_type] num type: 'string' @@ -2272,9 +2172,9 @@ Common values Grid mapping name. - fatal: False - - default values: simulation[grid_mapping] + values: + + - simulation[grid_mapping] num type: 'string' @@ -2282,9 +2182,7 @@ Common values In case of replacement of previously produced data, description of any changes in the production chain. - fatal: False - - default values: + values: - simulation[history] - 'none' @@ -2295,9 +2193,9 @@ Common values Location of documentation. - fatal: False - - default values: laboratory[info_url] + values: + + - laboratory[info_url] num type: 'string' @@ -2305,9 +2203,7 @@ Common values Index for variant of initialization method. - fatal: False - - default values: + values: - simulation[initialization_index] - '1' @@ -2318,9 +2214,9 @@ Common values Full name of the institution of the data producer. - fatal: False - - default values: laboratory[institution] + values: + + - laboratory[institution] num type: 'string' @@ -2328,12 +2224,10 @@ Common values Keywords associated with the simulation. - fatal: False - - default values: + values: - - simulation[keywords]build_string_from_list() - - laboratory[summary]build_string_from_list() + - simulation[keywords] formatted with function from self named join({}) + - laboratory[keywords] formatted with function from self named join({}) num type: 'string' @@ -2341,9 +2235,9 @@ Common values Name of the file which will contain the list of the patterns of perso and dev output file definition. - fatal: False - - default values: 'dr2xml_list_perso_and_dev_file_names' + values: + + - 'dr2xml_list_perso_and_dev_file_names' num type: 'string' @@ -2351,12 +2245,34 @@ Common values MIP associated with the simulation. - fatal: False + values: + + - common[mip_era_sset] + - common[mip_era_lset] + + forbidden values: None - default values: + num type: 'string' + + mip_era_lset + + MIP associated with the simulation from laboratory settings. + + values: - - simulation[mip_era] - laboratory[mip_era] + - None + + num type: 'string' + + mip_era_sset + + MIP associated with the simulation from simulation settings. + + values: + + - simulation[mip_era] + - None num type: 'string' @@ -2364,9 +2280,7 @@ Common values We can control the max output level set for all output files. - fatal: False - - default values: + values: - laboratory[output_level] - '10' @@ -2377,9 +2291,7 @@ Common values Description of sub-experiment. - fatal: False - - default values: + values: - simulation[parent_activity_id] - simulation[activity_id] @@ -2392,9 +2304,7 @@ Common values Parent experiment identifier. - fatal: False - - default values: + values: - simulation[parent_experiment_id] - laboratory[parent_experiment_id] @@ -2405,9 +2315,9 @@ Common values Parent’s associated MIP cycle. - fatal: False - - default values: simulation[parent_mip_era] + values: + + - simulation[parent_mip_era] num type: 'string' @@ -2415,9 +2325,9 @@ Common values Parent model identifier. - fatal: False - - default values: simulation[parent_source_id] + values: + + - simulation[parent_source_id] num type: 'string' @@ -2425,9 +2335,7 @@ Common values Reference year in parent simulation. - fatal: False - - default values: + values: - simulation[parent_time_ref_year] - '1850' @@ -2438,9 +2346,9 @@ Common values Time units used in parent. - fatal: False - - default values: simulation[parent_time_units] + values: + + - simulation[parent_time_units] num type: 'string' @@ -2448,9 +2356,9 @@ Common values Parent variant label. - fatal: False - - default values: simulation[parent_variant_label] + values: + + - simulation[parent_variant_label] num type: 'string' @@ -2458,9 +2366,7 @@ Common values Index for model physics variant. - fatal: False - - default values: + values: - simulation[physics_index] - '1' @@ -2473,7 +2379,9 @@ Common values fatal: True - default values: dict[prefix] + values: + + - dict[prefix] num type: 'string' @@ -2481,9 +2389,9 @@ Common values References associated with the simulation. - fatal: False - - default values: laboratory[references] + values: + + - laboratory[references] num type: 'string' @@ -2491,9 +2399,9 @@ Common values Name of the model. - fatal: False - - default values: laboratory[source] + values: + + - laboratory[source] num type: 'string' @@ -2501,9 +2409,7 @@ Common values Sub-experiment name. - fatal: False - - default values: + values: - simulation[sub_experiment] - 'none' @@ -2514,9 +2420,7 @@ Common values Sub-experiment identifier. - fatal: False - - default values: + values: - simulation[sub_experiment_id] - 'none' @@ -2527,9 +2431,7 @@ Common values Short explanation about the simulation. - fatal: False - - default values: + values: - simulation[summary] - laboratory[summary] @@ -2540,11 +2442,11 @@ Common values It is recommended that some description be included to help identify major differences among variants, but care should be taken to record correct information. dr2xml will add in all cases: 'Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.' - fatal: False - - default values: simulation[variant_info] + values: + + - simulation[variant_info] - skip values: '' + forbidden values: '' num type: 'string' @@ -2562,19 +2464,19 @@ Project settings Id of the axis. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' positive - How is the axis oriented? - - fatal: False + Hox is the axis oriented? - default values: [] + values: + + - attrs[positive] num type: 'string' @@ -2582,9 +2484,9 @@ Project settings Number of values of this axis. - fatal: False - - default values: [] + values: + + - attrs[n_glo] num type: 'string' @@ -2592,11 +2494,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2608,9 +2510,9 @@ Project settings Reference axis. - fatal: False - - default values: [] + values: + + - attrs[axis_ref] num type: 'string' @@ -2618,9 +2520,9 @@ Project settings Name of this axis. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -2628,27 +2530,25 @@ Project settings Standard name of the axis. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' - None - authorized types: - num type: 'string' long_name Long name of this axis. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -2656,21 +2556,9 @@ Project settings Precision of the axis. - fatal: False - - default values: [] - - skip values: + values: - - '' - - 'None' - - None - - authorized values: - - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -2681,17 +2569,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' unit Unit of the axis. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -2703,11 +2603,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2719,11 +2619,11 @@ Project settings Bounds of the axis. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -2735,11 +2635,11 @@ Project settings Name dimension of the axis. - fatal: False - - default values: [] + values: + + - attrs[dim_name] - skip values: + forbidden values: - '' - 'None' @@ -2751,11 +2651,11 @@ Project settings Label of the axis. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -2767,11 +2667,11 @@ Project settings Axis type. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -2791,14 +2691,9 @@ Project settings Precision associated with the axis group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -2810,6 +2705,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' context @@ -2821,9 +2722,9 @@ Project settings Version of the Data Request used - fatal: False - - default values: '{} Data Request version {}'.format(internal[data_request_used], common[data_specs_version]) + values: + + - function from self named format('data_request_used'= init[data_request_used], 'data_specs_version'= common[data_specs_version]) num type: 'string' @@ -2831,9 +2732,9 @@ Project settings Version of dr2xml used - fatal: False - - default values: 'dr2xml version {}'.format(common[dr2xml_version]) + values: + + - function from self named format('dr2xml_version'= common[dr2xml_version]) num type: 'string' @@ -2841,9 +2742,9 @@ Project settings Laboratory settings used - fatal: False - - default values: 'Lab_and_model settings***newline***{}'.format(laboratory) + values: + + - function from self named format('laboratory'= laboratory) num type: 'string' @@ -2851,9 +2752,9 @@ Project settings Simulation_settings used - fatal: False - - default values: 'Simulation settings***newline***{}'.format(simulation) + values: + + - function from self named format('laboratory'= simulation) num type: 'string' @@ -2861,9 +2762,9 @@ Project settings Year used for the dr2xml's launch - fatal: False - - default values: 'Year processed {}'.format(internal[year]) + values: + + - function from self named format('year'= internal[year]) num type: 'string' @@ -2873,9 +2774,9 @@ Project settings Id of the context - fatal: False - - default values: internal[context] + values: + + - internal[context] num type: 'string' @@ -2888,29 +2789,29 @@ Project settings Id of the domain. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' ni_glo - Number of points on i dimension. - - fatal: False + Number of point in i dimension. - default values: [] + values: + + - attrs[ni_glo] num type: 'string' nj_glo - Number of points on j dimension. - - fatal: False + Number of points in j dimension. - default values: [] + values: + + - attrs[nj_glo] num type: 'string' @@ -2918,9 +2819,9 @@ Project settings Type of the domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -2928,9 +2829,9 @@ Project settings Precision of the domain. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -2938,9 +2839,9 @@ Project settings Latitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lat_name] num type: 'string' @@ -2948,9 +2849,9 @@ Project settings Longitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lon_name] num type: 'string' @@ -2958,9 +2859,9 @@ Project settings Name of the i dimension. - fatal: False - - default values: [] + values: + + - attrs[dim_i_name] num type: 'string' @@ -2968,9 +2869,9 @@ Project settings Reference domain. - fatal: False - - default values: [] + values: + + - attrs[domain_ref] num type: 'string' @@ -2986,14 +2887,9 @@ Project settings Precision associated with the domain group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -3005,6 +2901,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' duplicate_scalar @@ -3019,9 +2921,9 @@ Project settings Id of the field. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -3029,9 +2931,9 @@ Project settings Id of the reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -3039,9 +2941,9 @@ Project settings Name of the field. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3049,9 +2951,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -3059,9 +2961,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -3069,9 +2971,9 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] num type: 'string' @@ -3079,9 +2981,9 @@ Project settings Long name of the field. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -3089,9 +2991,9 @@ Project settings Standard name of the field. - fatal: False - - default values: [] + values: + + - attrs[standard_name] num type: 'string' @@ -3099,9 +3001,9 @@ Project settings Unit of the field. - fatal: False - - default values: [] + values: + + - attrs[unit] num type: 'string' @@ -3109,9 +3011,9 @@ Project settings Operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3119,9 +3021,9 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: [] + values: + + - attrs[detect_missing_value] num type: 'string' @@ -3129,9 +3031,9 @@ Project settings Precision of the field. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -3147,9 +3049,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -3157,9 +3059,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -3167,14 +3069,28 @@ Project settings XIOS field beacon (only for output fields) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: field_ref Reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -3182,9 +3098,10 @@ Project settings Name of the field. - fatal: False - - default values: variable.mipVarLabel + values: + + - attrs[name] + - common_tag[variable][mipVarLabel] num type: 'string' @@ -3192,11 +3109,11 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] - skip values: + forbidden values: - '' - 'None' @@ -3208,11 +3125,11 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] - skip values: + forbidden values: - '' - 'None' @@ -3224,9 +3141,10 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: 'True' + values: + + - attrs[detect_missing_value] + - 'True' num type: 'string' @@ -3236,12 +3154,11 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '0' - - '1.e+20' + - attrs[default_value] + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3252,6 +3169,11 @@ Project settings - 'integer': '0' - 'int': '0' + authorized values: + + - '0' + - '1.e+20' + num type: 'string' prec @@ -3260,13 +3182,10 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3277,15 +3196,22 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' cell_methods Cell method associated with the field. - fatal: False - - default values: variable.cell_methods + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] num type: 'string' @@ -3293,9 +3219,10 @@ Project settings Mode associated with the cell method of the field. - fatal: False - - default values: 'overwrite' + values: + + - attrs[cell_methods_mode] + - 'overwrite' num type: 'string' @@ -3303,9 +3230,9 @@ Project settings Operation performed on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3313,11 +3240,11 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] - skip values: + forbidden values: - '' - 'None' @@ -3329,11 +3256,11 @@ Project settings Expression used to compute the field. - fatal: False - - default values: [] + values: + + - attrs[expr] - skip values: + forbidden values: - '' - 'None' @@ -3347,11 +3274,12 @@ Project settings Standard name of the field. - fatal: False - - default values: variable.stdname + values: + + - attrs[standard_name] + - common_tag[variable][stdname] - skip values: + forbidden values: - '' - 'None' @@ -3363,9 +3291,10 @@ Project settings Long name of the field. - fatal: False - - default values: variable.long_name + values: + + - attrs[long_name] + - common_tag[variable][long_name] num type: 'string' @@ -3373,19 +3302,21 @@ Project settings Coordinates of the output field. - fatal: False - - default values: variable.coordinates + values: + + - attrs[coordinates] + - variable.coordinates num type: 'string' grid_mapping - Grid mapping associated with the field. - - fatal: False + Grid mapping associated with the file. - default values: common[grid_mapping] + values: + + - attrs[grid_mapping] + - common[grid_mapping] num type: 'string' @@ -3393,11 +3324,12 @@ Project settings Units associated with the field. - fatal: False - - default values: variable.units + values: + + - attrs[units] + - common_tag[variable][units] - skip values: + forbidden values: - '' - 'None' @@ -3414,9 +3346,9 @@ Project settings Id of the file. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -3424,9 +3356,9 @@ Project settings File name. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3434,9 +3366,9 @@ Project settings Mode in which the file will be open. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -3444,9 +3376,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3454,9 +3386,9 @@ Project settings Should the file be considered by XIOS. - fatal: False - - default values: [] + values: + + - attrs[enabled] num type: 'string' @@ -3469,9 +3401,10 @@ Project settings Type of file to be produced - fatal: False - - default values: 'one_file' + values: + + - attrs[type] + - 'one_file' num type: 'string' @@ -3479,9 +3412,10 @@ Project settings Should the file_definition be considered by XIOS - fatal: False - - default values: 'true' + values: + + - attrs[enabled] + - 'true' num type: 'string' @@ -3489,14 +3423,31 @@ Project settings XIOS file beacon (only for output files) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: id Id of the output file - fatal: False + fatal: True - default values: '{}_{}_{}'.format(variable.label, dict[table_id], dict[grid_label]) + values: + + - attrs[id] + - function from self named format('grid'= attrs[grid_label], 'table'= attrs[table_id], 'variable'= common_tag[variable][label]) num type: 'string' @@ -3506,7 +3457,9 @@ Project settings fatal: True - default values: build_filename('frequency'= variable.frequencyconvert_frequency(), 'expid_in_filename'= common[expid_in_filename], 'date_range'= common[date_range], 'list_perso_dev_file'= common[list_perso_dev_file], 'var_type'= variable.type, 'label'= variable.label, 'realm'= variable.modeling_realmconvert_realm()) + values: + + - function from functions_file named build_filename('frequency'= function from functions_file named convert_frequency('freq'= variable.frequency), 'expid_in_filename'= common[expid_in_filename], 'date_range'= common[date_range], 'list_perso_dev_file'= common[list_perso_dev_file], 'var_type'= variable.type, 'label'= variable.label, 'realm'= function from functions_file named convert_realm('realm'= variable.modeling_realm)) num type: 'string' @@ -3514,9 +3467,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3524,9 +3477,10 @@ Project settings Should the data be append to the file? - fatal: False - - default values: 'true' + values: + + - attrs[append] + - 'true' num type: 'string' @@ -3534,11 +3488,12 @@ Project settings Output level of the file. - fatal: False - - default values: common[output_level] + values: + + - attrs[output_level] + - common[output_level] - skip values: + forbidden values: - 'None' - '' @@ -3550,11 +3505,12 @@ Project settings Compression level of the file. - fatal: False - - default values: common[compression_level] + values: + + - attrs[compression_level] + - common[compression_level] - skip values: + forbidden values: - 'None' - '' @@ -3566,143 +3522,139 @@ Project settings Splitting frequency of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_freq_format Splitting frequency format of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq_format] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_start_offset Splitting start offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_start_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_end_offset Splitting end offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_end_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_last_date Splitting last date of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_last_date] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' time_units Time units of the file. - fatal: False - - default values: 'days' + values: + + - attrs[ time_units] + - 'days' num type: 'string' @@ -3710,9 +3662,10 @@ Project settings Time counter name. - fatal: False - - default values: 'time' + values: + + - attrs[time_counter_name] + - 'time' num type: 'string' @@ -3720,9 +3673,10 @@ Project settings Time counter type. - fatal: False - - default values: 'exclusive' + values: + + - attrs[time_counter] + - 'exclusive' num type: 'string' @@ -3730,9 +3684,10 @@ Project settings Time stamp name. - fatal: False - - default values: 'creation_date' + values: + + - attrs[time_stamp_name] + - 'creation_date' num type: 'string' @@ -3740,9 +3695,10 @@ Project settings Time stamp format. - fatal: False - - default values: '%Y-%m-%dT%H:%M:%SZ' + values: + + - attrs[time_stamp_format] + - '%Y-%m-%dT%H:%M:%SZ' num type: 'string' @@ -3750,9 +3706,10 @@ Project settings Unique identifier of the file name. - fatal: False - - default values: 'uuid' + values: + + - attrs[uuid_name] + - 'uuid' num type: 'string' @@ -3760,11 +3717,12 @@ Project settings Unique identifier of the file format. - fatal: False - - default values: '%uuid%' + values: + + - attrs[uuid_format] + - '%uuid%' - skip values: + forbidden values: - 'None' - '' @@ -3776,21 +3734,23 @@ Project settings Convention used for the file. - fatal: False - - default values: common[convention_str] + values: + + - attrs[convention_str] + - common[convention_str] num type: 'string' synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. + Frequency at which the synchronisation between buffer and filesystem is done. - fatal: False - - default values: internal[synchronisation_frequency] + values: + + - attrs[synchronisation_frequency] + - internal[synchronisation_frequency] - skip values: + forbidden values: - 'None' - '' @@ -3804,38 +3764,39 @@ Project settings Description of the file. - fatal: False - - default values: common[description] - - skip values: + values: + + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[description] + - - common[description] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: common[expid_in_filename] - - num type: 'string' title Title of the file. - fatal: False - - default values: + values: - - '{} model output prepared for {} and {} / {} simulation'.format(internal[source_id], internal[project], common[activity_id], simulation[expid_in_filename]) - - '{} model output prepared for {} / {} {}'.format(internal[source_id], internal[project], common[activity_id], internal[experiment_id]) + - attrs[title] + - function from self named format('activity_id'= common[activity_id] formatted with function from self named join({}), 'expid_in_filename'= simulation[expid_in_filename], 'project'= init[project], 'source_id'= internal[source_id]) + - function from self named format('activity_id'= common[activity_id] formatted with function from self named join({}), 'experiment_id'= simulation[experiment_id], 'project'= init[project], 'source_id'= internal[source_id]) num type: 'string' @@ -3843,9 +3804,10 @@ Project settings Model associated with the simulation. - fatal: False - - default values: common[source] + values: + + - attrs[source] + - common[source] num type: 'string' @@ -3857,7 +3819,10 @@ Project settings fatal: True - default values: internal[institution_id] + values: + + - attrs[institution_id] + - init[institution_id] num type: 'string' @@ -3867,7 +3832,10 @@ Project settings fatal: True - default values: common[institution] + values: + + - attrs[institution] + - common[institution] num type: 'string' @@ -3875,11 +3843,12 @@ Project settings Contact email. - fatal: False - - default values: common[contact] + values: + + - attrs[contact] + - common[contact] - skip values: + forbidden values: - 'None' - '' @@ -3891,9 +3860,9 @@ Project settings Project associated with the file. - fatal: False - - default values: [] + values: + + - attrs[project] num type: 'string' @@ -3901,97 +3870,12 @@ Project settings Comment associated with the file. - fatal: False - - default values: [] - - skip values: '' - - cases: - Case: - - conditions: - Condition: - - check value: variable.comments - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}{}'.format(common[comment_lab], common[comment_sim], variable.comments) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}'.format(common[comment_lab], common[comment_sim]) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_sim] - - Case: - - conditions: - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_lab] - + values: + + - attrs[comment] + - function from self named format('var'= , , Condition:, , value to check: common_tag[variable][comments], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common_tag[variable][comments], , 'lset'= , , Condition:, , value to check: common[comment_lset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_lset], , 'sset'= , , Condition:, , value to check: common[comment_sset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_sset], ) + + forbidden values: '' num type: 'string' @@ -3999,9 +3883,10 @@ Project settings Forecast type associated with the file. - fatal: False - - default values: common[forecast_type] + values: + + - attrs[forecast_type] + - common[forecast_type] num type: 'string' @@ -4011,9 +3896,10 @@ Project settings output key: 'modeling_realm' - fatal: False - - default values: variable.modeling_realmconvert_realm() + values: + + - function from functions_file named convert_realm('realm'= attrs[realm]) + - function from functions_file named convert_realm('realm'= variable.modeling_realm) num type: 'string' @@ -4021,9 +3907,10 @@ Project settings Frequency associated with the file. - fatal: False - - default values: variable.frequency + values: + + - attrs[frequency] + - common_tag[variable][frequency] num type: 'string' @@ -4031,9 +3918,10 @@ Project settings Level type associated with the file. - fatal: False - - default values: variable.level_type + values: + + - attrs[level_type] + - variable.level_type num type: 'string' @@ -4041,9 +3929,10 @@ Project settings History associated with the file. - fatal: False - - default values: common[history] + values: + + - attrs[history] + - common[history] num type: 'string' @@ -4051,9 +3940,10 @@ Project settings References associated with the simulation. - fatal: False - - default values: common[references] + values: + + - attrs[references] + - common[references] num type: 'string' @@ -4061,9 +3951,10 @@ Project settings Commit associated with the file. - fatal: False - - default values: common[commit] + values: + + - attrs[commit] + - common[commit] num type: 'string' @@ -4071,9 +3962,10 @@ Project settings Summary associated with the file. - fatal: False - - default values: common[summary] + values: + + - attrs[summary] + - common[summary] num type: 'string' @@ -4081,9 +3973,9 @@ Project settings Keywords associated with the file. - fatal: False - - default values: [] + values: + + - attrs[keywords] num type: 'string' @@ -4091,9 +3983,10 @@ Project settings Forecast reference time associated with the file. - fatal: False - - default values: common[forecast_reference_time] + values: + + - attrs[forecast_reference_time] + - common[forecast_reference_time] num type: 'string' @@ -4109,9 +4002,9 @@ Project settings Id of the grid. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4120,16 +4013,16 @@ Project settings XIOS grid_definition beacon interpolate_axis - XIOS interpolate_axis beacon + TODO Attributes: type Type of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4137,9 +4030,9 @@ Project settings Order of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4147,9 +4040,9 @@ Project settings Coordinate of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4162,9 +4055,9 @@ Project settings Type of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4172,9 +4065,9 @@ Project settings Order of the interpolation. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4182,9 +4075,9 @@ Project settings Should the interpolated domain be renormalized? - fatal: False - - default values: [] + values: + + - attrs[renormalize] num type: 'string' @@ -4192,9 +4085,9 @@ Project settings Mode used for the interpolation. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -4202,9 +4095,9 @@ Project settings Should interpolation weights be written? - fatal: False - - default values: [] + values: + + - attrs[write_weight] num type: 'string' @@ -4212,9 +4105,9 @@ Project settings Coordinate of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4227,9 +4120,9 @@ Project settings Id of the scalar. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4237,9 +4130,9 @@ Project settings Reference scalar. - fatal: False - - default values: [] + values: + + - attrs[scalar_ref] num type: 'string' @@ -4247,9 +4140,9 @@ Project settings Name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -4257,11 +4150,11 @@ Project settings Standard name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' @@ -4273,9 +4166,9 @@ Project settings Long name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -4283,11 +4176,11 @@ Project settings Label of the scalar. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -4299,21 +4192,9 @@ Project settings Precision of the scalar. - fatal: False - - default values: [] - - skip values: - - - '' - - 'None' - - None - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -4324,17 +4205,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' value Value of the scalar. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -4346,11 +4239,11 @@ Project settings Bounds of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -4362,11 +4255,11 @@ Project settings Bounds name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds_name] - skip values: + forbidden values: - '' - 'None' @@ -4378,11 +4271,11 @@ Project settings Axis type of the scalar. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -4394,11 +4287,11 @@ Project settings Orientation of the scalar. - fatal: False - - default values: [] + values: + + - attrs[positive] - skip values: + forbidden values: - '' - 'None' @@ -4410,11 +4303,11 @@ Project settings Unit of the scalar. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -4437,9 +4330,11 @@ Project settings Content of the variable - fatal: False + fatal: True - default values: [] + values: + + - attrs[name] num type: 'string' @@ -4447,9 +4342,11 @@ Project settings Encoding type of the variable's content. - fatal: False + fatal: True - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4462,9 +4359,9 @@ Project settings Index of the zoomed axis. - fatal: False - - default values: [] + values: + + - attrs[index] num type: 'string' \ No newline at end of file diff --git a/sphinx/source/userguide/projects/CMIP6.rst b/sphinx/source/userguide/projects/CMIP6.rst index c93f5815..eff8a7f4 100644 --- a/sphinx/source/userguide/projects/CMIP6.rst +++ b/sphinx/source/userguide/projects/CMIP6.rst @@ -1,6 +1,144 @@ Parameters available for project CMIP6 ====================================== +Init values +--------------- +.. glossary:: + :sorted: + + data_request_config + + Configuration file of the data request content to be used. + + values: + + - laboratory[data_request_config] + - '__package-root__/dr_interface/CMIP7_config' + + num type: 'string' + + data_request_content_version + + Version of the data request content to be used. + + values: + + - laboratory[data_request_content_version] + - 'latest_stable' + + num type: 'string' + + data_request_path + + Path where the data request API used is placed. + + values: + + - laboratory[data_request_path] + - None + + num type: 'string' + + data_request_used + + The Data Request infrastructure type which should be used. + + values: + + - laboratory[data_request_used] + - 'CMIP6' + + num type: 'string' + + institution_id + + Institution identifier. + + fatal: True + + values: + + - laboratory[institution_id] + + num type: 'string' + + laboratory_used + + File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. + + values: + + - laboratory[laboratory_used] + - None + + num type: 'string' + + project + + Project associated with the simulation. + + values: + + - laboratory[project] + - 'CMIP6' + + num type: 'string' + + project_settings + + Project settings definition file to be used. + + values: + + - laboratory[project_settings] + - init[project] + + num type: 'string' + + save_project_settings + + The path of the file where the complete project settings will be written, if needed. + + values: + + - laboratory[save_project_settings] + - None + + num type: 'string' + + vocabulary_config + + Configuration file of the vocabulary to be used. + + values: + + - laboratory[vocabulary_config] + - '__package-root__/vocabulary/vocabulary.json' + + num type: 'string' + + vocabulary_project + + The vocabulary project which should be used. + + values: + + - laboratory[vocabulary_project] formatted with function from self named lower({}) + - init[project] formatted with function from self named lower({}) + + num type: 'string' + + vocabulary_used + + The vocabulary infrastructure type which should be used. + + values: + + - laboratory[vocabulary_used] + - None + + num type: 'string' + Internal values --------------- .. glossary:: @@ -10,9 +148,7 @@ Internal values CFMIP has an elaborated requirement for defining subhr frequency; by default, dr2xml uses 1 time step. - fatal: False - - default values: + values: - laboratory[CFsubhr_frequency] - '1ts' @@ -23,9 +159,9 @@ Internal values Controlled vocabulary file containing experiment characteristics. - fatal: False - - default values: read_json_file('{}{}_experiment_id.json'.format(dict[cvspath], internal[project]))[experiment_id][internal[experiment_id]] + values: + + - read_json_file(function from self named format('cvspath'= dict[cvspath], 'project'= init[project]))[experiment_id][internal[experiment_id]] num type: 'string' @@ -33,9 +169,7 @@ Internal values DR01.00.21 does not include Gibraltar strait, which is requested by OMIP. Can include it, if model provides it as last value of array. - fatal: False - - default values: + values: - laboratory[add_Gibraltar] - False @@ -48,7 +182,9 @@ Internal values fatal: True - default values: internal[CV_experiment][additional_allowed_model_components] + values: + + - internal[CV_experiment][additional_allowed_model_components] num type: 'string' @@ -56,9 +192,7 @@ Internal values Some scenario experiment in DR 01.00.21 do not request tos on 1 degree grid, while other do. If you use grid_policy=adhoc and had not changed the mapping of function. grids.lab_adhoc_grid_policy to grids.CNRM_grid_policy, next setting can force any tos request to also produce tos on a 1 degree grid. - fatal: False - - default values: + values: - laboratory[adhoc_policy_do_add_1deg_grid_for_tos] - False @@ -69,9 +203,7 @@ Internal values Should we allow for duplicate vars: two vars with same frequency, shape and realm, which differ only by the table. In DR01.00.21, this actually applies to very few fields (ps-Aermon, tas-ImonAnt, areacellg-IfxAnt). - fatal: False - - default values: + values: - laboratory[allow_duplicates] - True @@ -84,7 +216,7 @@ Internal values fatal: True - default values: + values: - laboratory[allow_duplicates_in_same_table] - False @@ -95,9 +227,7 @@ Internal values DR has sn attributes for MIP variables. They can be real,CF-compliant, standard_names or pseudo_standard_names, i.e. not yet approved labels. Default is to use only CF ones. - fatal: False - - default values: + values: - laboratory[allow_pseudo_standard_names] - False @@ -108,9 +238,7 @@ Internal values When using select='no', Xios may enter an endless loop, which is solved if next setting is False. - fatal: False - - default values: + values: - laboratory[allow_tos_3hr_1deg] - True @@ -121,19 +249,17 @@ Internal values In some instances, the experiment start year is not explicit or is doubtful in DR. See file doc/some_experiments_starty_in_DR01.00.21. You should then specify it, using next setting in order that requestItems analysis work in all cases. In some other cases, DR requestItems which apply to the experiment form its start does not cover its whole duration and have a wrong duration (computed based on a wrong start year); They necessitate to fix the start year. - fatal: False - - default values: simulation[branch_year_in_child] + values: + + - simulation[branch_year_in_child] num type: 'string' branching - Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. + Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. - fatal: False - - default values: + values: - laboratory[branching][internal[source_id]] - {} @@ -144,9 +270,7 @@ Internal values If the CMIP6 Controlled Vocabulary doesn't allow all the components you activate, you can set next toggle to True - fatal: False - - default values: + values: - laboratory[bypass_CV_components] - False @@ -157,9 +281,7 @@ Internal values Estimate of number of bytes per floating value, given the chosen :term:`compression_level`. - fatal: False - - default values: + values: - laboratory[bytes_per_float] - 2 @@ -172,7 +294,9 @@ Internal values fatal: True - default values: simulation[configuration] + values: + + - simulation[configuration] num type: 'string' @@ -182,98 +306,68 @@ Internal values fatal: True - default values: dict[context] - - num type: 'string' - - data_request_config - - Configuration file of the data request content to be used - - fatal: False - - default values: - - - laboratory[data_request_config] - - '/home/rigoudyg/dev/DR2XML/dr2xml_source/dr2xml/dr_interface/CMIP7_config' - - num type: 'string' - - data_request_content_version - - Version of the data request content to be used - - fatal: False - - default values: + values: - - laboratory[data_request_content_version] - - 'latest_stable' + - dict[context] num type: 'string' - data_request_path - - Path where the data request API used is placed. + debug_parsing - fatal: False + In order to identify which xml files generates a problem, you can use this flag. - default values: + values: - - laboratory[data_request_path] - - None + - laboratory[debug_parsing] + - False num type: 'string' - data_request_used - - The Data Request infrastructure type which should be used. + dr2xml_manages_enddate - fatal: False + A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. - default values: + values: - - laboratory[data_request_used] - - 'CMIP6' + - laboratory[dr2xml_manages_enddate] + - True num type: 'string' - debug_parsing - - In order to identify which xml files generates a problem, you can use this flag. + end_year - fatal: False + If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value - default values: + values: - - laboratory[debug_parsing] + - simulation[end_year] - False num type: 'string' - dr2xml_manages_enddate + excluded_expgroups_lset - A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. - - fatal: True + List of the experiments groups that will be excluded from outputs from laboratory settings. - default values: + values: - - laboratory[dr2xml_manages_enddate] - - True + - laboratory[excluded_expgroups] + - [] - num type: 'string' + target type: 'list' - end_year + num type: 'string' - If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value + excluded_expgroups_sset - fatal: False + List of the experiments groups that will be excluded from outputs from simulation settings. - default values: + values: - - simulation[end_year] - - False + - simulation[excluded_expgroups] + - [] + + target type: 'list' num type: 'string' @@ -281,169 +375,169 @@ Internal values List of the opportunities that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_opportunities_sset List of the opportunities that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_pairs_lset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_pairs_sset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_request_links List of links un data request that should not been followed (those request are not taken into account). - fatal: False - - default values: + values: - laboratory[excluded_request_links] - [] + target type: 'list' + num type: 'string' excluded_spshapes_lset The list of shapes that should be excluded (all variables in those shapes will be excluded from outputs). - fatal: False - - default values: + values: - laboratory[excluded_spshapes] - [] + target type: 'list' + num type: 'string' excluded_tables_lset List of the tables that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_tables_sset List of the tables that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_vargroups_lset List of the variables groups that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vargroups_sset List of the variables groups that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vars_lset List of CMOR variables to exclude from the result based on previous Data Request extraction from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vars] - [] + target type: 'list' + num type: 'string' excluded_vars_per_config A dictionary which keys are configurations and values the list of variables that must be excluded for each configuration. - fatal: False - - default values: + values: - laboratory[excluded_vars_per_config][internal[configuration]] - [] + target type: 'list' + num type: 'string' excluded_vars_sset List of CMOR variables to exclude from the result based on previous Data Request extraction from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vars] - [] + target type: 'list' + num type: 'string' experiment_for_requests @@ -452,7 +546,7 @@ Internal values fatal: True - default values: + values: - simulation[experiment_for_requests] - internal[experiment_id] @@ -461,11 +555,13 @@ Internal values experiment_id - Root experiment identifier. + Root experiment identifier fatal: True - default values: simulation[experiment_id] + values: + + - simulation[experiment_id] num type: 'string' @@ -473,9 +569,7 @@ Internal values If you want to produce the same variables set for all members, set this parameter to False. - fatal: False - - default values: + values: - simulation[filter_on_realization] - laboratory[filter_on_realization] @@ -487,9 +581,7 @@ Internal values You may provide some variables already horizontally remapped to some grid (i.e. Xios domain) in external files. The varname in file must match the referenced id in pingfile. Tested only for fixed fields. A dictionary with variable id as key and a dictionary as value: the key must be the grid id, the value a dictionary with the file for each resolution. - fatal: False - - default values: + values: - laboratory[fx_from_file] - [] @@ -502,7 +594,9 @@ Internal values fatal: True - default values: laboratory[grid_choice][internal[source_id]] + values: + + - laboratory[grid_choice][internal[source_id]] num type: 'string' @@ -512,7 +606,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_policy] - False @@ -525,7 +619,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_prefix] - internal[ping_variables_prefix] @@ -534,11 +628,13 @@ Internal values grids - Grids : per model resolution and per context :- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)- Xios id for the production grid (if it is not the native grid),- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)- resolution of the production grid (using CMIP6 conventions),- grid description + Grids : per model resolution and per context :\n- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)\n- Xios id for the production grid (if it is not the native grid)\n- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)\n- resolution of the production grid (using CMIP6 conventions)\n- grid description fatal: True - default values: laboratory[grids] + values: + + - laboratory[grids] num type: 'string' @@ -548,7 +644,7 @@ Internal values fatal: True - default values: + values: - laboratory[grids_dev] - {} @@ -559,9 +655,7 @@ Internal values Variables to be grouped in the same output file (provided additional conditions are filled). - fatal: False - - default values: + values: - simulation[grouped_vars_per_file] - laboratory[grouped_vars_per_file] @@ -569,143 +663,146 @@ Internal values num type: 'string' + included_expgroups + + List of experiments groups that will be processed (all others will not). + + values: + + - simulation[included_expgroups] + - internal[included_expgroups_lset] + + target type: 'list' + + num type: 'string' + + included_expgroups_lset + + List of experiments groups that will be processed (all others will not) from laboratory settings. + + values: + + - laboratory[included_expgroups] + - [] + + target type: 'list' + + num type: 'string' + included_opportunities List of opportunities that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_opportunities] - internal[included_opportunities_lset] + target type: 'list' + num type: 'string' included_opportunities_lset List of opportunities that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_opportunities] - [] + target type: 'list' + num type: 'string' included_request_links List of the request links that will be processed (all others will not). - fatal: False - - default values: + values: - laboratory[included_request_links] - [] + target type: 'list' + num type: 'string' included_tables List of tables that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_tables] - internal[included_tables_lset] + target type: 'list' + num type: 'string' included_tables_lset List of tables that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_tables] - [] + target type: 'list' + num type: 'string' included_vargroups List of variables groups that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_vargroups] - internal[included_vargroups_lset] + target type: 'list' + num type: 'string' included_vargroups_lset List of variables groups that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vargroups] - [] + target type: 'list' + num type: 'string' included_vars Variables to be considered from the Data Request (all others will not) - fatal: False - - default values: + values: - simulation[included_vars] - internal[included_vars_lset] + target type: 'list' + num type: 'string' included_vars_lset Variables to be considered from the Data Request (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vars] - [] - num type: 'string' - - institution_id - - Institution identifier. - - fatal: True - - default values: laboratory[institution_id] - - num type: 'string' - - laboratory_used - - File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. - - fatal: False - - default values: - - - laboratory[laboratory_used] - - None + target type: 'list' num type: 'string' @@ -713,9 +810,7 @@ Internal values Full path to the file which contains the list of home variables to be taken into account, in addition to the Data Request. - fatal: False - - default values: + values: - simulation[listof_home_vars] - laboratory[listof_home_vars] @@ -727,9 +822,7 @@ Internal values The maximum size of generated files in number of floating values. - fatal: False - - default values: + values: - laboratory[max_file_size_in_floats] - 500000000.0 @@ -742,7 +835,7 @@ Internal values fatal: True - default values: + values: - simulation[max_priority] - internal[max_priority_lset] @@ -755,7 +848,9 @@ Internal values fatal: True - default values: laboratory[max_priority] + values: + + - laboratory[max_priority] num type: 'string' @@ -763,9 +858,7 @@ Internal values The maximum number of years that should be putted in a single file. - fatal: True - - default values: + values: - simulation[max_split_freq] - laboratory[max_split_freq] @@ -779,7 +872,9 @@ Internal values fatal: True - default values: laboratory[mips] + values: + + - laboratory[mips] num type: 'string' @@ -789,7 +884,7 @@ Internal values fatal: True - default values: + values: - laboratory[nemo_sources_management_policy_master_of_the_world] - False @@ -798,11 +893,9 @@ Internal values non_standard_attributes - You may add a series of NetCDF attributes in all files for this simulation - - fatal: False + You may add a series of NetCDF attributes in all files for this simulation. - default values: + values: - laboratory[non_standard_attributes] - {} @@ -813,9 +906,7 @@ Internal values If your model has some axis which does not have all its attributes as in DR, and you want dr2xml to fix that it, give here the correspondence from model axis id to DR dim/grid id. For label dimensions you should provide the list of labels, ordered as in your model, as second element of a pair. Label-type axes will be processed even if not quoted. Scalar dimensions are not concerned by this feature. A dictionary with (axis_id, axis_correct_id) or (axis_id, tuple of labels) as key, values. - fatal: False - - default values: + values: - laboratory[non_standard_axes] - {} @@ -826,9 +917,7 @@ Internal values Name of the orography field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[orography_field_name] - 'orog' @@ -837,11 +926,13 @@ Internal values orphan_variables - A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context) + A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context). fatal: True - default values: laboratory[orphan_variables] + values: + + - laboratory[orphan_variables] num type: 'string' @@ -849,9 +940,7 @@ Internal values Full path of the directory which contains extra tables. - fatal: False - - default values: + values: - simulation[path_extra_tables] - laboratory[path_extra_tables] @@ -863,9 +952,7 @@ Internal values The path of the directory which, at run time, contains the root XML file (iodef.xml). - fatal: False - - default values: + values: - laboratory[path_to_parse] - './' @@ -876,9 +963,7 @@ Internal values A dictionary containing, for each perso or dev variables with a XY-perso shape, and for each vertical coordinate associated, the main attributes of the dimension. - fatal: False - - default values: + values: - simulation[perso_sdims_description] - {} @@ -891,7 +976,9 @@ Internal values fatal: True - default values: laboratory[ping_variables_prefix] + values: + + - laboratory[ping_variables_prefix] num type: 'string' @@ -899,9 +986,9 @@ Internal values Name of the orography field name to be used to compute height over orog fields prefixed with :term:`ping_variable_prefix`. - fatal: False - - default values: '{}{}'.format(internal[ping_variables_prefix], internal[orography_field_name]) + values: + + - function from self named format('prefix'= internal[ping_variables_prefix], 'variable'= internal[orography_field_name]) num type: 'string' @@ -909,9 +996,7 @@ Internal values For an extended printout of selected CMOR variables, grouped by variable label. - fatal: False - - default values: + values: - laboratory[print_stats_per_var_label] - False @@ -922,38 +1007,10 @@ Internal values If the value is a list, only the file/field variables listed here will be put in output files. If boolean, tell if the file/field variables should be put in output files. - fatal: False - - default values: + values: - laboratory[print_variables] - - True - - num type: 'string' - - project - - Project associated with the simulation. - - fatal: False - - default values: - - - laboratory[project] - - 'CMIP6' - - num type: 'string' - - project_settings - - Project settings definition file to be used. - - fatal: False - - default values: - - - laboratory[project_settings] - - internal[project] + - True num type: 'string' @@ -961,9 +1018,7 @@ Internal values Realization number. - fatal: False - - default values: + values: - simulation[realization_index] - '1' @@ -972,11 +1027,13 @@ Internal values realms_per_context - A dictionary which keys are context names and values the lists of realms associated with each context + A dictionary which keys are context names and values the lists of realms associated with each context. fatal: True - default values: laboratory[realms_per_context][internal[context]] + values: + + - laboratory[realms_per_context][internal[context]] num type: 'string' @@ -986,7 +1043,9 @@ Internal values fatal: True - default values: internal[CV_experiment][required_model_components] + values: + + - internal[CV_experiment][required_model_components] num type: 'string' @@ -996,20 +1055,10 @@ Internal values fatal: True - default values: laboratory[sampling_timestep] - - num type: 'string' - - save_project_settings - - The path of the file where the complete project settings will be written, if needed. - - fatal: False - - default values: + values: - - laboratory[save_project_settings] - - None + - laboratory[sampling_timestep] + - 2 num type: 'string' @@ -1017,9 +1066,9 @@ Internal values List of the sectors to be considered. - fatal: False - - default values: laboratory[sectors] + values: + + - laboratory[sectors] num type: 'string' @@ -1029,7 +1078,9 @@ Internal values fatal: True - default values: dict[select] + values: + + - dict[select] authorized values: @@ -1039,43 +1090,65 @@ Internal values num type: 'string' + select_excluded_expgroups + + Excluded experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_expgroups_lset] + - + + num type: 'string' + select_excluded_opportunities Excluded opportunities for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_opportunities_lset]', 'internal[excluded_opportunities_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_opportunities_lset] + - num type: 'string' @@ -1085,37 +1158,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_pairs_lset]', 'internal[excluded_pairs_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_pairs_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_pairs_lset] + - num type: 'string' @@ -1125,37 +1189,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[excluded_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[excluded_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1165,37 +1220,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_tables_lset]', 'internal[excluded_tables_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_tables_lset] + - num type: 'string' @@ -1205,37 +1251,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vargroups_lset]', 'internal[excluded_vargroups_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vargroups_lset] + - num type: 'string' @@ -1245,37 +1282,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vars_lset]', 'internal[excluded_vars_sset]', 'internal[excluded_vars_per_config]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vars_lset] + - num type: 'string' @@ -1285,37 +1313,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: + values: - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[grid_choice] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: 'LR' - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[grid_choice] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: 'LR' + - + + num type: 'string' + + select_included_expgroups + + Included experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_expgroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_expgroups_lset] + - num type: 'string' @@ -1325,37 +1375,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_opportunities] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_opportunities] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_opportunities_lset] + - num type: 'string' @@ -1365,37 +1406,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1405,77 +1437,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_tables] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_tables] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_tables_lset] + - num type: 'string' select_included_vargroups - Included variables groups for variable selection. + Included variable groups for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vargroups] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vargroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vargroups_lset] + - num type: 'string' @@ -1485,37 +1499,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vars] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vars] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vars_lset] + - num type: 'string' @@ -1525,37 +1530,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[max_priority] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[max_priority_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[max_priority] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[max_priority_lset] + - num type: 'string' @@ -1565,37 +1561,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[mips][internal[select_grid_choice]]sort_mips() - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[mips]sort_mips() - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: function from functions_file named sort_mips('mips'= internal[mips][internal[select_grid_choice]]) + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: function from functions_file named sort_mips('mips'= internal[mips]) + - num type: 'string' @@ -1605,40 +1592,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'on_expt_and_year' - - 'on_expt' - - - value: True - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'no' - - - value: False - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt_and_year' + - - 'on_expt' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'no' + - + - values: False + - num type: 'string' @@ -1648,40 +1626,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'on_expt_and_year' - - - value: internal[year] - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'no' - - 'on_expt' - - - value: None - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'on_expt_and_year' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt' + - - 'no' + - + - values: False + - num type: 'string' @@ -1691,37 +1660,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[sizes] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[sizes] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1731,47 +1691,38 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[tierMax] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[tierMax_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[tierMax] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[tierMax_lset] + - num type: 'string' simple_domain_grid_regexp - If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: 1) it must be a grid which has only a domain 2) the domain name must be extractable from the grid_id using a regexp and a group number Example: using a pattern that returns full id except for a '_grid' suffix - - fatal: False + If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: \n1) it must be a grid which has only a domain \n2) the domain name must be extractable from the grid_id using a regexp and a group number \nExample: using a pattern that returns full id except for a '_grid' suffix - default values: laboratory[simple_domain_grid_regexp] + values: + + - laboratory[simple_domain_grid_regexp] num type: 'string' @@ -1781,7 +1732,9 @@ Internal values fatal: True - default values: laboratory[sizes][internal[grid_choice]]format_sizes() + values: + + - function from functions_file named format_sizes('sizes'= laboratory[sizes][internal[grid_choice]]) num type: 'string' @@ -1791,7 +1744,7 @@ Internal values fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][0] - simulation[source_id] @@ -1800,11 +1753,11 @@ Internal values source_type - If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote "AGCM AER". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit + If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote \"AGCM AER\". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][1] - simulation[source_type] @@ -1816,9 +1769,7 @@ Internal values This variable is used when some variables are computed with a period which is not the basic timestep. A dictionary which keys are non standard timestep and values the list of variables which are computed at this timestep. - fatal: False - - default values: + values: - laboratory[special_timestep_vars] - [] @@ -1829,9 +1780,7 @@ Internal values Path to the split frequencies file to be used. - fatal: False - - default values: + values: - simulation[split_frequencies] - laboratory[split_frequencies] @@ -1841,11 +1790,13 @@ Internal values synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. + Frequency at which the synchronisation between buffer and filesystem is done. - fatal: False - - default values: [] + values: + + - simulation[synchronisation_frequency] + - laboratory[synchronisation_frequency] + - None num type: 'string' @@ -1855,7 +1806,7 @@ Internal values fatal: True - default values: + values: - simulation[tierMax] - internal[tierMax_lset] @@ -1868,7 +1819,9 @@ Internal values fatal: True - default values: laboratory[tierMax] + values: + + - laboratory[tierMax] num type: 'string' @@ -1878,7 +1831,7 @@ Internal values fatal: True - default values: + values: - laboratory[too_long_periods] - [] @@ -1889,9 +1842,7 @@ Internal values Should xml output files use the `@` symbol for definitions for instant variables? - fatal: False - - default values: + values: - laboratory[useAtForInstant] - False @@ -1904,7 +1855,7 @@ Internal values fatal: True - default values: + values: - laboratory[use_cmorvar_label_in_filename] - False @@ -1915,9 +1866,7 @@ Internal values Say if you want to use XIOS union/zoom axis to optimize vertical interpolation requested by the DR. - fatal: False - - default values: + values: - laboratory[use_union_zoom] - False @@ -1928,9 +1877,7 @@ Internal values Operation done for vertical interpolation. - fatal: False - - default values: + values: - laboratory[vertical_interpolation_operation] - 'instant' @@ -1941,9 +1888,9 @@ Internal values Time frequency of vertical interpolation. - fatal: False - - default values: laboratory[vertical_interpolation_sample_freq] + values: + + - laboratory[vertical_interpolation_sample_freq] num type: 'string' @@ -1951,9 +1898,7 @@ Internal values Version of XIOS used. - fatal: False - - default values: + values: - laboratory[xios_version] - 2 @@ -1966,7 +1911,9 @@ Internal values fatal: True - default values: dict[year] + values: + + - dict[year] num type: 'string' @@ -1974,9 +1921,7 @@ Internal values Name of the geopotential height field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[zg_field_name] - 'zg' @@ -1992,9 +1937,7 @@ Common values HDL associated with the project. - fatal: False - - default values: + values: - simulation[HDL] - laboratory[HDL] @@ -2006,9 +1949,7 @@ Common values MIP(s) name(s). - fatal: False - - default values: + values: - simulation[activity_id] - laboratory[activity_id] @@ -2020,9 +1961,7 @@ Common values Branching procedure. - fatal: False - - default values: + values: - simulation[branch_method] - 'standard' @@ -2033,9 +1972,7 @@ Common values Branch month in parent simulation with respect to its time axis. - fatal: False - - default values: + values: - simulation[branch_month_in_parent] - '1' @@ -2046,90 +1983,78 @@ Common values Branch year in parent simulation with respect to its time axis. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: simulation[branch_year_in_parent] + - + - check to perform: 'eq' + - + - reference values: internal[branching][internal[experiment_id]][1] + - + - values: simulation[branch_year_in_parent] + - + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'neq' + - + - reference values: internal[branching] + - + - values: simulation[branch_year_in_parent] + - + + forbidden values: - None - 'None' - '' - 'N/A' - cases: - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: internal[branching] - - Condition: - - check value: simulation[branch_year_in_parent] - - check to do: 'eq' - - reference values: internal[branching][internal[experiment_id]][1] - - - value: simulation[branch_year_in_parent] - - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'neq' - - reference values: internal[branching] - - - value: simulation[branch_year_in_parent] - - num type: 'string' - comment_lab + comment_lset A character string containing additional information about the models from laboratory settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - laboratory[comment] - '' num type: 'string' - comment_sim + comment_sset A character string containing additional information about the models from simulation settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - simulation[comment] - '' num type: 'string' - compression_level + commercial_license + + Either commercial or not commercial license + + fatal: True + + values: + + - laboratory[commercial_license] + - 'NonCommercial-' + + num type: 'string' - The compression level to be applied to NetCDF output files. + compression_level - fatal: False + The compression level to be applied to NetCDF output files." - default values: + values: - laboratory[compression_level] - '0' @@ -2140,9 +2065,7 @@ Common values Email address of the data producer. - fatal: False - - default values: + values: - simulation[contact] - laboratory[contact] @@ -2154,9 +2077,9 @@ Common values Version of the conventions used. - fatal: False - - default values: dr2xml.config.conventions + values: + + - config.conventions num type: 'string' @@ -2164,9 +2087,9 @@ Common values Version of the conventions used. - fatal: False - - default values: dr2xml.config.CMIP6_conventions_version + values: + + - config.CMIP6_conventions_version num type: 'string' @@ -2176,7 +2099,9 @@ Common values fatal: True - default values: data_request.get_version() + values: + + - function from data_request named get_version({}) num type: 'string' @@ -2184,9 +2109,9 @@ Common values Date range format to be used in file definition names. - fatal: False - - default values: '%start_date%-%end_date%' + values: + + - '%start_date%-%end_date%' num type: 'string' @@ -2194,12 +2119,10 @@ Common values Description of the simulation. - fatal: False - - default values: + values: - - simulation[description] - laboratory[description] + - simulation[description] num type: 'string' @@ -2207,9 +2130,9 @@ Common values Version of dr2xml used. - fatal: False - - default values: dr2xml.config.version + values: + + - config.version num type: 'string' @@ -2217,9 +2140,9 @@ Common values Name of the experiment. - fatal: False - - default values: simulation[experiment] + values: + + - simulation[experiment] num type: 'string' @@ -2227,9 +2150,7 @@ Common values Experiment label to use in file names and attribute. - fatal: False - - default values: + values: - simulation[expid_in_filename] - internal[experiment_id] @@ -2242,9 +2163,7 @@ Common values Index for variant of forcing. - fatal: False - - default values: + values: - simulation[forcing_index] - '1' @@ -2255,9 +2174,7 @@ Common values In case of replacement of previously produced data, description of any changes in the production chain. - fatal: False - - default values: + values: - simulation[history] - 'none' @@ -2268,9 +2185,9 @@ Common values Location of documentation. - fatal: False - - default values: laboratory[info_url] + values: + + - laboratory[info_url] num type: 'string' @@ -2278,9 +2195,7 @@ Common values Index for variant of initialization method. - fatal: False - - default values: + values: - simulation[initialization_index] - '1' @@ -2291,22 +2206,75 @@ Common values Full name of the institution of the data producer. - fatal: False - - default values: + values: - laboratory[institution] - - read_json_file('{}{}_institution_id.json'.format(dict[cvspath], internal[project]))[institution_id][internal[institution_id]] + - read_json_file(function from self named format('cvspath'= dict[cvspath], 'project'= init[project]))[institution_id][init[institution_id]] num type: 'string' license + Text of the license which applies + + fatal: True + + values: + + - common[license_file][0] + - common[license_file][license] + + num type: 'string' + + license_file + File where the license associated with the produced output files can be found. - fatal: False + fatal: True + + values: + + - read_json_file(function from self named format('cvspath'= dict[cvspath], 'project'= init[project]))[license] + + num type: 'string' + + license_id + + License id + + fatal: True + + values: + + - common[license_file][license][laboratory[license_id]][license_id] + - common[license_file][license_options][CC BY-NC-SA 4.0][license_id] + - '' + + num type: 'string' + + license_terms + + Terms of the license + + fatal: True + + values: + + - function from functions_file named fill_license('value'= common[license], 'institution_id'= init[institution_id], 'info_url'= common[info_url], 'commercial_license'= common[commercial_license], 'license_id'= common[license_id], 'license_url'= common[license_url]) + + num type: 'string' + + license_url + + License url - default values: read_json_file('{}{}_license.json'.format(dict[cvspath], internal[project]))[license][0] + fatal: True + + values: + + - common[license_file][license][laboratory[license_id]][license_url] + - common[license_file][license_options][CC BY-NC-SA 4.0][license_url] + - 'https://creativecommons.org/licenses' num type: 'string' @@ -2314,9 +2282,9 @@ Common values Name of the file which will contain the list of the patterns of perso and dev output file definition. - fatal: False - - default values: 'dr2xml_list_perso_and_dev_file_names' + values: + + - 'dr2xml_list_perso_and_dev_file_names' num type: 'string' @@ -2324,11 +2292,9 @@ Common values Id of the member done. - fatal: False - - default values: + values: - - '{}-{}'.format(common[sub_experiment_id], common[variant_label]) + - function from self named format('sub_exp'= common[sub_experiment_id], 'variant'= common[variant_label]) - common[variant_label] forbidden patterns: 'none-.*' @@ -2339,12 +2305,34 @@ Common values MIP associated with the simulation. - fatal: False + values: + + - common[mip_era_sset] + - common[mip_era_lset] + + forbidden values: None + + num type: 'string' + + mip_era_lset + + MIP associated with the simulation from laboratory settings. - default values: + values: - - simulation[mip_era] - laboratory[mip_era] + - None + + num type: 'string' + + mip_era_sset + + MIP associated with the simulation from simulation settings. + + values: + + - simulation[mip_era] + - None num type: 'string' @@ -2352,9 +2340,7 @@ Common values We can control the max output level set for all output files. - fatal: False - - default values: + values: - laboratory[output_level] - '10' @@ -2365,9 +2351,7 @@ Common values Description of sub-experiment. - fatal: False - - default values: + values: - simulation[parent_activity_id] - simulation[activity_id] @@ -2381,9 +2365,7 @@ Common values Parent experiment identifier. - fatal: False - - default values: + values: - simulation[parent_experiment_id] - laboratory[parent_experiment_id] @@ -2395,9 +2377,9 @@ Common values Parent’s associated MIP cycle. - fatal: False - - default values: simulation[parent_mip_era] + values: + + - simulation[parent_mip_era] num type: 'string' @@ -2405,9 +2387,9 @@ Common values Parent model identifier. - fatal: False - - default values: simulation[parent_source_id] + values: + + - simulation[parent_source_id] num type: 'string' @@ -2415,9 +2397,7 @@ Common values Reference year in parent simulation. - fatal: False - - default values: + values: - simulation[parent_time_ref_year] - '1850' @@ -2428,9 +2408,9 @@ Common values Time units used in parent. - fatal: False - - default values: simulation[parent_time_units] + values: + + - simulation[parent_time_units] num type: 'string' @@ -2438,9 +2418,9 @@ Common values Parent variant label. - fatal: False - - default values: simulation[parent_variant_label] + values: + + - simulation[parent_variant_label] num type: 'string' @@ -2448,9 +2428,7 @@ Common values Index for model physics variant. - fatal: False - - default values: + values: - simulation[physics_index] - '1' @@ -2463,7 +2441,9 @@ Common values fatal: True - default values: dict[prefix] + values: + + - dict[prefix] num type: 'string' @@ -2471,9 +2451,9 @@ Common values References associated with the simulation. - fatal: False - - default values: laboratory[references] + values: + + - laboratory[references] num type: 'string' @@ -2481,11 +2461,9 @@ Common values Name of the model. - fatal: False - - default values: + values: - - read_json_file('{}{}_source_id.json'.format(dict[cvspath], internal[project]))[source_id][internal[source_id]]make_source_string('source_id'= internal[source_id]) + - function from functions_file named make_source_string('source'= read_json_file(function from self named format('cvspath'= dict[cvspath], 'project'= init[project]))[source_id][internal[source_id]], 'source_id'= internal[source_id]) - laboratory[source] num type: 'string' @@ -2494,9 +2472,7 @@ Common values Sub-experiment name. - fatal: False - - default values: + values: - simulation[sub_experiment] - 'none' @@ -2507,9 +2483,7 @@ Common values Sub-experiment identifier. - fatal: False - - default values: + values: - simulation[sub_experiment_id] - 'none' @@ -2520,11 +2494,11 @@ Common values It is recommended that some description be included to help identify major differences among variants, but care should be taken to record correct information. dr2xml will add in all cases: 'Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.' - fatal: False - - default values: simulation[variant_info] + values: + + - simulation[variant_info] - skip values: '' + forbidden values: '' num type: 'string' @@ -2532,9 +2506,9 @@ Common values Label of the variant done. - fatal: False - - default values: 'r{}i{}p{}f{}'.format(internal[realization_index], common[initialization_index], common[physics_index], common[forcing_index]) + values: + + - function from self named format('realization'= internal[realization_index], 'initialization'= common[initialization_index], 'physics'= common[physics_index], 'forcing'= common[forcing_index]) num type: 'string' @@ -2552,19 +2526,19 @@ Project settings Id of the axis. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' positive - How is the axis oriented? - - fatal: False + Hox is the axis oriented? - default values: [] + values: + + - attrs[positive] num type: 'string' @@ -2572,9 +2546,9 @@ Project settings Number of values of this axis. - fatal: False - - default values: [] + values: + + - attrs[n_glo] num type: 'string' @@ -2582,11 +2556,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2598,9 +2572,9 @@ Project settings Reference axis. - fatal: False - - default values: [] + values: + + - attrs[axis_ref] num type: 'string' @@ -2608,9 +2582,9 @@ Project settings Name of this axis. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -2618,27 +2592,25 @@ Project settings Standard name of the axis. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' - None - authorized types: - num type: 'string' long_name Long name of this axis. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -2646,21 +2618,9 @@ Project settings Precision of the axis. - fatal: False - - default values: [] - - skip values: - - - '' - - 'None' - - None - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -2671,17 +2631,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' unit Unit of the axis. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -2693,11 +2665,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2709,11 +2681,11 @@ Project settings Bounds of the axis. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -2725,11 +2697,11 @@ Project settings Name dimension of the axis. - fatal: False - - default values: [] + values: + + - attrs[dim_name] - skip values: + forbidden values: - '' - 'None' @@ -2741,11 +2713,11 @@ Project settings Label of the axis. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -2757,11 +2729,11 @@ Project settings Axis type. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -2781,14 +2753,9 @@ Project settings Precision associated with the axis group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -2800,6 +2767,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' context @@ -2811,9 +2784,9 @@ Project settings Version of the Data Request used - fatal: False - - default values: '{} Data Request version {}'.format(internal[data_request_used], common[data_specs_version]) + values: + + - function from self named format('data_request_used'= init[data_request_used], 'data_specs_version'= common[data_specs_version]) num type: 'string' @@ -2821,9 +2794,9 @@ Project settings Controled vocabulary version used. - fatal: False - - default values: 'CMIP6-CV version ??' + values: + + - 'CMIP6-CV version ??' num type: 'string' @@ -2831,9 +2804,9 @@ Project settings Conventions version used. - fatal: False - - default values: 'CMIP6_conventions_version {}'.format(common[conventions_version]) + values: + + - 'CMIP6_conventions_version {}'.format(common[conventions_version]) num type: 'string' @@ -2841,9 +2814,9 @@ Project settings Version of dr2xml used - fatal: False - - default values: 'dr2xml version {}'.format(common[dr2xml_version]) + values: + + - function from self named format('dr2xml_version'= common[dr2xml_version]) num type: 'string' @@ -2851,9 +2824,9 @@ Project settings Laboratory settings used - fatal: False - - default values: 'Lab_and_model settings***newline***{}'.format(laboratory) + values: + + - function from self named format('laboratory'= laboratory) num type: 'string' @@ -2861,9 +2834,9 @@ Project settings Simulation_settings used - fatal: False - - default values: 'Simulation settings***newline***{}'.format(simulation) + values: + + - function from self named format('laboratory'= simulation) num type: 'string' @@ -2871,9 +2844,9 @@ Project settings Year used for the dr2xml's launch - fatal: False - - default values: 'Year processed {}'.format(internal[year]) + values: + + - function from self named format('year'= internal[year]) num type: 'string' @@ -2883,9 +2856,9 @@ Project settings Id of the context - fatal: False - - default values: internal[context] + values: + + - internal[context] num type: 'string' @@ -2898,29 +2871,29 @@ Project settings Id of the domain. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' ni_glo - Number of points on i dimension. - - fatal: False + Number of point in i dimension. - default values: [] + values: + + - attrs[ni_glo] num type: 'string' nj_glo - Number of points on j dimension. - - fatal: False + Number of points in j dimension. - default values: [] + values: + + - attrs[nj_glo] num type: 'string' @@ -2928,9 +2901,9 @@ Project settings Type of the domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -2938,9 +2911,9 @@ Project settings Precision of the domain. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -2948,9 +2921,9 @@ Project settings Latitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lat_name] num type: 'string' @@ -2958,9 +2931,9 @@ Project settings Longitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lon_name] num type: 'string' @@ -2968,9 +2941,9 @@ Project settings Name of the i dimension. - fatal: False - - default values: [] + values: + + - attrs[dim_i_name] num type: 'string' @@ -2978,9 +2951,9 @@ Project settings Reference domain. - fatal: False - - default values: [] + values: + + - attrs[domain_ref] num type: 'string' @@ -2996,14 +2969,9 @@ Project settings Precision associated with the domain group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -3015,6 +2983,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' duplicate_scalar @@ -3029,9 +3003,9 @@ Project settings Id of the field. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -3039,9 +3013,9 @@ Project settings Id of the reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -3049,9 +3023,9 @@ Project settings Name of the field. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3059,9 +3033,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -3069,9 +3043,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -3079,9 +3053,9 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] num type: 'string' @@ -3089,9 +3063,9 @@ Project settings Long name of the field. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -3099,9 +3073,9 @@ Project settings Standard name of the field. - fatal: False - - default values: [] + values: + + - attrs[standard_name] num type: 'string' @@ -3109,9 +3083,9 @@ Project settings Unit of the field. - fatal: False - - default values: [] + values: + + - attrs[unit] num type: 'string' @@ -3119,9 +3093,9 @@ Project settings Operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3129,9 +3103,9 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: [] + values: + + - attrs[detect_missing_value] num type: 'string' @@ -3139,9 +3113,9 @@ Project settings Precision of the field. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -3157,9 +3131,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -3167,9 +3141,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -3177,14 +3151,28 @@ Project settings XIOS field beacon (only for output fields) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: field_ref Reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -3192,9 +3180,10 @@ Project settings Name of the field. - fatal: False - - default values: variable.mipVarLabel + values: + + - attrs[name] + - common_tag[variable][mipVarLabel] num type: 'string' @@ -3202,11 +3191,11 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] - skip values: + forbidden values: - '' - 'None' @@ -3218,11 +3207,11 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] - skip values: + forbidden values: - '' - 'None' @@ -3234,9 +3223,10 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: 'True' + values: + + - attrs[detect_missing_value] + - 'True' num type: 'string' @@ -3246,12 +3236,11 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '0' - - '1.e+20' + - attrs[default_value] + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3262,6 +3251,11 @@ Project settings - 'integer': '0' - 'int': '0' + authorized values: + + - '0' + - '1.e+20' + num type: 'string' prec @@ -3270,13 +3264,10 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3287,15 +3278,22 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' cell_methods Cell method associated with the field. - fatal: False - - default values: variable.cell_methods + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] num type: 'string' @@ -3303,9 +3301,10 @@ Project settings Mode associated with the cell method of the field. - fatal: False - - default values: 'overwrite' + values: + + - attrs[cell_methods_mode] + - 'overwrite' num type: 'string' @@ -3313,9 +3312,9 @@ Project settings Operation performed on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3323,11 +3322,11 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] - skip values: + forbidden values: - '' - 'None' @@ -3339,11 +3338,11 @@ Project settings Expression used to compute the field. - fatal: False - - default values: [] + values: + + - attrs[expr] - skip values: + forbidden values: - '' - 'None' @@ -3357,14 +3356,13 @@ Project settings Comment associated with the field. - fatal: False - - default values: + values: - - simulation[comments][variable.label] - - laboratory[comments][variable.label] + - attrs[comment] + - simulation[comments][common_tag[variable][label]] + - laboratory[comments][common_tag[variable][label]] - skip values: + forbidden values: - '' - 'None' @@ -3376,11 +3374,12 @@ Project settings Standard name of the field. - fatal: False - - default values: variable.stdname + values: + + - attrs[standard_name] + - common_tag[variable][stdname] - skip values: + forbidden values: - '' - 'None' @@ -3392,14 +3391,13 @@ Project settings Description associated with the field. - fatal: False - - default values: + values: - - variable.description + - attrs[description] + - common_tag[variable][description] - 'None' - skip values: '' + forbidden values: '' num type: 'string' @@ -3407,9 +3405,10 @@ Project settings Long name of the field. - fatal: False - - default values: variable.long_name + values: + + - attrs[long_name] + - common_tag[variable][long_name] num type: 'string' @@ -3417,11 +3416,12 @@ Project settings Way the field should be interpreted. - fatal: False - - default values: variable.positive + values: + + - attrs[positive] + - common_tag[variable][positive] - skip values: + forbidden values: - '' - 'None' @@ -3433,9 +3433,10 @@ Project settings History associated with the field. - fatal: False - - default values: common[history] + values: + + - attrs[history] + - common[history] num type: 'string' @@ -3443,11 +3444,12 @@ Project settings Units associated with the field. - fatal: False - - default values: variable.units + values: + + - attrs[units] + - common_tag[variable][units] - skip values: + forbidden values: - '' - 'None' @@ -3457,13 +3459,14 @@ Project settings cell_methods - Cell method associated with the field. - - fatal: False + Cell methods associated with the field. - default values: variable.cell_methods + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] - skip values: + forbidden values: - '' - 'None' @@ -3475,11 +3478,12 @@ Project settings Cell measures associated with the field. - fatal: False - - default values: variable.cell_measures + values: + + - attrs[cell_measures] + - common_tag[variable][cell_measures] - skip values: + forbidden values: - '' - 'None' @@ -3491,11 +3495,12 @@ Project settings Flag meanings associated with the field. - fatal: False - - default values: variable.flag_meanings + values: + + - attrs[flag_meanings] + - common_tag[variable][flag_meanings] - skip values: + forbidden values: - '' - 'None' @@ -3507,11 +3512,12 @@ Project settings Flag values associated with the field. - fatal: False - - default values: variable.flag_values + values: + + - attrs[flag_values] + - common_tag[variable][flag_values] - skip values: + forbidden values: - '' - 'None' @@ -3523,19 +3529,18 @@ Project settings Interval associated with the operation done on the field. - fatal: False - - default values: [] - - conditions: - Condition: + values: - check value: dict[operation] - - check to do: 'neq' - - reference values: 'once' - + - Condition: + - + - value to check: attrs[operation] + - + - check to perform: 'neq' + - + - reference values: 'once' + - + - values: attrs[interval_operation] + - num type: 'string' @@ -3548,9 +3553,9 @@ Project settings Id of the file. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -3558,9 +3563,9 @@ Project settings File name. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3568,9 +3573,9 @@ Project settings Mode in which the file will be open. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -3578,9 +3583,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3588,9 +3593,9 @@ Project settings Should the file be considered by XIOS. - fatal: False - - default values: [] + values: + + - attrs[enabled] num type: 'string' @@ -3603,9 +3608,10 @@ Project settings Type of file to be produced - fatal: False - - default values: 'one_file' + values: + + - attrs[type] + - 'one_file' num type: 'string' @@ -3613,9 +3619,10 @@ Project settings Should the file_definition be considered by XIOS - fatal: False - - default values: 'true' + values: + + - attrs[enabled] + - 'true' num type: 'string' @@ -3623,14 +3630,31 @@ Project settings XIOS file beacon (only for output files) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: id Id of the output file - fatal: False + fatal: True - default values: '{}_{}_{}'.format(variable.label, dict[table_id], dict[grid_label]) + values: + + - attrs[id] + - function from self named format('grid'= attrs[grid_label], 'table'= attrs[table_id], 'variable'= common_tag[variable][label]) num type: 'string' @@ -3640,7 +3664,9 @@ Project settings fatal: True - default values: build_filename('frequency'= variable.frequency, 'prefix'= common[prefix], 'table'= dict[table_id], 'source_id'= internal[source_id], 'expid_in_filename'= common[expid_in_filename], 'member_id'= common[member_id], 'grid_label'= dict[grid_label], 'date_range'= common[date_range], 'var_type'= variable.type, 'list_perso_dev_file'= common[list_perso_dev_file], 'label'= variable.label, 'mipVarLabel'= variable.mipVarLabel, 'use_cmorvar'= internal[use_cmorvar_label_in_filename]) + values: + + - function from functions_file named build_filename('frequency'= common_tag[variable][frequency], 'prefix'= common[prefix], 'table'= dict[table_id], 'source_id'= internal[source_id], 'expid_in_filename'= common[expid_in_filename], 'member_id'= common[member_id], 'grid_label'= dict[grid_label], 'date_range'= common[date_range], 'var_type'= common_tag[variable][type], 'list_perso_dev_file'= common[list_perso_dev_file], 'label'= common_tag[variable][label], 'mipVarLabel'= common_tag[variable][mipVarLabel], 'use_cmorvar'= internal[use_cmorvar_label_in_filename]) num type: 'string' @@ -3648,9 +3674,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3658,9 +3684,10 @@ Project settings Should the data be append to the file? - fatal: False - - default values: 'true' + values: + + - attrs[append] + - 'true' num type: 'string' @@ -3668,11 +3695,12 @@ Project settings Output level of the file. - fatal: False - - default values: common[output_level] + values: + + - attrs[output_level] + - common[output_level] - skip values: + forbidden values: - 'None' - '' @@ -3684,11 +3712,12 @@ Project settings Compression level of the file. - fatal: False - - default values: common[compression_level] + values: + + - attrs[compression_level] + - common[compression_level] - skip values: + forbidden values: - 'None' - '' @@ -3700,143 +3729,139 @@ Project settings Splitting frequency of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_freq_format Splitting frequency format of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq_format] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_start_offset Splitting start offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_start_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_end_offset Splitting end offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_end_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_last_date Splitting last date of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_last_date] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' time_units Time units of the file. - fatal: False - - default values: 'days' + values: + + - attrs[ time_units] + - 'days' num type: 'string' @@ -3844,9 +3869,10 @@ Project settings Time counter name. - fatal: False - - default values: 'time' + values: + + - attrs[time_counter_name] + - 'time' num type: 'string' @@ -3854,9 +3880,10 @@ Project settings Time counter type. - fatal: False - - default values: 'exclusive' + values: + + - attrs[time_counter] + - 'exclusive' num type: 'string' @@ -3864,9 +3891,10 @@ Project settings Time stamp name. - fatal: False - - default values: 'creation_date' + values: + + - attrs[time_stamp_name] + - 'creation_date' num type: 'string' @@ -3874,9 +3902,10 @@ Project settings Time stamp format. - fatal: False - - default values: '%Y-%m-%dT%H:%M:%SZ' + values: + + - attrs[time_stamp_format] + - '%Y-%m-%dT%H:%M:%SZ' num type: 'string' @@ -3884,9 +3913,10 @@ Project settings Unique identifier of the file name. - fatal: False - - default values: 'tracking_id' + values: + + - attrs[uuid_name] + - 'tracking_id' num type: 'string' @@ -3894,11 +3924,13 @@ Project settings Unique identifier of the file format. - fatal: False - - default values: 'hdl:{}/%uuid%'.format(common[HDL]) + values: + + - attrs[uuid_format] + - attrs[uuid_format] + - function from self named format('hdl'= common[HDL]) - skip values: + forbidden values: - 'None' - '' @@ -3910,21 +3942,23 @@ Project settings Convention used for the file. - fatal: False - - default values: common[convention_str] + values: + + - attrs[convention_str] + - common[convention_str] num type: 'string' synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. - - fatal: False + Frequency at which the synchronisation between buffer and filesystem is done. - default values: internal[synchronisation_frequency] + values: + + - attrs[synchronisation_frequency] + - internal[synchronisation_frequency] - skip values: + forbidden values: - 'None' - '' @@ -3938,9 +3972,10 @@ Project settings Activity id associated with the simulation. - fatal: False - - default values: common[activity_id] + values: + + - attrs[activity_id] + - common[activity_id] num type: 'string' @@ -3948,11 +3983,12 @@ Project settings Contact email. - fatal: False - - default values: common[contact] + values: + + - attrs[contact] + - common[contact] - skip values: + forbidden values: - 'None' - '' @@ -3964,9 +4000,10 @@ Project settings Version of the Data Request used. - fatal: False - - default values: common[data_specs_version] + values: + + - attrs[data_specs_version] + - common[data_specs_version] num type: 'string' @@ -3974,9 +4011,10 @@ Project settings Version of dr2xml used. - fatal: False - - default values: common[dr2xml_version] + values: + + - attrs[dr2xml_version] + - common[dr2xml_version] num type: 'string' @@ -3986,9 +4024,10 @@ Project settings output key: 'experiment_id' - fatal: False - - default values: common[expid_in_filename] + values: + + - attrs[expid_in_filename] + - common[expid_in_filename] num type: 'string' @@ -3996,29 +4035,29 @@ Project settings Description of the file. - fatal: False - - default values: + values: - - common[description] - - internal[CV_experiment][description] - - skip values: + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[description] + - - common[description] + - - internal[CV_experiment][description] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: common[expid_in_filename] - - num type: 'string' title_desc @@ -4027,69 +4066,70 @@ Project settings output key: 'title' - fatal: False - - default values: + values: - - common[description] - - internal[CV_experiment][description] - - skip values: + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[description] + - - common[description] + - - internal[CV_experiment][description] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: common[expid_in_filename] - - num type: 'string' experiment Experiment associated with the simulation. - fatal: False - - default values: + values: - - common[experiment] - - internal[CV_experiment][experiment] - - skip values: + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[experiment] + - - common[experiment] + - - internal[CV_experiment][experiment] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: common[expid_in_filename] - - num type: 'string' external_variables External variables associated with the file. - fatal: False - - default values: variable.cell_measuresbuild_external_variables() + values: + + - attrs[external_variables] + - function from functions_file named build_external_variables('cell_measures'= common_tag[variable][cell_measures]) - skip values: '' + forbidden values: '' num type: 'string' @@ -4097,9 +4137,10 @@ Project settings Forcing index associated with the simulation. - fatal: False - - default values: common[forcing_index] + values: + + - attrs[forcing_index] + - common[forcing_index] num type: 'int' @@ -4107,9 +4148,10 @@ Project settings Frequency associated with the file. - fatal: False - - default values: variable.frequency + values: + + - attrs[frequency] + - common_tag[variable][frequency] num type: 'string' @@ -4117,39 +4159,44 @@ Project settings Url to obtain further information associated with the simulation. - fatal: False - - default values: 'https://furtherinfo.es-doc.org/{}.{}.{}.{}.{}.{}'.format(variable.mip_era, internal[institution_id], internal[source_id], common[expid_in_filename], common[sub_experiment_id], common[variant_label]) - - skip values: + values: + + - Condition: + - + - value to check: common[mip_era_lset] + - + - check to perform: 'eq' + - + - reference values: None + - + - values: + - Condition: + - + - value to check: common[mip_era_sset] + - + - check to perform: 'eq' + - + - reference values: None + - + - values: function from self named format('mip_era'= common_tag[variable][mip_era], 'institution_id'= init[institution_id], 'source_id'= internal[source_id], 'expid'= common[expid_in_filename], 'sub_exp'= common[sub_experiment_id], 'variant'= common[variant_label]) + - + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: laboratory[mip_era] - - check to do: 'eq' - - Condition: - - check value: simulation[mip_era] - - check to do: 'eq' - - num type: 'string' grid Id of the grid used in the file. - fatal: False - - default values: [] + values: + + - attrs[grid] num type: 'string' @@ -4157,9 +4204,9 @@ Project settings Label of the grid used in the file. - fatal: False - - default values: [] + values: + + - attrs[grid_label] num type: 'string' @@ -4167,9 +4214,9 @@ Project settings Nominal resolution of the grid used in the file. - fatal: False - - default values: [] + values: + + - attrs[nominal_resolution] num type: 'string' @@ -4177,97 +4224,12 @@ Project settings Comment associated with the file. - fatal: False - - default values: [] - - skip values: '' - - cases: - Case: - - conditions: - Condition: - - check value: variable.comments - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}{}'.format(common[comment_lab], common[comment_sim], variable.comments) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}'.format(common[comment_lab], common[comment_sim]) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_sim] - - Case: - - conditions: - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_lab] - + values: + + - attrs[comment] + - function from self named format('var'= , , Condition:, , value to check: common_tag[variable][comments], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common_tag[variable][comments], , 'lset'= , , Condition:, , value to check: common[comment_lset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_lset], , 'sset'= , , Condition:, , value to check: common[comment_sset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_sset], ) + + forbidden values: '' num type: 'string' @@ -4275,9 +4237,10 @@ Project settings History associated with the file. - fatal: False - - default values: common[history] + values: + + - attrs[history] + - common[history] num type: 'string' @@ -4285,9 +4248,10 @@ Project settings Initialization index associated with the simulation. - fatal: False - - default values: common[initialization_index] + values: + + - attrs[initialization_index] + - common[initialization_index] num type: 'int' @@ -4297,7 +4261,10 @@ Project settings fatal: True - default values: internal[institution_id] + values: + + - attrs[institution_id] + - init[institution_id] num type: 'string' @@ -4307,7 +4274,10 @@ Project settings fatal: True - default values: common[institution] + values: + + - attrs[institution] + - common[institution] num type: 'string' @@ -4315,9 +4285,10 @@ Project settings License associated with the file. - fatal: False - - default values: common[license]fill_license('institution_id'= internal[institution_id], 'info_url'= common[info_url]) + values: + + - attrs[license] + - common[license_terms] num type: 'string' @@ -4325,12 +4296,11 @@ Project settings MIP associated with the simulation. - fatal: False - - default values: + values: + - attrs[mip_era] - common[mip_era] - - variable.mip_era + - common_tag[variable][mip_era] num type: 'string' @@ -4338,23 +4308,25 @@ Project settings Parent experiment id associated with the simulation. - fatal: False - - default values: common[parent_experiment_id] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_experiment_id] + - - common[parent_experiment_id] + - num type: 'string' @@ -4362,27 +4334,27 @@ Project settings MIP associated with the parent experiment. - fatal: False - - default values: - - - common[parent_mip_era] - - common[mip_era] - - variable.mip_era - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_mip_era] + - - common[parent_mip_era] + - - common[mip_era] + - - common_tag[variable][mip_era] + - num type: 'string' @@ -4390,23 +4362,25 @@ Project settings Activity id associated with the parent experiment. - fatal: False - - default values: common[parent_activity_id] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_activity_id] + - - common[parent_activity_id] + - num type: 'string' @@ -4414,26 +4388,26 @@ Project settings Model id of the parent experiment. - fatal: False - - default values: - - - common[parent_source_id] - - internal[source_id] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_source_id] + - - common[parent_source_id] + - - internal[source_id] + - num type: 'string' @@ -4441,26 +4415,26 @@ Project settings Time units of the parent experiment. - fatal: False - - default values: - - - common[parent_time_units] - - 'days since {}-01-01 00:00:00'.format(common[parent_time_ref_year]) - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_time_units] + - - common[parent_time_units] + - - 'days since {}-01-01 00:00:00'.format(common[parent_time_ref_year]) + - num type: 'string' @@ -4468,26 +4442,26 @@ Project settings Variant label of the parent experiment. - fatal: False - - default values: + values: - - common[parent_variant_label] - - common[variant_label] - - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_variant_label] + - - common[parent_variant_label] + - - common[variant_label] + - num type: 'string' @@ -4495,35 +4469,26 @@ Project settings Branch method of the simulation. - fatal: False - - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - - value: common[branch_method] - - Case: + values: - conditions: True - - value: 'no parent' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_method] + - - common[branch_method] + - + - 'no parent' num type: 'string' @@ -4531,75 +4496,76 @@ Project settings Branch time of the simulation in the parent's one. - fatal: False - - default values: + values: - - compute_nb_days('year_ref'= common[parent_time_ref_year], 'year_branch'= common[branch_year_in_parent], 'month_branch'= common[branch_month_in_parent]) - - simulation[branch_time_in_parent] - - skip values: + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_time_in_parent] + - - function from functions_file named compute_nb_days('year_ref'= common[parent_time_ref_year], 'year_branch'= common[branch_year_in_parent], 'month_branch'= common[branch_month_in_parent]) + - - simulation[branch_time_in_parent] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - num type: 'double' branch_time_in_child Branch time of the simulation in the child's one. - fatal: False - - default values: + values: - - compute_nb_days('year_ref'= simulation[child_time_ref_year], 'year_branch'= simulation[branch_year_in_child]) - - simulation[branch_time_in_child] - - skip values: + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_time_in_child] + - - function from functions_file named compute_nb_days('year_ref'= simulation[child_time_ref_year], 'year_branch'= simulation[branch_year_in_child]) + - - simulation[branch_time_in_child] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - num type: 'double' physics_index Physics index associated with the simulation. - fatal: False - - default values: common[physics_index] + values: + + - attrs[physics_index] + - common[physics_index] num type: 'int' @@ -4607,9 +4573,10 @@ Project settings Type of content of the file. - fatal: False - - default values: 'model-output' + values: + + - attrs[product] + - 'model-output' num type: 'string' @@ -4617,9 +4584,10 @@ Project settings Realization index associated with the simulation. - fatal: False - - default values: internal[realization_index] + values: + + - attrs[realization_index] + - internal[realization_index] num type: 'int' @@ -4627,9 +4595,9 @@ Project settings Realm associated with the file. - fatal: False - - default values: variable.modeling_realm() + values: + + - common_tag[variable][modeling_realm] formatted with function from self named join({}) corrections: @@ -4641,9 +4609,10 @@ Project settings References associated with the simulation. - fatal: False - - default values: common[references] + values: + + - attrs[references] + - common[references] num type: 'string' @@ -4653,7 +4622,10 @@ Project settings fatal: True - default values: common[source] + values: + + - attrs[source] + - common[source] num type: 'string' @@ -4661,9 +4633,10 @@ Project settings Model id associated with the simulation. - fatal: False - - default values: internal[source_id] + values: + + - attrs[source_id] + - internal[source_id] num type: 'string' @@ -4671,9 +4644,10 @@ Project settings Model type associated with the simulation. - fatal: False - - default values: internal[source_type] + values: + + - attrs[source_type] + - internal[source_type] num type: 'string' @@ -4681,9 +4655,10 @@ Project settings Id of the sub experiment associated with the simulation. - fatal: False - - default values: common[sub_experiment_id] + values: + + - attrs[sub_experiment_id] + - common[sub_experiment_id] num type: 'string' @@ -4691,9 +4666,10 @@ Project settings Name of the sub experiment associated with the simulation. - fatal: False - - default values: common[sub_experiment] + values: + + - attrs[sub_experiment] + - common[sub_experiment] num type: 'string' @@ -4701,9 +4677,9 @@ Project settings Id of the table associated with the file. - fatal: False - - default values: [] + values: + + - attrs[table_id] num type: 'string' @@ -4711,12 +4687,11 @@ Project settings Title of the file. - fatal: False - - default values: + values: - - '{} model output prepared for {} and {} / {} simulation'.format(internal[source_id], internal[project], common[activity_id], simulation[expid_in_filename]) - - '{} model output prepared for {} / {} {}'.format(internal[source_id], internal[project], common[activity_id], internal[experiment_id]) + - attrs[title] + - function from self named format('activity_id'= common[activity_id] formatted with function from self named join({}), 'expid_in_filename'= simulation[expid_in_filename], 'project'= init[project], 'source_id'= internal[source_id]) + - function from self named format('activity_id'= common[activity_id] formatted with function from self named join({}), 'experiment_id'= simulation[experiment_id], 'project'= init[project], 'source_id'= internal[source_id]) num type: 'string' @@ -4724,9 +4699,10 @@ Project settings Id of the variable contained in the file. - fatal: False - - default values: variable.mipVarLabel + values: + + - attrs[variable_id] + - common_tag[variable][mipVarLabel] num type: 'string' @@ -4734,9 +4710,10 @@ Project settings Variant information associated with the simulation. - fatal: False - - default values: '. Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.'.format(common[variant_info]) + values: + + - attrs[variant_info] + - function from self named format('variant_info'= common[variant_info]) num type: 'string' @@ -4744,9 +4721,10 @@ Project settings Variant label associated with the simulation. - fatal: False - - default values: common[variant_label] + values: + + - common[variant_label] + - attrs[variant_label] num type: 'string' @@ -4762,9 +4740,9 @@ Project settings Id of the grid. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4773,16 +4751,16 @@ Project settings XIOS grid_definition beacon interpolate_axis - XIOS interpolate_axis beacon + TODO Attributes: type Type of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4790,9 +4768,9 @@ Project settings Order of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4800,9 +4778,9 @@ Project settings Coordinate of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4815,9 +4793,9 @@ Project settings Type of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4825,9 +4803,9 @@ Project settings Order of the interpolation. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4835,9 +4813,9 @@ Project settings Should the interpolated domain be renormalized? - fatal: False - - default values: [] + values: + + - attrs[renormalize] num type: 'string' @@ -4845,9 +4823,9 @@ Project settings Mode used for the interpolation. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -4855,9 +4833,9 @@ Project settings Should interpolation weights be written? - fatal: False - - default values: [] + values: + + - attrs[write_weight] num type: 'string' @@ -4865,9 +4843,9 @@ Project settings Coordinate of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4880,9 +4858,9 @@ Project settings Id of the scalar. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4890,9 +4868,9 @@ Project settings Reference scalar. - fatal: False - - default values: [] + values: + + - attrs[scalar_ref] num type: 'string' @@ -4900,9 +4878,9 @@ Project settings Name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -4910,11 +4888,11 @@ Project settings Standard name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' @@ -4926,9 +4904,9 @@ Project settings Long name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -4936,11 +4914,11 @@ Project settings Label of the scalar. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -4952,21 +4930,9 @@ Project settings Precision of the scalar. - fatal: False - - default values: [] - - skip values: - - - '' - - 'None' - - None - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -4977,17 +4943,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' value Value of the scalar. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -4999,11 +4977,11 @@ Project settings Bounds of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -5015,11 +4993,11 @@ Project settings Bounds name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds_name] - skip values: + forbidden values: - '' - 'None' @@ -5031,11 +5009,11 @@ Project settings Axis type of the scalar. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -5047,11 +5025,11 @@ Project settings Orientation of the scalar. - fatal: False - - default values: [] + values: + + - attrs[positive] - skip values: + forbidden values: - '' - 'None' @@ -5063,11 +5041,11 @@ Project settings Unit of the scalar. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -5090,9 +5068,11 @@ Project settings Content of the variable - fatal: False + fatal: True - default values: [] + values: + + - attrs[name] num type: 'string' @@ -5100,9 +5080,11 @@ Project settings Encoding type of the variable's content. - fatal: False + fatal: True - default values: [] + values: + + - attrs[type] num type: 'string' @@ -5115,9 +5097,9 @@ Project settings Index of the zoomed axis. - fatal: False - - default values: [] + values: + + - attrs[index] num type: 'string' \ No newline at end of file diff --git a/sphinx/source/userguide/projects/CMIP6_esgvoc.rst b/sphinx/source/userguide/projects/CMIP6_esgvoc.rst new file mode 100644 index 00000000..648adc5a --- /dev/null +++ b/sphinx/source/userguide/projects/CMIP6_esgvoc.rst @@ -0,0 +1,5134 @@ +Parameters available for project CMIP6_esgvoc +============================================= + +Init values +--------------- +.. glossary:: + :sorted: + + data_request_config + + Configuration file of the data request content to be used. + + values: + + - laboratory[data_request_config] + - '__package-root__/dr_interface/CMIP7_config' + + num type: 'string' + + data_request_content_version + + Version of the data request content to be used. + + values: + + - laboratory[data_request_content_version] + - 'latest_stable' + + num type: 'string' + + data_request_path + + Path where the data request API used is placed. + + values: + + - laboratory[data_request_path] + - None + + num type: 'string' + + data_request_used + + The Data Request infrastructure type which should be used. + + values: + + - laboratory[data_request_used] + - 'CMIP6' + + num type: 'string' + + institution_id + + Institution identifier. + + fatal: True + + values: + + - laboratory[institution_id] + + num type: 'string' + + laboratory_used + + File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. + + values: + + - laboratory[laboratory_used] + - None + + num type: 'string' + + project + + Project associated with the simulation. + + values: + + - laboratory[project] + - 'CMIP6' + + num type: 'string' + + project_settings + + Project settings definition file to be used. + + values: + + - laboratory[project_settings] + - init[project] + + num type: 'string' + + save_project_settings + + The path of the file where the complete project settings will be written, if needed. + + values: + + - laboratory[save_project_settings] + - None + + num type: 'string' + + vocabulary_config + + Configuration file of the vocabulary to be used. + + values: + + - laboratory[vocabulary_config] + - '__package-root__/vocabulary/vocabulary.json' + + num type: 'string' + + vocabulary_project + + The vocabulary project which should be used. + + values: + + - laboratory[vocabulary_project] formatted with function from self named lower({}) + - init[project] formatted with function from self named lower({}) + + num type: 'string' + + vocabulary_used + + The vocabulary infrastructure type which should be used. + + values: + + - laboratory[vocabulary_used] + - 'dr2xml_default' + + num type: 'string' + +Internal values +--------------- +.. glossary:: + :sorted: + + CFsubhr_frequency + + CFMIP has an elaborated requirement for defining subhr frequency; by default, dr2xml uses 1 time step. + + values: + + - laboratory[CFsubhr_frequency] + - '1ts' + + num type: 'string' + + CV_experiment + + Controlled vocabulary file containing experiment characteristics. + + fatal: True + + values: + + - function from vocabulary_server named get_term_in_collection('project_id'= init[vocabulary_project], 'collection_id'= 'experiment_id', 'term_id'= internal[experiment_id]) + + forbidden values: + + - None + - '' + + num type: 'string' + + add_Gibraltar + + DR01.00.21 does not include Gibraltar strait, which is requested by OMIP. Can include it, if model provides it as last value of array. + + values: + + - laboratory[add_Gibraltar] + - False + + num type: 'string' + + additional_allowed_model_components + + Dictionary which contains, for each model, the list of components whih can be used in addition to the declared ones. + + fatal: True + + values: + + - internal[CV_experiment][additional_allowed_model_components] + + num type: 'string' + + adhoc_policy_do_add_1deg_grid_for_tos + + Some scenario experiment in DR 01.00.21 do not request tos on 1 degree grid, while other do. If you use grid_policy=adhoc and had not changed the mapping of function. grids.lab_adhoc_grid_policy to grids.CNRM_grid_policy, next setting can force any tos request to also produce tos on a 1 degree grid. + + values: + + - laboratory[adhoc_policy_do_add_1deg_grid_for_tos] + - False + + num type: 'string' + + allow_duplicates + + Should we allow for duplicate vars: two vars with same frequency, shape and realm, which differ only by the table. In DR01.00.21, this actually applies to very few fields (ps-Aermon, tas-ImonAnt, areacellg-IfxAnt). + + values: + + - laboratory[allow_duplicates] + - True + + num type: 'string' + + allow_duplicates_in_same_table + + Should we allow for another type of duplicate vars : two vars with same name in same table (usually with different shapes). This applies to e.g. CMOR vars 'ua' and 'ua7h' in 6hPlevPt. Default to False, because CMIP6 rules does not allow to name output files differently in that case. If set to True, you should also set 'use_cmorvar_label_in_filename' to True to overcome the said rule. + + fatal: True + + values: + + - laboratory[allow_duplicates_in_same_table] + - False + + num type: 'string' + + allow_pseudo_standard_names + + DR has sn attributes for MIP variables. They can be real,CF-compliant, standard_names or pseudo_standard_names, i.e. not yet approved labels. Default is to use only CF ones. + + values: + + - laboratory[allow_pseudo_standard_names] + - False + + num type: 'string' + + allow_tos_3hr_1deg + + When using select='no', Xios may enter an endless loop, which is solved if next setting is False. + + values: + + - laboratory[allow_tos_3hr_1deg] + - True + + num type: 'string' + + branch_year_in_child + + In some instances, the experiment start year is not explicit or is doubtful in DR. See file doc/some_experiments_starty_in_DR01.00.21. You should then specify it, using next setting in order that requestItems analysis work in all cases. In some other cases, DR requestItems which apply to the experiment form its start does not cover its whole duration and have a wrong duration (computed based on a wrong start year); They necessitate to fix the start year. + + values: + + - simulation[branch_year_in_child] + + num type: 'string' + + branching + + Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. + + values: + + - laboratory[branching][internal[source_id]] + - {} + + num type: 'string' + + bypass_CV_components + + If the CMIP6 Controlled Vocabulary doesn't allow all the components you activate, you can set next toggle to True + + values: + + - laboratory[bypass_CV_components] + - False + + num type: 'string' + + bytes_per_float + + Estimate of number of bytes per floating value, given the chosen :term:`compression_level`. + + values: + + - laboratory[bytes_per_float] + - 2 + + num type: 'string' + + configuration + + Configuration used for this experiment. If there is no configuration in lab_settings which matches you case, please rather use next or next two entries: :term:`source_id` and, if needed, :term:`source_type`. + + fatal: True + + values: + + - simulation[configuration] + + num type: 'string' + + context + + Context associated with the xml file produced. + + fatal: True + + values: + + - dict[context] + + num type: 'string' + + debug_parsing + + In order to identify which xml files generates a problem, you can use this flag. + + values: + + - laboratory[debug_parsing] + - False + + num type: 'string' + + dr2xml_manages_enddate + + A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. + + values: + + - laboratory[dr2xml_manages_enddate] + - True + + num type: 'string' + + end_year + + If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value + + values: + + - simulation[end_year] + - False + + num type: 'string' + + excluded_expgroups_lset + + List of the experiments groups that will be excluded from outputs from laboratory settings. + + values: + + - laboratory[excluded_expgroups] + - [] + + target type: 'list' + + num type: 'string' + + excluded_expgroups_sset + + List of the experiments groups that will be excluded from outputs from simulation settings. + + values: + + - simulation[excluded_expgroups] + - [] + + target type: 'list' + + num type: 'string' + + excluded_opportunities_lset + + List of the opportunities that will be excluded from outputs from laboratory settings. + + values: + + - laboratory[excluded_opportunities] + - [] + + target type: 'list' + + num type: 'string' + + excluded_opportunities_sset + + List of the opportunities that will be excluded from outputs from simulation settings. + + values: + + - simulation[excluded_opportunities] + - [] + + target type: 'list' + + num type: 'string' + + excluded_pairs_lset + + You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from laboratory settings. + + values: + + - laboratory[excluded_pairs] + - [] + + target type: 'list' + + num type: 'string' + + excluded_pairs_sset + + You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from simulation settings. + + values: + + - simulation[excluded_pairs] + - [] + + target type: 'list' + + num type: 'string' + + excluded_request_links + + List of links un data request that should not been followed (those request are not taken into account). + + values: + + - laboratory[excluded_request_links] + - [] + + target type: 'list' + + num type: 'string' + + excluded_spshapes_lset + + The list of shapes that should be excluded (all variables in those shapes will be excluded from outputs). + + values: + + - laboratory[excluded_spshapes] + - [] + + target type: 'list' + + num type: 'string' + + excluded_tables_lset + + List of the tables that will be excluded from outputs from laboratory settings. + + values: + + - laboratory[excluded_tables] + - [] + + target type: 'list' + + num type: 'string' + + excluded_tables_sset + + List of the tables that will be excluded from outputs from simulation settings. + + values: + + - simulation[excluded_tables] + - [] + + target type: 'list' + + num type: 'string' + + excluded_vargroups_lset + + List of the variables groups that will be excluded from outputs from laboratory settings. + + values: + + - laboratory[excluded_vargroups] + - [] + + target type: 'list' + + num type: 'string' + + excluded_vargroups_sset + + List of the variables groups that will be excluded from outputs from simulation settings. + + values: + + - simulation[excluded_vargroups] + - [] + + target type: 'list' + + num type: 'string' + + excluded_vars_lset + + List of CMOR variables to exclude from the result based on previous Data Request extraction from laboratory settings. + + values: + + - laboratory[excluded_vars] + - [] + + target type: 'list' + + num type: 'string' + + excluded_vars_per_config + + A dictionary which keys are configurations and values the list of variables that must be excluded for each configuration. + + values: + + - laboratory[excluded_vars_per_config][internal[configuration]] + - [] + + target type: 'list' + + num type: 'string' + + excluded_vars_sset + + List of CMOR variables to exclude from the result based on previous Data Request extraction from simulation settings. + + values: + + - simulation[excluded_vars] + - [] + + target type: 'list' + + num type: 'string' + + experiment_for_requests + + Experiment id to use for driving the use of the Data Request. + + fatal: True + + values: + + - simulation[experiment_for_requests] + - internal[experiment_id] + + num type: 'string' + + experiment_id + + Root experiment identifier + + fatal: True + + values: + + - simulation[experiment_id] + + num type: 'string' + + filter_on_realization + + If you want to produce the same variables set for all members, set this parameter to False. + + values: + + - simulation[filter_on_realization] + - laboratory[filter_on_realization] + - True + + num type: 'string' + + fx_from_file + + You may provide some variables already horizontally remapped to some grid (i.e. Xios domain) in external files. The varname in file must match the referenced id in pingfile. Tested only for fixed fields. A dictionary with variable id as key and a dictionary as value: the key must be the grid id, the value a dictionary with the file for each resolution. + + values: + + - laboratory[fx_from_file] + - [] + + num type: 'string' + + grid_choice + + A dictionary which keys are models name and values the corresponding resolution. + + fatal: True + + values: + + - laboratory[grid_choice][internal[source_id]] + + num type: 'string' + + grid_policy + + The grid choice policy for output files. + + fatal: True + + values: + + - laboratory[grid_policy] + - False + + num type: 'string' + + grid_prefix + + Prefix of the dr2xml generated grid named to be used. + + fatal: True + + values: + + - laboratory[grid_prefix] + - internal[ping_variables_prefix] + + num type: 'string' + + grids + + Grids : per model resolution and per context :\n- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)\n- Xios id for the production grid (if it is not the native grid)\n- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)\n- resolution of the production grid (using CMIP6 conventions)\n- grid description + + fatal: True + + values: + + - laboratory[grids] + + num type: 'string' + + grids_dev + + Grids definition for dev variables. + + fatal: True + + values: + + - laboratory[grids_dev] + - {} + + num type: 'string' + + grouped_vars_per_file + + Variables to be grouped in the same output file (provided additional conditions are filled). + + values: + + - simulation[grouped_vars_per_file] + - laboratory[grouped_vars_per_file] + - [] + + num type: 'string' + + included_expgroups + + List of experiments groups that will be processed (all others will not). + + values: + + - simulation[included_expgroups] + - internal[included_expgroups_lset] + + target type: 'list' + + num type: 'string' + + included_expgroups_lset + + List of experiments groups that will be processed (all others will not) from laboratory settings. + + values: + + - laboratory[included_expgroups] + - [] + + target type: 'list' + + num type: 'string' + + included_opportunities + + List of opportunities that will be processed (all others will not). + + values: + + - simulation[included_opportunities] + - internal[included_opportunities_lset] + + target type: 'list' + + num type: 'string' + + included_opportunities_lset + + List of opportunities that will be processed (all others will not) from laboratory settings. + + values: + + - laboratory[included_opportunities] + - [] + + target type: 'list' + + num type: 'string' + + included_request_links + + List of the request links that will be processed (all others will not). + + values: + + - laboratory[included_request_links] + - [] + + target type: 'list' + + num type: 'string' + + included_tables + + List of tables that will be processed (all others will not). + + values: + + - simulation[included_tables] + - internal[included_tables_lset] + + target type: 'list' + + num type: 'string' + + included_tables_lset + + List of tables that will be processed (all others will not) from laboratory settings. + + values: + + - laboratory[included_tables] + - [] + + target type: 'list' + + num type: 'string' + + included_vargroups + + List of variables groups that will be processed (all others will not). + + values: + + - simulation[included_vargroups] + - internal[included_vargroups_lset] + + target type: 'list' + + num type: 'string' + + included_vargroups_lset + + List of variables groups that will be processed (all others will not) from laboratory settings. + + values: + + - laboratory[included_vargroups] + - [] + + target type: 'list' + + num type: 'string' + + included_vars + + Variables to be considered from the Data Request (all others will not) + + values: + + - simulation[included_vars] + - internal[included_vars_lset] + + target type: 'list' + + num type: 'string' + + included_vars_lset + + Variables to be considered from the Data Request (all others will not) from laboratory settings. + + values: + + - laboratory[included_vars] + - [] + + target type: 'list' + + num type: 'string' + + listof_home_vars + + Full path to the file which contains the list of home variables to be taken into account, in addition to the Data Request. + + values: + + - simulation[listof_home_vars] + - laboratory[listof_home_vars] + - None + + num type: 'string' + + max_file_size_in_floats + + The maximum size of generated files in number of floating values. + + values: + + - laboratory[max_file_size_in_floats] + - 500000000.0 + + num type: 'string' + + max_priority + + Max variable priority level to be output (you may set 3 when creating ping_files while being more restrictive at run time). + + fatal: True + + values: + + - simulation[max_priority] + - internal[max_priority_lset] + + num type: 'string' + + max_priority_lset + + Max variable priority level to be output (you may set 3 when creating ping_files while being more restrictive at run time) from lab settings. + + fatal: True + + values: + + - laboratory[max_priority] + + num type: 'string' + + max_split_freq + + The maximum number of years that should be putted in a single file. + + values: + + - simulation[max_split_freq] + - laboratory[max_split_freq] + - None + + num type: 'string' + + mips + + A dictionary in which keys are grid and values a set of strings corresponding to MIPs names. + + fatal: True + + values: + + - laboratory[mips] + + num type: 'string' + + nemo_sources_management_policy_master_of_the_world + + Set that to True if you use a context named 'nemo' and the corresponding model unduly sets a general freq_op AT THE FIELD_DEFINITION GROUP LEVEL. Due to Xios rules for inheritance, that behavior prevents inheriting specific freq_ops by reference from dr2xml generated field_definitions. + + fatal: True + + values: + + - laboratory[nemo_sources_management_policy_master_of_the_world] + - False + + num type: 'string' + + non_standard_attributes + + You may add a series of NetCDF attributes in all files for this simulation. + + values: + + - laboratory[non_standard_attributes] + - {} + + num type: 'string' + + non_standard_axes + + If your model has some axis which does not have all its attributes as in DR, and you want dr2xml to fix that it, give here the correspondence from model axis id to DR dim/grid id. For label dimensions you should provide the list of labels, ordered as in your model, as second element of a pair. Label-type axes will be processed even if not quoted. Scalar dimensions are not concerned by this feature. A dictionary with (axis_id, axis_correct_id) or (axis_id, tuple of labels) as key, values. + + values: + + - laboratory[non_standard_axes] + - {} + + num type: 'string' + + orography_field_name + + Name of the orography field name to be used to compute height over orog fields. + + values: + + - laboratory[orography_field_name] + - 'orog' + + num type: 'string' + + orphan_variables + + A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context). + + fatal: True + + values: + + - laboratory[orphan_variables] + + num type: 'string' + + path_extra_tables + + Full path of the directory which contains extra tables. + + values: + + - simulation[path_extra_tables] + - laboratory[path_extra_tables] + - None + + num type: 'string' + + path_to_parse + + The path of the directory which, at run time, contains the root XML file (iodef.xml). + + values: + + - laboratory[path_to_parse] + - './' + + num type: 'string' + + perso_sdims_description + + A dictionary containing, for each perso or dev variables with a XY-perso shape, and for each vertical coordinate associated, the main attributes of the dimension. + + values: + + - simulation[perso_sdims_description] + - {} + + num type: 'string' + + ping_variables_prefix + + The tag used to prefix the variables in the ‘field id’ namespaces of the ping file; may be an empty string. + + fatal: True + + values: + + - laboratory[ping_variables_prefix] + + num type: 'string' + + prefixed_orography_field_name + + Name of the orography field name to be used to compute height over orog fields prefixed with :term:`ping_variable_prefix`. + + values: + + - function from self named format('prefix'= internal[ping_variables_prefix], 'variable'= internal[orography_field_name]) + + num type: 'string' + + print_stats_per_var_label + + For an extended printout of selected CMOR variables, grouped by variable label. + + values: + + - laboratory[print_stats_per_var_label] + - False + + num type: 'string' + + print_variables + + If the value is a list, only the file/field variables listed here will be put in output files. If boolean, tell if the file/field variables should be put in output files. + + values: + + - laboratory[print_variables] + - True + + num type: 'string' + + realization_index + + Realization number. + + values: + + - simulation[realization_index] + - '1' + + num type: 'string' + + realms_per_context + + A dictionary which keys are context names and values the lists of realms associated with each context. + + fatal: True + + values: + + - laboratory[realms_per_context][internal[context]] + + num type: 'string' + + required_model_components + + Dictionary which gives, for each model name, the components that must be present. + + fatal: True + + values: + + - internal[CV_experiment][required_model_components] + + num type: 'string' + + sampling_timestep + + Basic sampling timestep set in your field definition (used to feed metadata 'interval_operation'). Should be a dictionary which keys are resolutions and values a context/timestep dictionary. + + fatal: True + + values: + + - laboratory[sampling_timestep] + - 2 + + num type: 'string' + + sectors + + List of the sectors to be considered. + + values: + + - laboratory[sectors] + + num type: 'string' + + select + + Selection strategy for variables. + + fatal: True + + values: + + - dict[select] + + authorized values: + + - 'on_expt_and_year' + - 'on_expt' + - 'no' + + num type: 'string' + + select_excluded_expgroups + + Excluded experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_expgroups_lset] + - + + num type: 'string' + + select_excluded_opportunities + + Excluded opportunities for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_opportunities_lset] + - + + num type: 'string' + + select_excluded_pairs + + Excluded pairs for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_pairs_lset] + - + + num type: 'string' + + select_excluded_request_links + + Excluded request links for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[excluded_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - + + num type: 'string' + + select_excluded_tables + + Excluded tables for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_tables_lset] + - + + num type: 'string' + + select_excluded_vargroups + + Excluded variables groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vargroups_lset] + - + + num type: 'string' + + select_excluded_vars + + Excluded variables for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vars_lset] + - + + num type: 'string' + + select_grid_choice + + Grid choice for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[grid_choice] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: 'LR' + - + + num type: 'string' + + select_included_expgroups + + Included experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_expgroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_expgroups_lset] + - + + num type: 'string' + + select_included_opportunities + + Included opportunities for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_opportunities] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_opportunities_lset] + - + + num type: 'string' + + select_included_request_links + + Included request links for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - + + num type: 'string' + + select_included_tables + + Included tables for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_tables] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_tables_lset] + - + + num type: 'string' + + select_included_vargroups + + Included variable groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vargroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vargroups_lset] + - + + num type: 'string' + + select_included_vars + + Included variables for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vars] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vars_lset] + - + + num type: 'string' + + select_max_priority + + Max priority for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[max_priority] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[max_priority_lset] + - + + num type: 'string' + + select_mips + + MIPs for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: function from functions_file named sort_mips('mips'= internal[mips][internal[select_grid_choice]]) + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: function from functions_file named sort_mips('mips'= internal[mips]) + - + + num type: 'string' + + select_on_expt + + Should data be selected on experiment? + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt_and_year' + - - 'on_expt' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'no' + - + - values: False + - + + num type: 'string' + + select_on_year + + Should data be selected on year? + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'on_expt_and_year' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt' + - - 'no' + - + - values: False + - + + num type: 'string' + + select_sizes + + Sizes for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[sizes] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - + + num type: 'string' + + select_tierMax + + tierMax for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[tierMax] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[tierMax_lset] + - + + num type: 'string' + + simple_domain_grid_regexp + + If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: \n1) it must be a grid which has only a domain \n2) the domain name must be extractable from the grid_id using a regexp and a group number \nExample: using a pattern that returns full id except for a '_grid' suffix + + values: + + - laboratory[simple_domain_grid_regexp] + + num type: 'string' + + sizes + + A dictionary which keys are resolution and values the associated grid size for atmosphere and ocean grids. The grid size looks like : ['nho', 'nlo', 'nha', 'nla', 'nlas', 'nls', 'nh1']. Used to compute file split frequency. + + fatal: True + + values: + + - function from functions_file named format_sizes('sizes'= laboratory[sizes][internal[grid_choice]]) + + num type: 'string' + + source_id + + Name of the model used. + + fatal: True + + values: + + - laboratory[configurations][internal[configuration]][0] + - simulation[source_id] + + num type: 'string' + + source_type + + If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote \"AGCM AER\". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit + + fatal: True + + values: + + - laboratory[configurations][internal[configuration]][1] + - simulation[source_type] + - laboratory[source_types][internal[source_id]] + + num type: 'string' + + special_timestep_vars + + This variable is used when some variables are computed with a period which is not the basic timestep. A dictionary which keys are non standard timestep and values the list of variables which are computed at this timestep. + + values: + + - laboratory[special_timestep_vars] + - [] + + num type: 'string' + + split_frequencies + + Path to the split frequencies file to be used. + + values: + + - simulation[split_frequencies] + - laboratory[split_frequencies] + - 'splitfreqs.dat' + + num type: 'string' + + synchronisation_frequency + + Frequency at which the synchronisation between buffer and filesystem is done. + + values: + + - simulation[synchronisation_frequency] + - laboratory[synchronisation_frequency] + - None + + num type: 'string' + + tierMax + + Number indicating the maximum tier to consider for experiments. + + fatal: True + + values: + + - simulation[tierMax] + - internal[tierMax_lset] + + num type: 'string' + + tierMax_lset + + Number indicating the maximum tier to consider for experiments from lab settings. + + fatal: True + + values: + + - laboratory[tierMax] + + num type: 'string' + + too_long_periods + + The CMIP6 frequencies that are unreachable for a single model run. Datafiles will be labelled with dates consistent with content (but not with CMIP6 requirements). Allowed values are only 'dec' and 'yr'. + + fatal: True + + values: + + - laboratory[too_long_periods] + - [] + + num type: 'string' + + useAtForInstant + + Should xml output files use the `@` symbol for definitions for instant variables? + + values: + + - laboratory[useAtForInstant] + - False + + num type: 'string' + + use_cmorvar_label_in_filename + + CMIP6 rule is that filenames includes the variable label, and that this variable label is not the CMORvar label, but 'MIPvar' label. This may lead to conflicts, e.g. for 'ua' and 'ua7h' in table 6hPlevPt; allows to avoid that, if set to True. + + fatal: True + + values: + + - laboratory[use_cmorvar_label_in_filename] + - False + + num type: 'string' + + use_union_zoom + + Say if you want to use XIOS union/zoom axis to optimize vertical interpolation requested by the DR. + + values: + + - laboratory[use_union_zoom] + - False + + num type: 'string' + + vertical_interpolation_operation + + Operation done for vertical interpolation. + + values: + + - laboratory[vertical_interpolation_operation] + - 'instant' + + num type: 'string' + + vertical_interpolation_sample_freq + + Time frequency of vertical interpolation. + + values: + + - laboratory[vertical_interpolation_sample_freq] + + num type: 'string' + + xios_version + + Version of XIOS used. + + values: + + - laboratory[xios_version] + - 2 + + num type: 'string' + + year + + Year associated with the launch of dr2xml. + + fatal: True + + values: + + - dict[year] + + num type: 'string' + + zg_field_name + + Name of the geopotential height field name to be used to compute height over orog fields. + + values: + + - laboratory[zg_field_name] + - 'zg' + + num type: 'string' + +Common values +------------- +.. glossary:: + :sorted: + + HDL + + HDL associated with the project. + + values: + + - simulation[HDL] + - laboratory[HDL] + - '21.14100' + + num type: 'string' + + activity_id + + MIP(s) name(s). + + values: + + - simulation[activity_id] + - laboratory[activity_id] + - internal[CV_experiment][activity_id][0] formatted with function from self named upper({}) + + num type: 'string' + + branch_method + + Branching procedure. + + values: + + - simulation[branch_method] + - 'standard' + + num type: 'string' + + branch_month_in_parent + + Branch month in parent simulation with respect to its time axis. + + values: + + - simulation[branch_month_in_parent] + - '1' + + num type: 'string' + + branch_year_in_parent + + Branch year in parent simulation with respect to its time axis. + + values: + + - Condition: + - + - value to check: simulation[branch_year_in_parent] + - + - check to perform: 'eq' + - + - reference values: internal[branching][internal[experiment_id]][1] + - + - values: simulation[branch_year_in_parent] + - + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'neq' + - + - reference values: internal[branching] + - + - values: simulation[branch_year_in_parent] + - + + forbidden values: + + - None + - 'None' + - '' + - 'N/A' + + num type: 'string' + + comment_lset + + A character string containing additional information about the models from laboratory settings. Will be complemented with the experiment's specific comment string. + + values: + + - laboratory[comment] + - '' + + num type: 'string' + + comment_sset + + A character string containing additional information about the models from simulation settings. Will be complemented with the experiment's specific comment string. + + values: + + - simulation[comment] + - '' + + num type: 'string' + + commercial_license + + Either commercial or not commercial license + + fatal: True + + values: + + - laboratory[commercial_license] + - 'NonCommercial-' + + num type: 'string' + + compression_level + + The compression level to be applied to NetCDF output files." + + values: + + - laboratory[compression_level] + - '0' + + num type: 'string' + + contact + + Email address of the data producer. + + values: + + - simulation[contact] + - laboratory[contact] + - 'None' + + num type: 'string' + + convention_str + + Version of the conventions used. + + values: + + - config.conventions + + num type: 'string' + + conventions_version + + Version of the conventions used. + + values: + + - config.CMIP6_conventions_version + + num type: 'string' + + data_specs_version + + Version of the data request used. + + fatal: True + + values: + + - function from data_request named get_version({}) + + num type: 'string' + + date_range + + Date range format to be used in file definition names. + + values: + + - '%start_date%-%end_date%' + + num type: 'string' + + description + + Description of the simulation. + + values: + + - laboratory[description] + - simulation[description] + + num type: 'string' + + dr2xml_version + + Version of dr2xml used. + + values: + + - config.version + + num type: 'string' + + experiment + + Name of the experiment. + + values: + + - simulation[experiment] + + num type: 'string' + + expid_in_filename + + Experiment label to use in file names and attribute. + + values: + + - simulation[expid_in_filename] + - internal[experiment_id] + + forbidden patterns: '.*_.*' + + num type: 'string' + + forcing_index + + Index for variant of forcing. + + values: + + - simulation[forcing_index] + - '1' + + num type: 'string' + + history + + In case of replacement of previously produced data, description of any changes in the production chain. + + values: + + - simulation[history] + - 'none' + + num type: 'string' + + info_url + + Location of documentation. + + values: + + - laboratory[info_url] + + num type: 'string' + + initialization_index + + Index for variant of initialization method. + + values: + + - simulation[initialization_index] + - '1' + + num type: 'string' + + institution + + Full name of the institution of the data producer. + + values: + + - laboratory[institution] + - common[institution_input][description] + + num type: 'string' + + institution_input + + Institution information from input + + fatal: True + + values: + + - function from vocabulary_server named get_term_in_collection('project_id'= init[vocabulary_project], 'collection_id'= 'institution_id', 'term_id'= init[institution_id] formatted with function from self named lower({})) + + forbidden values: + + - None + - '' + + num type: 'string' + + license + + Text of the license which applies + + fatal: True + + values: + + - common[license_file][0] + - common[license_file][license] + + num type: 'string' + + license_file + + File where the license associated with the produced output files can be found. + + fatal: True + + values: + + - read_json_file(function from self named format('cvspath'= dict[cvspath], 'project'= init[project]))[license] + + num type: 'string' + + license_id + + License id + + fatal: True + + values: + + - common[license_file][license][laboratory[license_id]][license_id] + - common[license_file][license_options][CC BY-NC-SA 4.0][license_id] + - '' + + num type: 'string' + + license_url + + License url + + fatal: True + + values: + + - common[license_file][license][laboratory[license_id]][license_url] + - common[license_file][license_options][CC BY-NC-SA 4.0][license_url] + - 'https://creativecommons.org/licenses' + + num type: 'string' + + list_perso_dev_file + + Name of the file which will contain the list of the patterns of perso and dev output file definition. + + values: + + - 'dr2xml_list_perso_and_dev_file_names' + + num type: 'string' + + member_id + + Id of the member done. + + values: + + - function from self named format('sub_exp'= common[sub_experiment_id], 'variant'= common[variant_label]) + - common[variant_label] + + forbidden patterns: 'none-.*' + + num type: 'string' + + mip_era + + MIP associated with the simulation. + + values: + + - common[mip_era_sset] + - common[mip_era_lset] + + forbidden values: None + + num type: 'string' + + mip_era_lset + + MIP associated with the simulation from laboratory settings. + + values: + + - laboratory[mip_era] + - None + + num type: 'string' + + mip_era_sset + + MIP associated with the simulation from simulation settings. + + values: + + - simulation[mip_era] + - None + + num type: 'string' + + output_level + + We can control the max output level set for all output files. + + values: + + - laboratory[output_level] + - '10' + + num type: 'string' + + parent_activity_id + + Description of sub-experiment. + + values: + + - simulation[parent_activity_id] + - simulation[activity_id] + - laboratory[parent_activity_id] + - laboratory[activity_id] + - internal[CV_experiment][parent_activity_id] + + num type: 'string' + + parent_experiment_id + + Parent experiment identifier. + + values: + + - simulation[parent_experiment_id] + - laboratory[parent_experiment_id] + - internal[CV_experiment][parent_experiment_id] + + num type: 'string' + + parent_mip_era + + Parent’s associated MIP cycle. + + values: + + - simulation[parent_mip_era] + + num type: 'string' + + parent_source_id + + Parent model identifier. + + values: + + - simulation[parent_source_id] + + num type: 'string' + + parent_time_ref_year + + Reference year in parent simulation. + + values: + + - simulation[parent_time_ref_year] + - '1850' + + num type: 'string' + + parent_time_units + + Time units used in parent. + + values: + + - simulation[parent_time_units] + + num type: 'string' + + parent_variant_label + + Parent variant label. + + values: + + - simulation[parent_variant_label] + + num type: 'string' + + physics_index + + Index for model physics variant. + + values: + + - simulation[physics_index] + - '1' + + num type: 'string' + + prefix + + Prefix to be used for each file definition. + + fatal: True + + values: + + - dict[prefix] + + num type: 'string' + + references + + References associated with the simulation. + + values: + + - laboratory[references] + + num type: 'string' + + source + + Name of the model. + + values: + + - function from functions_file named make_source_string('source'= common[source_input][__dict__], 'source_id'= internal[source_id]) + - laboratory[source] + + num type: 'string' + + source_input + + Source information from input + + fatal: True + + values: + + - function from vocabulary_server named get_term_in_collection('project_id'= init[vocabulary_project], 'collection_id'= 'source_id', 'term_id'= internal[source_id] formatted with function from self named lower({})) + + forbidden values: + + - None + - '' + + num type: 'string' + + sub_experiment + + Sub-experiment name. + + values: + + - simulation[sub_experiment] + - 'none' + + num type: 'string' + + sub_experiment_id + + Sub-experiment identifier. + + values: + + - simulation[sub_experiment_id] + - 'none' + + num type: 'string' + + variant_info + + It is recommended that some description be included to help identify major differences among variants, but care should be taken to record correct information. dr2xml will add in all cases: 'Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.' + + values: + + - simulation[variant_info] + + forbidden values: '' + + num type: 'string' + + variant_label + + Label of the variant done. + + values: + + - function from self named format('realization'= internal[realization_index], 'initialization'= common[initialization_index], 'physics'= common[physics_index], 'forcing'= common[forcing_index]) + + num type: 'string' + +Project settings +---------------- +.. glossary:: + :sorted: + + axis + + XIOS axis beacon + + Attributes: + id + + Id of the axis. + + values: + + - attrs[id] + + num type: 'string' + + positive + + Hox is the axis oriented? + + values: + + - attrs[positive] + + num type: 'string' + + n_glo + + Number of values of this axis. + + values: + + - attrs[n_glo] + + num type: 'string' + + value + + Value of the axis. + + values: + + - attrs[value] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + axis_ref + + Reference axis. + + values: + + - attrs[axis_ref] + + num type: 'string' + + name + + Name of this axis. + + values: + + - attrs[name] + + num type: 'string' + + standard_name + + Standard name of the axis. + + values: + + - attrs[standard_name] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + long_name + + Long name of this axis. + + values: + + - attrs[long_name] + + num type: 'string' + + prec + + Precision of the axis. + + values: + + - attrs[prec] + + corrections: + + - '': '4' + - 'float': '4' + - 'real': '4' + - 'double': '8' + - 'integer': '2' + - 'int': '2' + + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + unit + + Unit of the axis. + + values: + + - attrs[unit] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + value + + Value of the axis. + + values: + + - attrs[value] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + bounds + + Bounds of the axis. + + values: + + - attrs[bounds] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + dim_name + + Name dimension of the axis. + + values: + + - attrs[dim_name] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + label + + Label of the axis. + + values: + + - attrs[label] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + axis_type + + Axis type. + + values: + + - attrs[axis_type] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + axis_definition + + XIOS axis_definition beacon + axis_group + + XIOS axis_group beacon + + Attributes: + prec + + Precision associated with the axis group. + + values: + + - attrs[prec] + - '8' + + corrections: + + - '': '4' + - 'float': '4' + - 'real': '4' + - 'double': '8' + - 'integer': '2' + - 'int': '2' + + authorized values: + + - '2' + - '4' + - '8' + + num type: 'string' + + context + + XIOS context beacon + + Comments: + DR_version + + Version of the Data Request used + + values: + + - function from self named format('data_request_used'= init[data_request_used], 'data_specs_version'= common[data_specs_version]) + + num type: 'string' + + CV_version + + Controled vocabulary version used. + + values: + + - 'CMIP6-CV version ??' + + num type: 'string' + + conventions_version + + Conventions version used. + + values: + + - 'CMIP6_conventions_version {}'.format(common[conventions_version]) + + num type: 'string' + + dr2xml_version + + Version of dr2xml used + + values: + + - function from self named format('dr2xml_version'= common[dr2xml_version]) + + num type: 'string' + + lab_settings + + Laboratory settings used + + values: + + - function from self named format('laboratory'= laboratory) + + num type: 'string' + + simulation_settings + + Simulation_settings used + + values: + + - function from self named format('laboratory'= simulation) + + num type: 'string' + + year + + Year used for the dr2xml's launch + + values: + + - function from self named format('year'= internal[year]) + + num type: 'string' + + + Attributes: + id + + Id of the context + + values: + + - internal[context] + + num type: 'string' + + domain + + XIOS domain beacon + + Attributes: + id + + Id of the domain. + + values: + + - attrs[id] + + num type: 'string' + + ni_glo + + Number of point in i dimension. + + values: + + - attrs[ni_glo] + + num type: 'string' + + nj_glo + + Number of points in j dimension. + + values: + + - attrs[nj_glo] + + num type: 'string' + + type + + Type of the domain. + + values: + + - attrs[type] + + num type: 'string' + + prec + + Precision of the domain. + + values: + + - attrs[prec] + + num type: 'string' + + lat_name + + Latitude axis name. + + values: + + - attrs[lat_name] + + num type: 'string' + + lon_name + + Longitude axis name. + + values: + + - attrs[lon_name] + + num type: 'string' + + dim_i_name + + Name of the i dimension. + + values: + + - attrs[dim_i_name] + + num type: 'string' + + domain_ref + + Reference domain. + + values: + + - attrs[domain_ref] + + num type: 'string' + + domain_definition + + XIOS domain_definition beacon + domain_group + + XIOS domain_group beacon + + Attributes: + prec + + Precision associated with the domain group. + + values: + + - attrs[prec] + - '8' + + corrections: + + - '': '4' + - 'float': '4' + - 'real': '4' + - 'double': '8' + - 'integer': '2' + - 'int': '2' + + authorized values: + + - '2' + - '4' + - '8' + + num type: 'string' + + duplicate_scalar + + XIOS duplicate_scalar beacon + field + + XIOS field beacon (except for output fields) + + Attributes: + id + + Id of the field. + + values: + + - attrs[id] + + num type: 'string' + + field_ref + + Id of the reference field. + + values: + + - attrs[field_ref] + + num type: 'string' + + name + + Name of the field. + + values: + + - attrs[name] + + num type: 'string' + + freq_op + + Frequency of the operation done on the field. + + values: + + - attrs[freq_op] + + num type: 'string' + + freq_offset + + Offset to be applied on operations on the field. + + values: + + - attrs[freq_offset] + + num type: 'string' + + grid_ref + + Reference grid of the field. + + values: + + - attrs[grid_ref] + + num type: 'string' + + long_name + + Long name of the field. + + values: + + - attrs[long_name] + + num type: 'string' + + standard_name + + Standard name of the field. + + values: + + - attrs[standard_name] + + num type: 'string' + + unit + + Unit of the field. + + values: + + - attrs[unit] + + num type: 'string' + + operation + + Operation done on the field. + + values: + + - attrs[operation] + + num type: 'string' + + detect_missing_value + + Should missing values of the field be detected by XIOS. + + values: + + - attrs[detect_missing_value] + + num type: 'string' + + prec + + Precision of the field. + + values: + + - attrs[prec] + + num type: 'string' + + field_definition + + XIOS field_definition beacon + field_group + + XIOS field_group beacon + + Attributes: + freq_op + + Frequency of the operation done on the field. + + values: + + - attrs[freq_op] + + num type: 'string' + + freq_offset + + Offset to be applied on operations on the field. + + values: + + - attrs[freq_offset] + + num type: 'string' + + field_output + + XIOS field beacon (only for output fields) + + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + + Attributes: + field_ref + + Reference field. + + values: + + - attrs[field_ref] + + num type: 'string' + + name + + Name of the field. + + values: + + - attrs[name] + - common_tag[variable][mipVarLabel] + + num type: 'string' + + grid_ref + + Reference grid of the field. + + values: + + - attrs[grid_ref] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + freq_offset + + Offset to be applied on operations on the field. + + values: + + - attrs[freq_offset] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + detect_missing_value + + Should missing values of the field be detected by XIOS. + + values: + + - attrs[detect_missing_value] + - 'True' + + num type: 'string' + + default_value + + Default value associated with the field. + + fatal: True + + values: + + - attrs[default_value] + - attrs[prec] + - common_tag[variable][prec] + + corrections: + + - '': '1.e+20' + - 'float': '1.e+20' + - 'real': '1.e+20' + - 'double': '1.e+20' + - 'integer': '0' + - 'int': '0' + + authorized values: + + - '0' + - '1.e+20' + + num type: 'string' + + prec + + Precision of the field. + + fatal: True + + values: + + - attrs[prec] + - common_tag[variable][prec] + + corrections: + + - '': '4' + - 'float': '4' + - 'real': '4' + - 'double': '8' + - 'integer': '2' + - 'int': '2' + + authorized values: + + - '2' + - '4' + - '8' + + num type: 'string' + + cell_methods + + Cell method associated with the field. + + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] + + num type: 'string' + + cell_methods_mode + + Mode associated with the cell method of the field. + + values: + + - attrs[cell_methods_mode] + - 'overwrite' + + num type: 'string' + + operation + + Operation performed on the field. + + values: + + - attrs[operation] + + num type: 'string' + + freq_op + + Frequency of the operation done on the field. + + values: + + - attrs[freq_op] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + expr + + Expression used to compute the field. + + values: + + - attrs[expr] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + + Variables + comment + + Comment associated with the field. + + values: + + - attrs[comment] + - simulation[comments][common_tag[variable][label]] + - laboratory[comments][common_tag[variable][label]] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + standard_name + + Standard name of the field. + + values: + + - attrs[standard_name] + - common_tag[variable][stdname] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + description + + Description associated with the field. + + values: + + - attrs[description] + - common_tag[variable][description] + - 'None' + + forbidden values: '' + + num type: 'string' + + long_name + + Long name of the field. + + values: + + - attrs[long_name] + - common_tag[variable][long_name] + + num type: 'string' + + positive + + Way the field should be interpreted. + + values: + + - attrs[positive] + - common_tag[variable][positive] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + history + + History associated with the field. + + values: + + - attrs[history] + - common[history] + + num type: 'string' + + units + + Units associated with the field. + + values: + + - attrs[units] + - common_tag[variable][units] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + cell_methods + + Cell methods associated with the field. + + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + cell_measures + + Cell measures associated with the field. + + values: + + - attrs[cell_measures] + - common_tag[variable][cell_measures] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + flag_meanings + + Flag meanings associated with the field. + + values: + + - attrs[flag_meanings] + - common_tag[variable][flag_meanings] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + flag_values + + Flag values associated with the field. + + values: + + - attrs[flag_values] + - common_tag[variable][flag_values] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + interval_operation + + Interval associated with the operation done on the field. + + values: + + - Condition: + - + - value to check: attrs[operation] + - + - check to perform: 'neq' + - + - reference values: 'once' + - + - values: attrs[interval_operation] + - + + num type: 'string' + + file + + XIOS file beacon (except for output files) + + Attributes: + id + + Id of the file. + + values: + + - attrs[id] + + num type: 'string' + + name + + File name. + + values: + + - attrs[name] + + num type: 'string' + + mode + + Mode in which the file will be open. + + values: + + - attrs[mode] + + num type: 'string' + + output_freq + + Frequency of the outputs contained in the file. + + values: + + - attrs[output_freq] + + num type: 'string' + + enabled + + Should the file be considered by XIOS. + + values: + + - attrs[enabled] + + num type: 'string' + + file_definition + + XIOS file_definition beacon + + Attributes: + type + + Type of file to be produced + + values: + + - attrs[type] + - 'one_file' + + num type: 'string' + + enabled + + Should the file_definition be considered by XIOS + + values: + + - attrs[enabled] + - 'true' + + num type: 'string' + + file_output + + XIOS file beacon (only for output files) + + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + + Attributes: + id + + Id of the output file + + fatal: True + + values: + + - attrs[id] + - function from self named format('grid'= attrs[grid_label], 'table'= attrs[table_id], 'variable'= common_tag[variable][label]) + + num type: 'string' + + name + + File name. + + fatal: True + + values: + + - function from functions_file named build_filename('frequency'= variable.frequency, 'prefix'= common[prefix], 'table'= dict[table_id], 'source_id'= internal[source_id], 'expid_in_filename'= common[expid_in_filename], 'member_id'= common[member_id], 'grid_label'= dict[grid_label], 'date_range'= common[date_range], 'var_type'= variable.type, 'list_perso_dev_file'= common[list_perso_dev_file], 'label'= variable.label, 'mipVarLabel'= variable.mipVarLabel, 'use_cmorvar'= internal[use_cmorvar_label_in_filename]) + + num type: 'string' + + output_freq + + Frequency of the outputs contained in the file. + + values: + + - attrs[output_freq] + + num type: 'string' + + append + + Should the data be append to the file? + + values: + + - attrs[append] + - 'true' + + num type: 'string' + + output_level + + Output level of the file. + + values: + + - attrs[output_level] + - common[output_level] + + forbidden values: + + - 'None' + - '' + - None + + num type: 'string' + + compression_level + + Compression level of the file. + + values: + + - attrs[compression_level] + - common[compression_level] + + forbidden values: + + - 'None' + - '' + - None + + num type: 'string' + + split_freq + + Splitting frequency of the file. + + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq] + - + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + split_freq_format + + Splitting frequency format of the file. + + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq_format] + - + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + split_start_offset + + Splitting start offset of the file + + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_start_offset] + - + + forbidden values: + + - '' + - 'None' + - None + - 'False' + - False + + num type: 'string' + + split_end_offset + + Splitting end offset of the file + + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_end_offset] + - + + forbidden values: + + - '' + - 'None' + - None + - 'False' + - False + + num type: 'string' + + split_last_date + + Splitting last date of the file + + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_last_date] + - + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + time_units + + Time units of the file. + + values: + + - attrs[ time_units] + - 'days' + + num type: 'string' + + time_counter_name + + Time counter name. + + values: + + - attrs[time_counter_name] + - 'time' + + num type: 'string' + + time_counter + + Time counter type. + + values: + + - attrs[time_counter] + - 'exclusive' + + num type: 'string' + + time_stamp_name + + Time stamp name. + + values: + + - attrs[time_stamp_name] + - 'creation_date' + + num type: 'string' + + time_stamp_format + + Time stamp format. + + values: + + - attrs[time_stamp_format] + - '%Y-%m-%dT%H:%M:%SZ' + + num type: 'string' + + uuid_name + + Unique identifier of the file name. + + values: + + - attrs[uuid_name] + - 'tracking_id' + + num type: 'string' + + uuid_format + + Unique identifier of the file format. + + values: + + - attrs[uuid_format] + - attrs[uuid_format] + - function from self named format('hdl'= common[HDL]) + + forbidden values: + + - 'None' + - '' + - None + + num type: 'string' + + convention_str + + Convention used for the file. + + values: + + - attrs[convention_str] + - common[convention_str] + + num type: 'string' + + synchronisation_frequency + + Frequency at which the synchronisation between buffer and filesystem is done. + + values: + + - attrs[synchronisation_frequency] + - internal[synchronisation_frequency] + + forbidden values: + + - 'None' + - '' + - None + + num type: 'string' + + + Variables + activity_id + + Activity id associated with the simulation. + + values: + + - attrs[activity_id] + - common[activity_id] + + num type: 'string' + + contact + + Contact email. + + values: + + - attrs[contact] + - common[contact] + + forbidden values: + + - 'None' + - '' + - None + + num type: 'string' + + data_specs_version + + Version of the Data Request used. + + values: + + - attrs[data_specs_version] + - common[data_specs_version] + + num type: 'string' + + dr2xml_version + + Version of dr2xml used. + + values: + + - attrs[dr2xml_version] + - common[dr2xml_version] + + num type: 'string' + + expid_in_filename + + Experiment id to be used in file name. + + output key: 'experiment_id' + + values: + + - attrs[expid_in_filename] + - common[expid_in_filename] + + num type: 'string' + + description + + Description of the file. + + values: + + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[description] + - - common[description] + - - internal[CV_experiment][description] + - + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + title_desc + + Title of the file. + + output key: 'title' + + values: + + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[description] + - - common[description] + - - internal[CV_experiment][description] + - + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + experiment + + Experiment associated with the simulation. + + values: + + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[experiment] + - - common[experiment] + - - internal[CV_experiment][experiment] + - + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + external_variables + + External variables associated with the file. + + values: + + - attrs[external_variables] + - function from functions_file named build_external_variables('cell_measures'= common_tag[variable][cell_measures]) + + forbidden values: '' + + num type: 'string' + + forcing_index + + Forcing index associated with the simulation. + + values: + + - attrs[forcing_index] + - common[forcing_index] + + num type: 'int' + + frequency + + Frequency associated with the file. + + values: + + - attrs[frequency] + - common_tag[variable][frequency] + + num type: 'string' + + further_info_url + + Url to obtain further information associated with the simulation. + + values: + + - Condition: + - + - value to check: common[mip_era_lset] + - + - check to perform: 'eq' + - + - reference values: None + - + - values: + - Condition: + - + - value to check: common[mip_era_sset] + - + - check to perform: 'eq' + - + - reference values: None + - + - values: function from self named format('mip_era'= variable.mip_era, 'institution_id'= init[institution_id], 'source_id'= internal[source_id], 'expid'= common[expid_in_filename], 'sub_exp'= common[sub_experiment_id], 'variant'= common[variant_label]) + - + - + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + grid + + Id of the grid used in the file. + + values: + + - attrs[grid] + + num type: 'string' + + grid_label + + Label of the grid used in the file. + + values: + + - attrs[grid_label] + + num type: 'string' + + nominal_resolution + + Nominal resolution of the grid used in the file. + + values: + + - attrs[nominal_resolution] + + num type: 'string' + + comment + + Comment associated with the file. + + values: + + - attrs[comment] + - function from self named format('var'= , , Condition:, , value to check: common_tag[variable][comments], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common_tag[variable][comments], , 'lset'= , , Condition:, , value to check: common[comment_lset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_lset], , 'sset'= , , Condition:, , value to check: common[comment_sset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_sset], ) + + forbidden values: '' + + num type: 'string' + + history + + History associated with the file. + + values: + + - attrs[history] + - common[history] + + num type: 'string' + + initialization_index + + Initialization index associated with the simulation. + + values: + + - attrs[initialization_index] + - common[initialization_index] + + num type: 'int' + + institution_id + + Institution id associated with the simulation. + + fatal: True + + values: + + - attrs[institution_id] + - init[institution_id] + + num type: 'string' + + institution + + Institution associated with the simulation. + + fatal: True + + values: + + - attrs[institution] + - common[institution] + + num type: 'string' + + license + + License associated with the file. + + values: + + - attrs[license] + - function from functions_file named fill_license('value'= common[license], 'institution_id'= init[institution_id], 'info_url'= common[info_url], 'commercial_license'= common[commercial_license], 'license_id'= common[license_id], 'license_url'= common[license_url]) + + num type: 'string' + + mip_era + + MIP associated with the simulation. + + values: + + - attrs[mip_era] + - common[mip_era] + - common_tag[variable][mip_era] + + num type: 'string' + + parent_experiment_id + + Parent experiment id associated with the simulation. + + values: + + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_experiment_id] + - - common[parent_experiment_id] + - + + num type: 'string' + + parent_mip_era + + MIP associated with the parent experiment. + + values: + + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_mip_era] + - - common[parent_mip_era] + - - common[mip_era] + - - common_tag[variable][mip_era] + - + + num type: 'string' + + parent_activity_id + + Activity id associated with the parent experiment. + + values: + + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_activity_id] + - - common[parent_activity_id] + - + + num type: 'string' + + parent_source_id + + Model id of the parent experiment. + + values: + + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_source_id] + - - common[parent_source_id] + - - internal[source_id] + - + + num type: 'string' + + parent_time_units + + Time units of the parent experiment. + + values: + + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_time_units] + - - common[parent_time_units] + - - 'days since {}-01-01 00:00:00'.format(common[parent_time_ref_year]) + - + + num type: 'string' + + parent_variant_label + + Variant label of the parent experiment. + + values: + + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_variant_label] + - - common[parent_variant_label] + - - common[variant_label] + - + + num type: 'string' + + branch_method + + Branch method of the simulation. + + values: + + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_method] + - - common[branch_method] + - + - 'no parent' + + num type: 'string' + + branch_time_in_parent + + Branch time of the simulation in the parent's one. + + values: + + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_time_in_parent] + - - function from functions_file named compute_nb_days('year_ref'= common[parent_time_ref_year], 'year_branch'= common[branch_year_in_parent], 'month_branch'= common[branch_month_in_parent]) + - - simulation[branch_time_in_parent] + - + + forbidden values: + + - '' + - 'None' + - None + + num type: 'double' + + branch_time_in_child + + Branch time of the simulation in the child's one. + + values: + + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_time_in_child] + - - function from functions_file named compute_nb_days('year_ref'= simulation[child_time_ref_year], 'year_branch'= simulation[branch_year_in_child]) + - - simulation[branch_time_in_child] + - + + forbidden values: + + - '' + - 'None' + - None + + num type: 'double' + + physics_index + + Physics index associated with the simulation. + + values: + + - attrs[physics_index] + - common[physics_index] + + num type: 'int' + + product + + Type of content of the file. + + values: + + - attrs[product] + - 'model-output' + + num type: 'string' + + realization_index + + Realization index associated with the simulation. + + values: + + - attrs[realization_index] + - internal[realization_index] + + num type: 'int' + + realm + + Realm associated with the file. + + values: + + - common_tag[variable][modeling_realm] formatted with function from self named join({}) + + corrections: + + - 'ocnBgChem': 'ocnBgchem' + + num type: 'string' + + references + + References associated with the simulation. + + values: + + - attrs[references] + - common[references] + + num type: 'string' + + source + + Model associated with the simulation. + + fatal: True + + values: + + - attrs[source] + - common[source] + + num type: 'string' + + source_id + + Model id associated with the simulation. + + values: + + - attrs[source_id] + - internal[source_id] + + num type: 'string' + + source_type + + Model type associated with the simulation. + + values: + + - attrs[source_type] + - internal[source_type] + + num type: 'string' + + sub_experiment_id + + Id of the sub experiment associated with the simulation. + + values: + + - attrs[sub_experiment_id] + - common[sub_experiment_id] + + num type: 'string' + + sub_experiment + + Name of the sub experiment associated with the simulation. + + values: + + - attrs[sub_experiment] + - common[sub_experiment] + + num type: 'string' + + table_id + + Id of the table associated with the file. + + values: + + - attrs[table_id] + + num type: 'string' + + title + + Title of the file. + + values: + + - attrs[title] + - function from self named format('activity_id'= common[activity_id] formatted with function from self named join({}), 'expid_in_filename'= simulation[expid_in_filename], 'project'= init[project], 'source_id'= internal[source_id]) + - function from self named format('activity_id'= common[activity_id] formatted with function from self named join({}), 'experiment_id'= simulation[experiment_id], 'project'= init[project], 'source_id'= internal[source_id]) + + num type: 'string' + + variable_id + + Id of the variable contained in the file. + + values: + + - attrs[variable_id] + - variable.mipVarLabel + + num type: 'string' + + variant_info + + Variant information associated with the simulation. + + values: + + - attrs[variant_info] + - function from self named format('variant_info'= common[variant_info]) + + num type: 'string' + + variant_label + + Variant label associated with the simulation. + + values: + + - common[variant_label] + - attrs[variant_label] + + num type: 'string' + + generate_rectilinear_domain + + XIOS generate_rectilinear_domain beacon + grid + + XIOS grid beacon + + Attributes: + id + + Id of the grid. + + values: + + - attrs[id] + + num type: 'string' + + grid_definition + + XIOS grid_definition beacon + interpolate_axis + + TODO + + Attributes: + type + + Type of the interpolated axis. + + values: + + - attrs[type] + + num type: 'string' + + order + + Order of the interpolated axis. + + values: + + - attrs[order] + + num type: 'string' + + coordinate + + Coordinate of the interpolated axis. + + values: + + - attrs[coordinate] + + num type: 'string' + + interpolate_domain + + XIOS interpolate_domain beacon + + Attributes: + type + + Type of the interpolated domain. + + values: + + - attrs[type] + + num type: 'string' + + order + + Order of the interpolation. + + values: + + - attrs[order] + + num type: 'string' + + renormalize + + Should the interpolated domain be renormalized? + + values: + + - attrs[renormalize] + + num type: 'string' + + mode + + Mode used for the interpolation. + + values: + + - attrs[mode] + + num type: 'string' + + write_weight + + Should interpolation weights be written? + + values: + + - attrs[write_weight] + + num type: 'string' + + coordinate + + Coordinate of the interpolated domain. + + values: + + - attrs[coordinate] + + num type: 'string' + + scalar + + XIOS scalar beacon + + Attributes: + id + + Id of the scalar. + + values: + + - attrs[id] + + num type: 'string' + + scalar_ref + + Reference scalar. + + values: + + - attrs[scalar_ref] + + num type: 'string' + + name + + Name of the scalar. + + values: + + - attrs[name] + + num type: 'string' + + standard_name + + Standard name of the scalar. + + values: + + - attrs[standard_name] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + long_name + + Long name of the scalar. + + values: + + - attrs[long_name] + + num type: 'string' + + label + + Label of the scalar. + + values: + + - attrs[label] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + prec + + Precision of the scalar. + + values: + + - attrs[prec] + + corrections: + + - '': '4' + - 'float': '4' + - 'real': '4' + - 'double': '8' + - 'integer': '2' + - 'int': '2' + + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + value + + Value of the scalar. + + values: + + - attrs[value] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + bounds + + Bounds of the scalar. + + values: + + - attrs[bounds] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + bounds_name + + Bounds name of the scalar. + + values: + + - attrs[bounds_name] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + axis_type + + Axis type of the scalar. + + values: + + - attrs[axis_type] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + positive + + Orientation of the scalar. + + values: + + - attrs[positive] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + unit + + Unit of the scalar. + + values: + + - attrs[unit] + + forbidden values: + + - '' + - 'None' + - None + + num type: 'string' + + scalar_definition + + XIOS scalar_definition beacon + temporal_splitting + + XIOS temporal_splitting beacon + variable + + XIOS variable beacon + + Attributes: + name + + Content of the variable + + fatal: True + + values: + + - attrs[name] + + num type: 'string' + + type + + Encoding type of the variable's content. + + fatal: True + + values: + + - attrs[type] + + num type: 'string' + + zoom_axis + + XIOS zoom_axis beacon + + Attributes: + index + + Index of the zoomed axis. + + values: + + - attrs[index] + + num type: 'string' + \ No newline at end of file diff --git a/sphinx/source/userguide/projects/CMIP7.rst b/sphinx/source/userguide/projects/CMIP7.rst index df3c38ff..47778995 100644 --- a/sphinx/source/userguide/projects/CMIP7.rst +++ b/sphinx/source/userguide/projects/CMIP7.rst @@ -1,6 +1,144 @@ Parameters available for project CMIP7 ====================================== +Init values +--------------- +.. glossary:: + :sorted: + + data_request_config + + Configuration file of the data request content to be used. + + values: + + - laboratory[data_request_config] + - '__package-root__/dr_interface/CMIP7_config' + + num type: 'string' + + data_request_content_version + + Version of the data request content to be used. + + values: + + - laboratory[data_request_content_version] + - 'latest_stable' + + num type: 'string' + + data_request_path + + Path where the data request API used is placed. + + values: + + - laboratory[data_request_path] + - None + + num type: 'string' + + data_request_used + + The Data Request infrastructure type which should be used. + + values: + + - laboratory[data_request_used] + - 'CMIP6' + + num type: 'string' + + institution_id + + Institution identifier. + + fatal: True + + values: + + - laboratory[institution_id] + + num type: 'string' + + laboratory_used + + File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. + + values: + + - laboratory[laboratory_used] + - None + + num type: 'string' + + project + + Project associated with the simulation. + + values: + + - laboratory[project] + - 'CMIP7' + + num type: 'string' + + project_settings + + Project settings definition file to be used. + + values: + + - laboratory[project_settings] + - init[project] + + num type: 'string' + + save_project_settings + + The path of the file where the complete project settings will be written, if needed. + + values: + + - laboratory[save_project_settings] + - None + + num type: 'string' + + vocabulary_config + + Configuration file of the vocabulary to be used. + + values: + + - laboratory[vocabulary_config] + - '__package-root__/vocabulary/vocabulary.json' + + num type: 'string' + + vocabulary_project + + The vocabulary project which should be used. + + values: + + - laboratory[vocabulary_project] formatted with function from self named lower({}) + - init[project] formatted with function from self named lower({}) + + num type: 'string' + + vocabulary_used + + The vocabulary infrastructure type which should be used. + + values: + + - laboratory[vocabulary_used] + - 'dr2xml_default' + + num type: 'string' + Internal values --------------- .. glossary:: @@ -10,9 +148,7 @@ Internal values CFMIP has an elaborated requirement for defining subhr frequency; by default, dr2xml uses 1 time step. - fatal: False - - default values: + values: - laboratory[CFsubhr_frequency] - '1ts' @@ -23,9 +159,16 @@ Internal values Controlled vocabulary file containing experiment characteristics. - fatal: False + fatal: True + + values: + + - function from vocabulary_server named get_term_in_collection('project_id'= init[vocabulary_project], 'collection_id'= 'experiment', 'term_id'= internal[experiment_id]) - default values: read_json_file('{}{}_experiment_id.json'.format(dict[cvspath], internal[project]))[experiment_id][internal[experiment_id]] + forbidden values: + + - None + - '' num type: 'string' @@ -33,9 +176,7 @@ Internal values DR01.00.21 does not include Gibraltar strait, which is requested by OMIP. Can include it, if model provides it as last value of array. - fatal: False - - default values: + values: - laboratory[add_Gibraltar] - False @@ -48,7 +189,9 @@ Internal values fatal: True - default values: internal[CV_experiment][additional_allowed_model_components] + values: + + - internal[CV_experiment][additional_allowed_model_components] num type: 'string' @@ -56,9 +199,7 @@ Internal values Some scenario experiment in DR 01.00.21 do not request tos on 1 degree grid, while other do. If you use grid_policy=adhoc and had not changed the mapping of function. grids.lab_adhoc_grid_policy to grids.CNRM_grid_policy, next setting can force any tos request to also produce tos on a 1 degree grid. - fatal: False - - default values: + values: - laboratory[adhoc_policy_do_add_1deg_grid_for_tos] - False @@ -69,9 +210,7 @@ Internal values Should we allow for duplicate vars: two vars with same frequency, shape and realm, which differ only by the table. In DR01.00.21, this actually applies to very few fields (ps-Aermon, tas-ImonAnt, areacellg-IfxAnt). - fatal: False - - default values: + values: - laboratory[allow_duplicates] - True @@ -84,7 +223,7 @@ Internal values fatal: True - default values: + values: - laboratory[allow_duplicates_in_same_table] - False @@ -95,9 +234,7 @@ Internal values DR has sn attributes for MIP variables. They can be real,CF-compliant, standard_names or pseudo_standard_names, i.e. not yet approved labels. Default is to use only CF ones. - fatal: False - - default values: + values: - laboratory[allow_pseudo_standard_names] - False @@ -108,9 +245,7 @@ Internal values When using select='no', Xios may enter an endless loop, which is solved if next setting is False. - fatal: False - - default values: + values: - laboratory[allow_tos_3hr_1deg] - True @@ -121,19 +256,17 @@ Internal values In some instances, the experiment start year is not explicit or is doubtful in DR. See file doc/some_experiments_starty_in_DR01.00.21. You should then specify it, using next setting in order that requestItems analysis work in all cases. In some other cases, DR requestItems which apply to the experiment form its start does not cover its whole duration and have a wrong duration (computed based on a wrong start year); They necessitate to fix the start year. - fatal: False - - default values: simulation[branch_year_in_child] + values: + + - simulation[branch_year_in_child] num type: 'string' branching - Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. + Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. - fatal: False - - default values: + values: - laboratory[branching][internal[source_id]] - {} @@ -144,9 +277,7 @@ Internal values If the CMIP6 Controlled Vocabulary doesn't allow all the components you activate, you can set next toggle to True - fatal: False - - default values: + values: - laboratory[bypass_CV_components] - False @@ -157,9 +288,7 @@ Internal values Estimate of number of bytes per floating value, given the chosen :term:`compression_level`. - fatal: False - - default values: + values: - laboratory[bytes_per_float] - 2 @@ -172,7 +301,9 @@ Internal values fatal: True - default values: simulation[configuration] + values: + + - simulation[configuration] num type: 'string' @@ -182,98 +313,68 @@ Internal values fatal: True - default values: dict[context] - - num type: 'string' - - data_request_config - - Configuration file of the data request content to be used - - fatal: False - - default values: - - - laboratory[data_request_config] - - '/home/rigoudyg/dev/DR2XML/dr2xml_source/dr2xml/dr_interface/CMIP7_config' - - num type: 'string' - - data_request_content_version - - Version of the data request content to be used - - fatal: False - - default values: + values: - - laboratory[data_request_content_version] - - 'latest_stable' + - dict[context] num type: 'string' - data_request_path - - Path where the data request API used is placed. + debug_parsing - fatal: False + In order to identify which xml files generates a problem, you can use this flag. - default values: + values: - - laboratory[data_request_path] - - None + - laboratory[debug_parsing] + - False num type: 'string' - data_request_used - - The Data Request infrastructure type which should be used. + dr2xml_manages_enddate - fatal: False + A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. - default values: + values: - - laboratory[data_request_used] - - 'CMIP6' + - laboratory[dr2xml_manages_enddate] + - True num type: 'string' - debug_parsing - - In order to identify which xml files generates a problem, you can use this flag. + end_year - fatal: False + If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value - default values: + values: - - laboratory[debug_parsing] + - simulation[end_year] - False num type: 'string' - dr2xml_manages_enddate - - A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. + excluded_expgroups_lset - fatal: True + List of the experiments groups that will be excluded from outputs from laboratory settings. - default values: + values: - - laboratory[dr2xml_manages_enddate] - - True + - laboratory[excluded_expgroups] + - [] - num type: 'string' + target type: 'list' - end_year + num type: 'string' - If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value + excluded_expgroups_sset - fatal: False + List of the experiments groups that will be excluded from outputs from simulation settings. - default values: + values: - - simulation[end_year] - - False + - simulation[excluded_expgroups] + - [] + + target type: 'list' num type: 'string' @@ -281,169 +382,169 @@ Internal values List of the opportunities that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_opportunities_sset List of the opportunities that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_pairs_lset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_pairs_sset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_request_links List of links un data request that should not been followed (those request are not taken into account). - fatal: False - - default values: + values: - laboratory[excluded_request_links] - [] + target type: 'list' + num type: 'string' excluded_spshapes_lset The list of shapes that should be excluded (all variables in those shapes will be excluded from outputs). - fatal: False - - default values: + values: - laboratory[excluded_spshapes] - [] + target type: 'list' + num type: 'string' excluded_tables_lset List of the tables that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_tables_sset List of the tables that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_vargroups_lset List of the variables groups that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vargroups_sset List of the variables groups that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vars_lset List of CMOR variables to exclude from the result based on previous Data Request extraction from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vars] - [] + target type: 'list' + num type: 'string' excluded_vars_per_config A dictionary which keys are configurations and values the list of variables that must be excluded for each configuration. - fatal: False - - default values: + values: - laboratory[excluded_vars_per_config][internal[configuration]] - [] + target type: 'list' + num type: 'string' excluded_vars_sset List of CMOR variables to exclude from the result based on previous Data Request extraction from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vars] - [] + target type: 'list' + num type: 'string' experiment_for_requests @@ -452,7 +553,7 @@ Internal values fatal: True - default values: + values: - simulation[experiment_for_requests] - internal[experiment_id] @@ -461,11 +562,13 @@ Internal values experiment_id - Root experiment identifier. + Root experiment identifier fatal: True - default values: simulation[experiment_id] + values: + + - simulation[experiment_id] num type: 'string' @@ -473,9 +576,7 @@ Internal values If you want to produce the same variables set for all members, set this parameter to False. - fatal: False - - default values: + values: - simulation[filter_on_realization] - laboratory[filter_on_realization] @@ -487,9 +588,7 @@ Internal values You may provide some variables already horizontally remapped to some grid (i.e. Xios domain) in external files. The varname in file must match the referenced id in pingfile. Tested only for fixed fields. A dictionary with variable id as key and a dictionary as value: the key must be the grid id, the value a dictionary with the file for each resolution. - fatal: False - - default values: + values: - laboratory[fx_from_file] - [] @@ -502,7 +601,9 @@ Internal values fatal: True - default values: laboratory[grid_choice][internal[source_id]] + values: + + - laboratory[grid_choice][internal[source_id]] num type: 'string' @@ -512,7 +613,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_policy] - False @@ -525,7 +626,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_prefix] - internal[ping_variables_prefix] @@ -534,11 +635,13 @@ Internal values grids - Grids : per model resolution and per context :- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)- Xios id for the production grid (if it is not the native grid),- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)- resolution of the production grid (using CMIP6 conventions),- grid description + Grids : per model resolution and per context :\n- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)\n- Xios id for the production grid (if it is not the native grid)\n- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)\n- resolution of the production grid (using CMIP6 conventions)\n- grid description fatal: True - default values: laboratory[grids] + values: + + - laboratory[grids] num type: 'string' @@ -548,7 +651,7 @@ Internal values fatal: True - default values: + values: - laboratory[grids_dev] - {} @@ -559,9 +662,7 @@ Internal values Variables to be grouped in the same output file (provided additional conditions are filled). - fatal: False - - default values: + values: - simulation[grouped_vars_per_file] - laboratory[grouped_vars_per_file] @@ -569,153 +670,154 @@ Internal values num type: 'string' + included_expgroups + + List of experiments groups that will be processed (all others will not). + + values: + + - simulation[included_expgroups] + - internal[included_expgroups_lset] + + target type: 'list' + + num type: 'string' + + included_expgroups_lset + + List of experiments groups that will be processed (all others will not) from laboratory settings. + + values: + + - laboratory[included_expgroups] + - [] + + target type: 'list' + + num type: 'string' + included_opportunities List of opportunities that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_opportunities] - internal[included_opportunities_lset] + target type: 'list' + num type: 'string' included_opportunities_lset List of opportunities that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_opportunities] - [] + target type: 'list' + num type: 'string' included_request_links List of the request links that will be processed (all others will not). - fatal: False - - default values: + values: - laboratory[included_request_links] - [] + target type: 'list' + num type: 'string' included_tables List of tables that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_tables] - internal[included_tables_lset] + target type: 'list' + num type: 'string' included_tables_lset List of tables that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_tables] - [] + target type: 'list' + num type: 'string' included_vargroups List of variables groups that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_vargroups] - internal[included_vargroups_lset] + target type: 'list' + num type: 'string' included_vargroups_lset List of variables groups that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vargroups] - [] + target type: 'list' + num type: 'string' included_vars Variables to be considered from the Data Request (all others will not) - fatal: False - - default values: + values: - simulation[included_vars] - internal[included_vars_lset] + target type: 'list' + num type: 'string' included_vars_lset Variables to be considered from the Data Request (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vars] - [] - num type: 'string' - - institution_id + target type: 'list' - Institution identifier. + num type: 'string' - fatal: True + listof_home_vars - default values: laboratory[institution_id] + Full path to the file which contains the list of home variables to be taken into account, in addition to the Data Request. - num type: 'string' - - laboratory_used - - File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. - - fatal: False - - default values: - - - laboratory[laboratory_used] - - None - - num type: 'string' - - listof_home_vars - - Full path to the file which contains the list of home variables to be taken into account, in addition to the Data Request. - - fatal: False - - default values: + values: - simulation[listof_home_vars] - laboratory[listof_home_vars] @@ -727,9 +829,7 @@ Internal values The maximum size of generated files in number of floating values. - fatal: False - - default values: + values: - laboratory[max_file_size_in_floats] - 500000000.0 @@ -742,7 +842,7 @@ Internal values fatal: True - default values: + values: - simulation[max_priority] - internal[max_priority_lset] @@ -755,7 +855,9 @@ Internal values fatal: True - default values: laboratory[max_priority] + values: + + - laboratory[max_priority] num type: 'string' @@ -763,9 +865,7 @@ Internal values The maximum number of years that should be putted in a single file. - fatal: True - - default values: + values: - simulation[max_split_freq] - laboratory[max_split_freq] @@ -779,7 +879,9 @@ Internal values fatal: True - default values: laboratory[mips] + values: + + - laboratory[mips] num type: 'string' @@ -789,7 +891,7 @@ Internal values fatal: True - default values: + values: - laboratory[nemo_sources_management_policy_master_of_the_world] - False @@ -798,11 +900,9 @@ Internal values non_standard_attributes - You may add a series of NetCDF attributes in all files for this simulation - - fatal: False + You may add a series of NetCDF attributes in all files for this simulation. - default values: + values: - laboratory[non_standard_attributes] - {} @@ -813,9 +913,7 @@ Internal values If your model has some axis which does not have all its attributes as in DR, and you want dr2xml to fix that it, give here the correspondence from model axis id to DR dim/grid id. For label dimensions you should provide the list of labels, ordered as in your model, as second element of a pair. Label-type axes will be processed even if not quoted. Scalar dimensions are not concerned by this feature. A dictionary with (axis_id, axis_correct_id) or (axis_id, tuple of labels) as key, values. - fatal: False - - default values: + values: - laboratory[non_standard_axes] - {} @@ -826,9 +924,7 @@ Internal values Name of the orography field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[orography_field_name] - 'orog' @@ -837,11 +933,13 @@ Internal values orphan_variables - A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context) + A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context). fatal: True - default values: laboratory[orphan_variables] + values: + + - laboratory[orphan_variables] num type: 'string' @@ -849,9 +947,7 @@ Internal values Full path of the directory which contains extra tables. - fatal: False - - default values: + values: - simulation[path_extra_tables] - laboratory[path_extra_tables] @@ -863,9 +959,7 @@ Internal values The path of the directory which, at run time, contains the root XML file (iodef.xml). - fatal: False - - default values: + values: - laboratory[path_to_parse] - './' @@ -876,9 +970,7 @@ Internal values A dictionary containing, for each perso or dev variables with a XY-perso shape, and for each vertical coordinate associated, the main attributes of the dimension. - fatal: False - - default values: + values: - simulation[perso_sdims_description] - {} @@ -891,7 +983,9 @@ Internal values fatal: True - default values: laboratory[ping_variables_prefix] + values: + + - laboratory[ping_variables_prefix] num type: 'string' @@ -899,9 +993,9 @@ Internal values Name of the orography field name to be used to compute height over orog fields prefixed with :term:`ping_variable_prefix`. - fatal: False - - default values: '{}{}'.format(internal[ping_variables_prefix], internal[orography_field_name]) + values: + + - function from self named format('prefix'= internal[ping_variables_prefix], 'variable'= internal[orography_field_name]) num type: 'string' @@ -909,9 +1003,7 @@ Internal values For an extended printout of selected CMOR variables, grouped by variable label. - fatal: False - - default values: + values: - laboratory[print_stats_per_var_label] - False @@ -922,48 +1014,18 @@ Internal values If the value is a list, only the file/field variables listed here will be put in output files. If boolean, tell if the file/field variables should be put in output files. - fatal: False - - default values: + values: - laboratory[print_variables] - True num type: 'string' - project - - Project associated with the simulation. - - fatal: False - - default values: - - - laboratory[project] - - 'CMIP6' - - num type: 'string' - - project_settings - - Project settings definition file to be used. - - fatal: False - - default values: - - - laboratory[project_settings] - - internal[project] - - num type: 'string' - realization_index Realization number. - fatal: False - - default values: + values: - simulation[realization_index] - '1' @@ -972,11 +1034,13 @@ Internal values realms_per_context - A dictionary which keys are context names and values the lists of realms associated with each context + A dictionary which keys are context names and values the lists of realms associated with each context. fatal: True - default values: laboratory[realms_per_context][internal[context]] + values: + + - laboratory[realms_per_context][internal[context]] num type: 'string' @@ -986,7 +1050,9 @@ Internal values fatal: True - default values: internal[CV_experiment][required_model_components] + values: + + - internal[CV_experiment][required_model_components] num type: 'string' @@ -996,20 +1062,10 @@ Internal values fatal: True - default values: laboratory[sampling_timestep] - - num type: 'string' - - save_project_settings - - The path of the file where the complete project settings will be written, if needed. - - fatal: False - - default values: + values: - - laboratory[save_project_settings] - - None + - laboratory[sampling_timestep] + - 2 num type: 'string' @@ -1017,9 +1073,9 @@ Internal values List of the sectors to be considered. - fatal: False - - default values: laboratory[sectors] + values: + + - laboratory[sectors] num type: 'string' @@ -1029,7 +1085,9 @@ Internal values fatal: True - default values: dict[select] + values: + + - dict[select] authorized values: @@ -1039,43 +1097,65 @@ Internal values num type: 'string' + select_excluded_expgroups + + Excluded experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_expgroups_lset] + - + + num type: 'string' + select_excluded_opportunities Excluded opportunities for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_opportunities_lset]', 'internal[excluded_opportunities_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_opportunities_lset] + - num type: 'string' @@ -1085,37 +1165,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_pairs_lset]', 'internal[excluded_pairs_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_pairs_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_pairs_lset] + - num type: 'string' @@ -1125,37 +1196,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[excluded_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[excluded_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1165,37 +1227,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_tables_lset]', 'internal[excluded_tables_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_tables_lset] + - num type: 'string' @@ -1205,37 +1258,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vargroups_lset]', 'internal[excluded_vargroups_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vargroups_lset] + - num type: 'string' @@ -1245,37 +1289,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vars_lset]', 'internal[excluded_vars_sset]', 'internal[excluded_vars_per_config]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vars_lset] + - num type: 'string' @@ -1285,37 +1320,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[grid_choice] - - Case: + values: - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: 'LR' - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[grid_choice] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: 'LR' + - + + num type: 'string' + + select_included_expgroups + + Included experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_expgroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_expgroups_lset] + - num type: 'string' @@ -1325,37 +1382,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_opportunities] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_opportunities] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_opportunities_lset] + - num type: 'string' @@ -1365,37 +1413,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1405,77 +1444,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_tables] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_tables] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_tables_lset] + - num type: 'string' select_included_vargroups - Included variables groups for variable selection. + Included variable groups for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vargroups] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vargroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vargroups_lset] + - num type: 'string' @@ -1485,37 +1506,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vars] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vars] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vars_lset] + - num type: 'string' @@ -1525,37 +1537,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[max_priority] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[max_priority_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[max_priority] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[max_priority_lset] + - num type: 'string' @@ -1565,37 +1568,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[mips][internal[select_grid_choice]]sort_mips() - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[mips]sort_mips() - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: function from functions_file named sort_mips('mips'= internal[mips][internal[select_grid_choice]]) + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: function from functions_file named sort_mips('mips'= internal[mips]) + - num type: 'string' @@ -1605,40 +1599,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'on_expt_and_year' - - 'on_expt' - - - value: True - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'no' - - - value: False - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt_and_year' + - - 'on_expt' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'no' + - + - values: False + - num type: 'string' @@ -1648,40 +1633,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'on_expt_and_year' - - - value: internal[year] - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'no' - - 'on_expt' - - - value: None - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'on_expt_and_year' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt' + - - 'no' + - + - values: False + - num type: 'string' @@ -1691,37 +1667,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[sizes] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[sizes] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1731,47 +1698,38 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[tierMax] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[tierMax_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[tierMax] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[tierMax_lset] + - num type: 'string' simple_domain_grid_regexp - If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: 1) it must be a grid which has only a domain 2) the domain name must be extractable from the grid_id using a regexp and a group number Example: using a pattern that returns full id except for a '_grid' suffix + If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: \n1) it must be a grid which has only a domain \n2) the domain name must be extractable from the grid_id using a regexp and a group number \nExample: using a pattern that returns full id except for a '_grid' suffix - fatal: False - - default values: laboratory[simple_domain_grid_regexp] + values: + + - laboratory[simple_domain_grid_regexp] num type: 'string' @@ -1781,7 +1739,9 @@ Internal values fatal: True - default values: laboratory[sizes][internal[grid_choice]]format_sizes() + values: + + - function from functions_file named format_sizes('sizes'= laboratory[sizes][internal[grid_choice]]) num type: 'string' @@ -1791,7 +1751,7 @@ Internal values fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][0] - simulation[source_id] @@ -1800,11 +1760,11 @@ Internal values source_type - If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote "AGCM AER". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit + If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote \"AGCM AER\". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][1] - simulation[source_type] @@ -1816,9 +1776,7 @@ Internal values This variable is used when some variables are computed with a period which is not the basic timestep. A dictionary which keys are non standard timestep and values the list of variables which are computed at this timestep. - fatal: False - - default values: + values: - laboratory[special_timestep_vars] - [] @@ -1829,9 +1787,7 @@ Internal values Path to the split frequencies file to be used. - fatal: False - - default values: + values: - simulation[split_frequencies] - laboratory[split_frequencies] @@ -1841,11 +1797,13 @@ Internal values synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. - - fatal: False + Frequency at which the synchronisation between buffer and filesystem is done. - default values: [] + values: + + - simulation[synchronisation_frequency] + - laboratory[synchronisation_frequency] + - None num type: 'string' @@ -1855,7 +1813,7 @@ Internal values fatal: True - default values: + values: - simulation[tierMax] - internal[tierMax_lset] @@ -1868,7 +1826,9 @@ Internal values fatal: True - default values: laboratory[tierMax] + values: + + - laboratory[tierMax] num type: 'string' @@ -1878,7 +1838,7 @@ Internal values fatal: True - default values: + values: - laboratory[too_long_periods] - [] @@ -1889,9 +1849,7 @@ Internal values Should xml output files use the `@` symbol for definitions for instant variables? - fatal: False - - default values: + values: - laboratory[useAtForInstant] - False @@ -1904,7 +1862,7 @@ Internal values fatal: True - default values: + values: - laboratory[use_cmorvar_label_in_filename] - False @@ -1915,9 +1873,7 @@ Internal values Say if you want to use XIOS union/zoom axis to optimize vertical interpolation requested by the DR. - fatal: False - - default values: + values: - laboratory[use_union_zoom] - False @@ -1928,9 +1884,7 @@ Internal values Operation done for vertical interpolation. - fatal: False - - default values: + values: - laboratory[vertical_interpolation_operation] - 'instant' @@ -1941,9 +1895,9 @@ Internal values Time frequency of vertical interpolation. - fatal: False - - default values: laboratory[vertical_interpolation_sample_freq] + values: + + - laboratory[vertical_interpolation_sample_freq] num type: 'string' @@ -1951,9 +1905,7 @@ Internal values Version of XIOS used. - fatal: False - - default values: + values: - laboratory[xios_version] - 2 @@ -1966,7 +1918,9 @@ Internal values fatal: True - default values: dict[year] + values: + + - dict[year] num type: 'string' @@ -1974,9 +1928,7 @@ Internal values Name of the geopotential height field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[zg_field_name] - 'zg' @@ -1992,9 +1944,7 @@ Common values HDL associated with the project. - fatal: False - - default values: + values: - simulation[HDL] - laboratory[HDL] @@ -2006,13 +1956,11 @@ Common values MIP(s) name(s). - fatal: False - - default values: + values: - simulation[activity_id] - laboratory[activity_id] - - internal[CV_experiment][activity_id] + - internal[CV_experiment][activity_id][0] formatted with function from self named upper({}) num type: 'string' @@ -2020,9 +1968,7 @@ Common values Branching procedure. - fatal: False - - default values: + values: - simulation[branch_method] - 'standard' @@ -2033,9 +1979,7 @@ Common values Branch month in parent simulation with respect to its time axis. - fatal: False - - default values: + values: - simulation[branch_month_in_parent] - '1' @@ -2046,90 +1990,78 @@ Common values Branch year in parent simulation with respect to its time axis. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: simulation[branch_year_in_parent] + - + - check to perform: 'eq' + - + - reference values: internal[branching][internal[experiment_id]][1] + - + - values: simulation[branch_year_in_parent] + - + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'neq' + - + - reference values: internal[branching] + - + - values: simulation[branch_year_in_parent] + - + + forbidden values: - None - 'None' - '' - 'N/A' - cases: - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: internal[branching] - - Condition: - - check value: simulation[branch_year_in_parent] - - check to do: 'eq' - - reference values: internal[branching][internal[experiment_id]][1] - - - value: simulation[branch_year_in_parent] - - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'neq' - - reference values: internal[branching] - - - value: simulation[branch_year_in_parent] - - num type: 'string' - comment_lab + comment_lset A character string containing additional information about the models from laboratory settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - laboratory[comment] - '' num type: 'string' - comment_sim + comment_sset A character string containing additional information about the models from simulation settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - simulation[comment] - '' num type: 'string' - compression_level + commercial_license + + Either commercial or not commercial license + + fatal: True - The compression level to be applied to NetCDF output files. + values: + + - laboratory[commercial_license] + - 'NonCommercial-' + + num type: 'string' + + compression_level - fatal: False + The compression level to be applied to NetCDF output files." - default values: + values: - laboratory[compression_level] - '0' @@ -2140,9 +2072,7 @@ Common values Email address of the data producer. - fatal: False - - default values: + values: - simulation[contact] - laboratory[contact] @@ -2154,9 +2084,9 @@ Common values Version of the conventions used. - fatal: False - - default values: dr2xml.config.conventions + values: + + - config.conventions num type: 'string' @@ -2164,19 +2094,21 @@ Common values Version of the conventions used. - fatal: False - - default values: dr2xml.config.CMIP6_conventions_version + values: + + - function from vocabulary_server named get_all_terms_in_collection('project_id'= init[vocabulary_project], 'collection_id'= 'dataConventions') num type: 'string' data_specs_version - Version of the data request used. + version label for the set of requirements and CVs followed in creating a file fatal: True - default values: data_request.get_version() + values: + + - function from vocabulary_server named get_all_terms_in_collection('project_id'= init[vocabulary_project], 'collection_id'= 'datasetSpecs') num type: 'string' @@ -2184,9 +2116,9 @@ Common values Date range format to be used in file definition names. - fatal: False - - default values: '%start_date%-%end_date%' + values: + + - '%start_date%-%end_date%' num type: 'string' @@ -2194,12 +2126,10 @@ Common values Description of the simulation. - fatal: False - - default values: + values: - - simulation[description] - laboratory[description] + - simulation[description] num type: 'string' @@ -2207,9 +2137,19 @@ Common values Version of dr2xml used. - fatal: False + values: + + - config.version + + num type: 'string' + + drs_specs - default values: dr2xml.config.version + label identifying the data reference syntax used to name files, define directory trees, and uniquely identify datasets. + + values: + + - function from vocabulary_server named get_all_terms_in_collection('project_id'= init[vocabulary_project], 'collection_id'= 'drsSpecs') num type: 'string' @@ -2217,9 +2157,10 @@ Common values Name of the experiment. - fatal: False - - default values: simulation[experiment] + values: + + - simulation[experiment] + - internal[CV_experiment][description] num type: 'string' @@ -2227,9 +2168,7 @@ Common values Experiment label to use in file names and attribute. - fatal: False - - default values: + values: - simulation[expid_in_filename] - internal[experiment_id] @@ -2242,9 +2181,7 @@ Common values Index for variant of forcing. - fatal: False - - default values: + values: - simulation[forcing_index] - '1' @@ -2255,9 +2192,7 @@ Common values In case of replacement of previously produced data, description of any changes in the production chain. - fatal: False - - default values: + values: - simulation[history] - 'none' @@ -2268,9 +2203,9 @@ Common values Location of documentation. - fatal: False - - default values: laboratory[info_url] + values: + + - laboratory[info_url] num type: 'string' @@ -2278,9 +2213,7 @@ Common values Index for variant of initialization method. - fatal: False - - default values: + values: - simulation[initialization_index] - '1' @@ -2291,22 +2224,80 @@ Common values Full name of the institution of the data producer. - fatal: False - - default values: + values: - laboratory[institution] - - read_json_file('{}{}_institution_id.json'.format(dict[cvspath], internal[project]))[institution_id][internal[institution_id]] + - common[institution_input][description] + + num type: 'string' + + institution_input + + Institution information from input + + fatal: True + + values: + + - function from vocabulary_server named get_term_in_collection('project_id'= init[vocabulary_project], 'collection_id'= 'institution_id', 'term_id'= init[institution_id] formatted with function from self named lower({})) + + forbidden values: + + - None + - '' num type: 'string' license + Text of the license which applies + + fatal: True + + values: + + - common[license_file][0] + - common[license_file][license] + + num type: 'string' + + license_file + File where the license associated with the produced output files can be found. - fatal: False + fatal: True + + values: + + - read_json_file(function from self named format('cvspath'= dict[cvspath], 'project'= init[project]))[license] + + num type: 'string' + + license_id + + License id + + fatal: True + + values: + + - common[license_file][license][laboratory[license_id]][license_id] + - common[license_file][license_options][CC BY-NC-SA 4.0][license_id] + - '' + + num type: 'string' + + license_url + + License url + + fatal: True - default values: read_json_file('{}{}_license.json'.format(dict[cvspath], internal[project]))[license][0] + values: + + - common[license_file][license][laboratory[license_id]][license_url] + - common[license_file][license_options][CC BY-NC-SA 4.0][license_url] + - 'https://creativecommons.org/licenses' num type: 'string' @@ -2314,9 +2305,9 @@ Common values Name of the file which will contain the list of the patterns of perso and dev output file definition. - fatal: False - - default values: 'dr2xml_list_perso_and_dev_file_names' + values: + + - 'dr2xml_list_perso_and_dev_file_names' num type: 'string' @@ -2324,11 +2315,9 @@ Common values Id of the member done. - fatal: False - - default values: + values: - - '{}-{}'.format(common[sub_experiment_id], common[variant_label]) + - function from self named format('sub_exp'= common[sub_experiment_id], 'variant'= common[variant_label]) - common[variant_label] forbidden patterns: 'none-.*' @@ -2337,14 +2326,35 @@ Common values mip_era - MIP associated with the simulation. + label to indicate the CMIP phase when an experiment was designed + + values: + + - function from vocabulary_server named get_all_terms_in_collection('project_id'= init[vocabulary_project], 'collection_id'= 'mipEra') + + forbidden values: None - fatal: False + num type: 'string' + + mip_era_lset - default values: + MIP associated with the simulation from laboratory settings. + + values: - - simulation[mip_era] - laboratory[mip_era] + - None + + num type: 'string' + + mip_era_sset + + MIP associated with the simulation from simulation settings. + + values: + + - simulation[mip_era] + - None num type: 'string' @@ -2352,9 +2362,7 @@ Common values We can control the max output level set for all output files. - fatal: False - - default values: + values: - laboratory[output_level] - '10' @@ -2365,9 +2373,7 @@ Common values Description of sub-experiment. - fatal: False - - default values: + values: - simulation[parent_activity_id] - simulation[activity_id] @@ -2381,13 +2387,11 @@ Common values Parent experiment identifier. - fatal: False - - default values: + values: - simulation[parent_experiment_id] - laboratory[parent_experiment_id] - - internal[CV_experiment][parent_experiment_id] + - internal[CV_experiment][parent_experiment_id][0] formatted with function from self named upper({}) num type: 'string' @@ -2395,9 +2399,9 @@ Common values Parent’s associated MIP cycle. - fatal: False - - default values: simulation[parent_mip_era] + values: + + - simulation[parent_mip_era] num type: 'string' @@ -2405,9 +2409,9 @@ Common values Parent model identifier. - fatal: False - - default values: simulation[parent_source_id] + values: + + - simulation[parent_source_id] num type: 'string' @@ -2415,9 +2419,7 @@ Common values Reference year in parent simulation. - fatal: False - - default values: + values: - simulation[parent_time_ref_year] - '1850' @@ -2428,9 +2430,9 @@ Common values Time units used in parent. - fatal: False - - default values: simulation[parent_time_units] + values: + + - simulation[parent_time_units] num type: 'string' @@ -2438,9 +2440,9 @@ Common values Parent variant label. - fatal: False - - default values: simulation[parent_variant_label] + values: + + - simulation[parent_variant_label] num type: 'string' @@ -2448,9 +2450,7 @@ Common values Index for model physics variant. - fatal: False - - default values: + values: - simulation[physics_index] - '1' @@ -2463,7 +2463,9 @@ Common values fatal: True - default values: dict[prefix] + values: + + - dict[prefix] num type: 'string' @@ -2471,9 +2473,9 @@ Common values References associated with the simulation. - fatal: False - - default values: laboratory[references] + values: + + - laboratory[references] num type: 'string' @@ -2481,22 +2483,35 @@ Common values Name of the model. - fatal: False - - default values: + values: - - read_json_file('{}{}_source_id.json'.format(dict[cvspath], internal[project]))[source_id][internal[source_id]]make_source_string('source_id'= internal[source_id]) + - function from functions_file named make_source_string('source'= common[source_input][__dict__], 'source_id'= internal[source_id]) - laboratory[source] num type: 'string' + source_input + + Source information from input + + fatal: True + + values: + + - function from vocabulary_server named get_term_in_collection('project_id'= init[vocabulary_project], 'collection_id'= 'source', 'term_id'= internal[source_id] formatted with function from self named lower({})) + + forbidden values: + + - None + - '' + + num type: 'string' + sub_experiment Sub-experiment name. - fatal: False - - default values: + values: - simulation[sub_experiment] - 'none' @@ -2507,24 +2522,34 @@ Common values Sub-experiment identifier. - fatal: False - - default values: + values: - simulation[sub_experiment_id] - 'none' num type: 'string' + title + + Title to be put on output files + + values: + + - simulation[title] + - laboratory[title] + - function from self named format('mip_era'= common[mip_era][0], 'experiment_id'= internal[experiment_id], 'source_id'= internal[source_id]) + + num type: 'string' + variant_info It is recommended that some description be included to help identify major differences among variants, but care should be taken to record correct information. dr2xml will add in all cases: 'Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.' - fatal: False - - default values: simulation[variant_info] + values: + + - simulation[variant_info] - skip values: '' + forbidden values: '' num type: 'string' @@ -2532,9 +2557,9 @@ Common values Label of the variant done. - fatal: False - - default values: 'r{}i{}p{}f{}'.format(internal[realization_index], common[initialization_index], common[physics_index], common[forcing_index]) + values: + + - function from self named format('realization'= internal[realization_index], 'initialization'= common[initialization_index], 'physics'= common[physics_index], 'forcing'= common[forcing_index]) num type: 'string' @@ -2552,19 +2577,19 @@ Project settings Id of the axis. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' positive - How is the axis oriented? + Hox is the axis oriented? - fatal: False - - default values: [] + values: + + - attrs[positive] num type: 'string' @@ -2572,9 +2597,9 @@ Project settings Number of values of this axis. - fatal: False - - default values: [] + values: + + - attrs[n_glo] num type: 'string' @@ -2582,11 +2607,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2598,9 +2623,9 @@ Project settings Reference axis. - fatal: False - - default values: [] + values: + + - attrs[axis_ref] num type: 'string' @@ -2608,9 +2633,9 @@ Project settings Name of this axis. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -2618,27 +2643,25 @@ Project settings Standard name of the axis. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' - None - authorized types: - num type: 'string' long_name Long name of this axis. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -2646,21 +2669,9 @@ Project settings Precision of the axis. - fatal: False - - default values: [] - - skip values: - - - '' - - 'None' - - None - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -2671,17 +2682,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' unit Unit of the axis. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -2693,11 +2716,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2709,11 +2732,11 @@ Project settings Bounds of the axis. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -2725,11 +2748,11 @@ Project settings Name dimension of the axis. - fatal: False - - default values: [] + values: + + - attrs[dim_name] - skip values: + forbidden values: - '' - 'None' @@ -2741,11 +2764,11 @@ Project settings Label of the axis. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -2757,11 +2780,11 @@ Project settings Axis type. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -2781,14 +2804,9 @@ Project settings Precision associated with the axis group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -2800,6 +2818,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' context @@ -2811,9 +2835,9 @@ Project settings Version of the Data Request used - fatal: False - - default values: '{} Data Request version {}'.format(internal[data_request_used], common[data_specs_version]) + values: + + - function from self named format('data_request_used'= init[data_request_used], 'data_specs_version'= common[data_specs_version]) num type: 'string' @@ -2821,9 +2845,9 @@ Project settings Controled vocabulary version used. - fatal: False - - default values: 'CMIP6-CV version ??' + values: + + - 'CMIP7-CV version ??' num type: 'string' @@ -2831,9 +2855,9 @@ Project settings Conventions version used. - fatal: False - - default values: 'CMIP6_conventions_version {}'.format(common[conventions_version]) + values: + + - 'CMIP6_conventions_version {}'.format(common[conventions_version]) num type: 'string' @@ -2841,9 +2865,9 @@ Project settings Version of dr2xml used - fatal: False - - default values: 'dr2xml version {}'.format(common[dr2xml_version]) + values: + + - function from self named format('dr2xml_version'= common[dr2xml_version]) num type: 'string' @@ -2851,9 +2875,9 @@ Project settings Laboratory settings used - fatal: False - - default values: 'Lab_and_model settings***newline***{}'.format(laboratory) + values: + + - function from self named format('laboratory'= laboratory) num type: 'string' @@ -2861,9 +2885,9 @@ Project settings Simulation_settings used - fatal: False - - default values: 'Simulation settings***newline***{}'.format(simulation) + values: + + - function from self named format('laboratory'= simulation) num type: 'string' @@ -2871,9 +2895,9 @@ Project settings Year used for the dr2xml's launch - fatal: False - - default values: 'Year processed {}'.format(internal[year]) + values: + + - function from self named format('year'= internal[year]) num type: 'string' @@ -2883,9 +2907,9 @@ Project settings Id of the context - fatal: False - - default values: internal[context] + values: + + - internal[context] num type: 'string' @@ -2898,29 +2922,29 @@ Project settings Id of the domain. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' ni_glo - Number of points on i dimension. + Number of point in i dimension. - fatal: False - - default values: [] + values: + + - attrs[ni_glo] num type: 'string' nj_glo - Number of points on j dimension. + Number of points in j dimension. - fatal: False - - default values: [] + values: + + - attrs[nj_glo] num type: 'string' @@ -2928,9 +2952,9 @@ Project settings Type of the domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -2938,9 +2962,9 @@ Project settings Precision of the domain. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -2948,9 +2972,9 @@ Project settings Latitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lat_name] num type: 'string' @@ -2958,9 +2982,9 @@ Project settings Longitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lon_name] num type: 'string' @@ -2968,9 +2992,9 @@ Project settings Name of the i dimension. - fatal: False - - default values: [] + values: + + - attrs[dim_i_name] num type: 'string' @@ -2978,9 +3002,9 @@ Project settings Reference domain. - fatal: False - - default values: [] + values: + + - attrs[domain_ref] num type: 'string' @@ -2996,14 +3020,9 @@ Project settings Precision associated with the domain group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -3015,6 +3034,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' duplicate_scalar @@ -3029,9 +3054,9 @@ Project settings Id of the field. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -3039,9 +3064,9 @@ Project settings Id of the reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -3049,9 +3074,9 @@ Project settings Name of the field. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3059,9 +3084,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -3069,9 +3094,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -3079,9 +3104,9 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] num type: 'string' @@ -3089,9 +3114,9 @@ Project settings Long name of the field. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -3099,9 +3124,9 @@ Project settings Standard name of the field. - fatal: False - - default values: [] + values: + + - attrs[standard_name] num type: 'string' @@ -3109,9 +3134,9 @@ Project settings Unit of the field. - fatal: False - - default values: [] + values: + + - attrs[unit] num type: 'string' @@ -3119,9 +3144,9 @@ Project settings Operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3129,9 +3154,9 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: [] + values: + + - attrs[detect_missing_value] num type: 'string' @@ -3139,9 +3164,9 @@ Project settings Precision of the field. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -3157,9 +3182,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -3167,9 +3192,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -3177,14 +3202,28 @@ Project settings XIOS field beacon (only for output fields) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: field_ref Reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -3192,9 +3231,10 @@ Project settings Name of the field. - fatal: False - - default values: variable.mipVarLabel + values: + + - attrs[name] + - common_tag[variable][mipVarLabel] num type: 'string' @@ -3202,11 +3242,11 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] - skip values: + forbidden values: - '' - 'None' @@ -3218,11 +3258,11 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] - skip values: + forbidden values: - '' - 'None' @@ -3234,9 +3274,10 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: 'True' + values: + + - attrs[detect_missing_value] + - 'True' num type: 'string' @@ -3246,12 +3287,11 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '0' - - '1.e+20' + - attrs[default_value] + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3262,6 +3302,11 @@ Project settings - 'integer': '0' - 'int': '0' + authorized values: + + - '0' + - '1.e+20' + num type: 'string' prec @@ -3270,13 +3315,10 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3287,15 +3329,22 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' cell_methods Cell method associated with the field. - fatal: False - - default values: variable.cell_methods + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] num type: 'string' @@ -3303,9 +3352,10 @@ Project settings Mode associated with the cell method of the field. - fatal: False - - default values: 'overwrite' + values: + + - attrs[cell_methods_mode] + - 'overwrite' num type: 'string' @@ -3313,9 +3363,9 @@ Project settings Operation performed on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3323,11 +3373,11 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] - skip values: + forbidden values: - '' - 'None' @@ -3339,11 +3389,11 @@ Project settings Expression used to compute the field. - fatal: False - - default values: [] + values: + + - attrs[expr] - skip values: + forbidden values: - '' - 'None' @@ -3357,14 +3407,13 @@ Project settings Comment associated with the field. - fatal: False - - default values: + values: - - simulation[comments][variable.label] - - laboratory[comments][variable.label] + - attrs[comment] + - simulation[comments][common_tag[variable][label]] + - laboratory[comments][common_tag[variable][label]] - skip values: + forbidden values: - '' - 'None' @@ -3376,11 +3425,12 @@ Project settings Standard name of the field. - fatal: False - - default values: variable.stdname + values: + + - attrs[standard_name] + - common_tag[variable][stdname] - skip values: + forbidden values: - '' - 'None' @@ -3392,14 +3442,13 @@ Project settings Description associated with the field. - fatal: False - - default values: + values: - - variable.description + - attrs[description] + - common_tag[variable][description] - 'None' - skip values: '' + forbidden values: '' num type: 'string' @@ -3407,9 +3456,10 @@ Project settings Long name of the field. - fatal: False - - default values: variable.long_name + values: + + - attrs[long_name] + - common_tag[variable][long_name] num type: 'string' @@ -3417,11 +3467,12 @@ Project settings Way the field should be interpreted. - fatal: False - - default values: variable.positive + values: + + - attrs[positive] + - common_tag[variable][positive] - skip values: + forbidden values: - '' - 'None' @@ -3433,9 +3484,10 @@ Project settings History associated with the field. - fatal: False - - default values: common[history] + values: + + - attrs[history] + - common[history] num type: 'string' @@ -3443,11 +3495,12 @@ Project settings Units associated with the field. - fatal: False - - default values: variable.units + values: + + - attrs[units] + - common_tag[variable][units] - skip values: + forbidden values: - '' - 'None' @@ -3457,13 +3510,14 @@ Project settings cell_methods - Cell method associated with the field. - - fatal: False + Cell methods associated with the field. - default values: variable.cell_methods + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] - skip values: + forbidden values: - '' - 'None' @@ -3475,11 +3529,12 @@ Project settings Cell measures associated with the field. - fatal: False - - default values: variable.cell_measures + values: + + - attrs[cell_measures] + - common_tag[variable][cell_measures] - skip values: + forbidden values: - '' - 'None' @@ -3491,11 +3546,12 @@ Project settings Flag meanings associated with the field. - fatal: False - - default values: variable.flag_meanings + values: + + - attrs[flag_meanings] + - common_tag[variable][flag_meanings] - skip values: + forbidden values: - '' - 'None' @@ -3507,11 +3563,12 @@ Project settings Flag values associated with the field. - fatal: False - - default values: variable.flag_values + values: + + - attrs[flag_values] + - common_tag[variable][flag_values] - skip values: + forbidden values: - '' - 'None' @@ -3523,19 +3580,18 @@ Project settings Interval associated with the operation done on the field. - fatal: False - - default values: [] - - conditions: - Condition: + values: - check value: dict[operation] - - check to do: 'neq' - - reference values: 'once' - + - Condition: + - + - value to check: attrs[operation] + - + - check to perform: 'neq' + - + - reference values: 'once' + - + - values: attrs[interval_operation] + - num type: 'string' @@ -3548,9 +3604,9 @@ Project settings Id of the file. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -3558,9 +3614,9 @@ Project settings File name. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3568,9 +3624,9 @@ Project settings Mode in which the file will be open. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -3578,9 +3634,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3588,9 +3644,9 @@ Project settings Should the file be considered by XIOS. - fatal: False - - default values: [] + values: + + - attrs[enabled] num type: 'string' @@ -3603,9 +3659,10 @@ Project settings Type of file to be produced - fatal: False - - default values: 'one_file' + values: + + - attrs[type] + - 'one_file' num type: 'string' @@ -3613,9 +3670,10 @@ Project settings Should the file_definition be considered by XIOS - fatal: False - - default values: 'true' + values: + + - attrs[enabled] + - 'true' num type: 'string' @@ -3623,14 +3681,31 @@ Project settings XIOS file beacon (only for output files) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: id Id of the output file - fatal: False + fatal: True - default values: '{}_{}_{}'.format(variable.label, dict[table_id], dict[grid_label]) + values: + + - attrs[id] + - function from self named format('grid'= attrs[grid_label], 'table'= attrs[table_id], 'variable'= common_tag[variable][label]) num type: 'string' @@ -3640,7 +3715,9 @@ Project settings fatal: True - default values: build_filename('frequency'= variable.frequency, 'prefix'= common[prefix], 'table'= dict[table_id], 'source_id'= internal[source_id], 'expid_in_filename'= common[expid_in_filename], 'member_id'= common[member_id], 'grid_label'= dict[grid_label], 'date_range'= common[date_range], 'var_type'= variable.type, 'list_perso_dev_file'= common[list_perso_dev_file], 'label'= variable.label, 'mipVarLabel'= variable.mipVarLabel, 'use_cmorvar'= internal[use_cmorvar_label_in_filename]) + values: + + - function from functions_file named build_filename('frequency'= common_tag[variable][frequency], 'prefix'= common[prefix], 'table'= dict[table_id], 'source_id'= internal[source_id], 'expid_in_filename'= common[expid_in_filename], 'member_id'= common[member_id], 'grid_label'= dict[grid_label], 'date_range'= common[date_range], 'var_type'= common_tag[variable][type], 'list_perso_dev_file'= common[list_perso_dev_file], 'label'= common_tag[variable][label], 'mipVarLabel'= common_tag[variable][mipVarLabel], 'use_cmorvar'= internal[use_cmorvar_label_in_filename]) num type: 'string' @@ -3648,9 +3725,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3658,9 +3735,10 @@ Project settings Should the data be append to the file? - fatal: False - - default values: 'true' + values: + + - attrs[append] + - 'true' num type: 'string' @@ -3668,11 +3746,12 @@ Project settings Output level of the file. - fatal: False - - default values: common[output_level] + values: + + - attrs[output_level] + - common[output_level] - skip values: + forbidden values: - 'None' - '' @@ -3684,11 +3763,12 @@ Project settings Compression level of the file. - fatal: False - - default values: common[compression_level] + values: + + - attrs[compression_level] + - common[compression_level] - skip values: + forbidden values: - 'None' - '' @@ -3700,143 +3780,139 @@ Project settings Splitting frequency of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_freq_format Splitting frequency format of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq_format] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_start_offset Splitting start offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_start_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_end_offset Splitting end offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_end_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_last_date Splitting last date of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_last_date] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' time_units Time units of the file. - fatal: False - - default values: 'days' + values: + + - attrs[ time_units] + - 'days' num type: 'string' @@ -3844,9 +3920,10 @@ Project settings Time counter name. - fatal: False - - default values: 'time' + values: + + - attrs[time_counter_name] + - 'time' num type: 'string' @@ -3854,9 +3931,10 @@ Project settings Time counter type. - fatal: False - - default values: 'exclusive' + values: + + - attrs[time_counter] + - 'exclusive' num type: 'string' @@ -3864,9 +3942,10 @@ Project settings Time stamp name. - fatal: False - - default values: 'creation_date' + values: + + - attrs[time_stamp_name] + - 'creation_date' num type: 'string' @@ -3874,9 +3953,10 @@ Project settings Time stamp format. - fatal: False - - default values: '%Y-%m-%dT%H:%M:%SZ' + values: + + - attrs[time_stamp_format] + - '%Y-%m-%dT%H:%M:%SZ' num type: 'string' @@ -3884,9 +3964,10 @@ Project settings Unique identifier of the file name. - fatal: False - - default values: 'tracking_id' + values: + + - attrs[uuid_name] + - 'tracking_id' num type: 'string' @@ -3894,11 +3975,13 @@ Project settings Unique identifier of the file format. - fatal: False - - default values: 'hdl:{}/%uuid%'.format(common[HDL]) + values: + + - attrs[uuid_format] + - attrs[uuid_format] + - function from self named format('hdl'= common[HDL]) - skip values: + forbidden values: - 'None' - '' @@ -3910,21 +3993,23 @@ Project settings Convention used for the file. - fatal: False - - default values: common[convention_str] + values: + + - attrs[convention_str] + - common[convention_str] num type: 'string' synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. + Frequency at which the synchronisation between buffer and filesystem is done. - fatal: False - - default values: internal[synchronisation_frequency] + values: + + - attrs[synchronisation_frequency] + - internal[synchronisation_frequency] - skip values: + forbidden values: - 'None' - '' @@ -3938,117 +4023,158 @@ Project settings Activity id associated with the simulation. - fatal: False + fatal: True - default values: common[activity_id] + values: + + - attrs[activity_id] + - common[activity_id] num type: 'string' - contact + area_label - Contact email. + Identifier of unmasked area type - fatal: False + fatal: True + + values: + + - attrs[area_label] + - common_tag[variable][cmvar][area_label] + - common_tag[variable_esgvoc][area_label] - default values: common[contact] + num type: 'string' - skip values: + branch_time_in_child + + Branch time of the simulation in the child's one. + + values: + + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_time_in_child] + - - function from functions_file named compute_nb_days('year_ref'= simulation[child_time_ref_year], 'year_branch'= simulation[branch_year_in_child]) + - - simulation[branch_time_in_child] + - + + forbidden values: - - 'None' - '' + - 'None' - None - num type: 'string' - - data_specs_version + num type: 'double' - Version of the Data Request used. + branch_time_in_parent - fatal: False + Branch time of the simulation in the parent's one. - default values: common[data_specs_version] + values: + + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_time_in_parent] + - - function from functions_file named compute_nb_days('year_ref'= common[parent_time_ref_year], 'year_branch'= common[branch_year_in_parent], 'month_branch'= common[branch_month_in_parent]) + - - simulation[branch_time_in_parent] + - + + forbidden values: + + - '' + - 'None' + - None - num type: 'string' + num type: 'double' - dr2xml_version + branded_variable - Version of dr2xml used. + Full branded variable name - fatal: False + fatal: True - default values: common[dr2xml_version] + values: + + - attrs[branded_variable] + - common_tag[variable][label_non_ambiguous] num type: 'string' - expid_in_filename + branding_suffix - Experiment id to be used in file name. + Suffix in the branded variable name - output key: 'experiment_id' - - fatal: False + fatal: True - default values: common[expid_in_filename] + values: + + - attrs[branding_suffix] + - common_tag[variable][cmvar][branding_suffix] + - common_tag[variable_esgvoc][branding_suffix] num type: 'string' - description + Conventions - Description of the file. + CF version governing data (along with any other conventions applied) - fatal: False + fatal: True - default values: + values: - - common[description] - - internal[CV_experiment][description] + - attrs[Conventions] + - common[conventions_version][0][label] - skip values: - - - '' - - 'None' - - None + num type: 'string' - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: common[expid_in_filename] - + data_specs_version - num type: 'string' + version label for the set of requirements and CVs followed in creating a file - title_desc + fatal: True - Title of the file. + values: + + - attrs[data_specs_version] + - common[data_specs_version][0][__call__] - output key: 'title' + num type: 'string' - fatal: False + drs_specs - default values: - - - common[description] - - internal[CV_experiment][description] + version label for the set of requirements and CVs followed in creating a file - skip values: - - - '' - - 'None' - - None + fatal: True - conditions: - Condition: + values: - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: common[expid_in_filename] - + - attrs[drs_specs] + - common[drs_specs][0][drs_name] num type: 'string' @@ -4056,28 +4182,35 @@ Project settings Experiment associated with the simulation. - fatal: False - - default values: + values: - - common[experiment] - - internal[CV_experiment][experiment] - - skip values: + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[experiment] + - - common[experiment] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: common[expid_in_filename] - + num type: 'string' + + experiment_id + + TODO + + fatal: True num type: 'string' @@ -4085,11 +4218,12 @@ Project settings External variables associated with the file. - fatal: False - - default values: variable.cell_measuresbuild_external_variables() + values: + + - attrs[external_variables] + - function from functions_file named build_external_variables('cell_measures'= common_tag[variable][cell_measures]) - skip values: '' + forbidden values: '' num type: 'string' @@ -4097,9 +4231,12 @@ Project settings Forcing index associated with the simulation. - fatal: False + fatal: True - default values: common[forcing_index] + values: + + - attrs[forcing_index] + - common[forcing_index] num type: 'int' @@ -4107,49 +4244,13 @@ Project settings Frequency associated with the file. - fatal: False - - default values: variable.frequency - - num type: 'string' - - further_info_url - - Url to obtain further information associated with the simulation. - - fatal: False - - default values: 'https://furtherinfo.es-doc.org/{}.{}.{}.{}.{}.{}'.format(variable.mip_era, internal[institution_id], internal[source_id], common[expid_in_filename], common[sub_experiment_id], common[variant_label]) - - skip values: - - - '' - - 'None' - - None + fatal: True - conditions: - Condition: - - check value: laboratory[mip_era] - - check to do: 'eq' - - Condition: + values: - check value: simulation[mip_era] - - check to do: 'eq' - - - num type: 'string' - - grid - - Id of the grid used in the file. - - fatal: False - - default values: [] + - attrs[frequency] + - common_tag[variable][frequency] + - common_tag[variable_esgvoc][frequency] num type: 'string' @@ -4157,127 +4258,36 @@ Project settings Label of the grid used in the file. - fatal: False + fatal: True - default values: [] + values: + + - attrs[grid_label] num type: 'string' - nominal_resolution - - Nominal resolution of the grid used in the file. - - fatal: False - - default values: [] - - num type: 'string' + history - comment + History associated with the file. - Comment associated with the file. - - fatal: False - - default values: [] - - skip values: '' - - cases: - Case: - - conditions: - Condition: - - check value: variable.comments - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}{}'.format(common[comment_lab], common[comment_sim], variable.comments) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}'.format(common[comment_lab], common[comment_sim]) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_sim] - - Case: - - conditions: - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_lab] - + values: + + - attrs[history] + - common[history] num type: 'string' - history + horizontal_label - History associated with the file. + identifier of horizontal structure/sampling - fatal: False + fatal: True - default values: common[history] + values: + + - attrs[horizontal_label] + - common_tag[variable][cmvar][horizontal_label] + - common_tag[variable_esgvoc][horizontal_label] num type: 'string' @@ -4285,128 +4295,149 @@ Project settings Initialization index associated with the simulation. - fatal: False + fatal: True - default values: common[initialization_index] + values: + + - attrs[initialization_index] + - common[initialization_index] num type: 'int' - institution_id + institution - Institution id associated with the simulation. + Institution associated with the simulation. fatal: True - default values: internal[institution_id] + values: + + - attrs[institution] + - common[institution] num type: 'string' - institution + institution_id - Institution associated with the simulation. + Institution id associated with the simulation. fatal: True - default values: common[institution] + values: + + - attrs[institution_id] + - init[institution_id] num type: 'string' - license + license_id - License associated with the file. - - fatal: False - - default values: common[license]fill_license('institution_id'= internal[institution_id], 'info_url'= common[info_url]) + TODO num type: 'string' mip_era - MIP associated with the simulation. + label to indicate the CMIP phase when an experiment was designed - fatal: False + fatal: True - default values: + values: - - common[mip_era] - - variable.mip_era + - attrs[mip_era] + - common[mip_era][0] num type: 'string' - parent_experiment_id - - Parent experiment id associated with the simulation. + nominal_resolution - fatal: False + Nominal resolution of the grid used in the file. - default values: common[parent_experiment_id] + fatal: True - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - attrs[nominal_resolution] num type: 'string' - parent_mip_era - - MIP associated with the parent experiment. - - fatal: False + parent_activity_id - default values: - - - common[parent_mip_era] - - common[mip_era] - - variable.mip_era + Activity id associated with the parent experiment. - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_activity_id] + - - common[parent_activity_id] + - num type: 'string' - parent_activity_id + parent_experiment_id - Activity id associated with the parent experiment. + Parent experiment id associated with the simulation. + + values: + + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_experiment_id] + - - common[parent_experiment_id] + - - fatal: False + num type: 'string' + + parent_mip_era - default values: common[parent_activity_id] + MIP associated with the parent experiment. - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_mip_era] + - - common[parent_mip_era] + - - common[mip_era] + - - common_tag[variable][mip_era] + - num type: 'string' @@ -4414,26 +4445,26 @@ Project settings Model id of the parent experiment. - fatal: False - - default values: - - - common[parent_source_id] - - internal[source_id] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_source_id] + - - common[parent_source_id] + - - internal[source_id] + - num type: 'string' @@ -4441,26 +4472,26 @@ Project settings Time units of the parent experiment. - fatal: False - - default values: - - - common[parent_time_units] - - 'days since {}-01-01 00:00:00'.format(common[parent_time_ref_year]) - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_time_units] + - - common[parent_time_units] + - - 'days since {}-01-01 00:00:00'.format(common[parent_time_ref_year]) + - num type: 'string' @@ -4468,138 +4499,39 @@ Project settings Variant label of the parent experiment. - fatal: False - - default values: - - - common[parent_variant_label] - - common[variant_label] - - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - - num type: 'string' - - branch_method - - Branch method of the simulation. - - fatal: False - - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - - value: common[branch_method] - - Case: + values: - conditions: True - - value: 'no parent' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_variant_label] + - - common[parent_variant_label] + - - common[variant_label] + - num type: 'string' - branch_time_in_parent - - Branch time of the simulation in the parent's one. - - fatal: False - - default values: - - - compute_nb_days('year_ref'= common[parent_time_ref_year], 'year_branch'= common[branch_year_in_parent], 'month_branch'= common[branch_month_in_parent]) - - simulation[branch_time_in_parent] - - skip values: - - - '' - - 'None' - - None - - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - - num type: 'double' - - branch_time_in_child - - Branch time of the simulation in the child's one. - - fatal: False - - default values: - - - compute_nb_days('year_ref'= simulation[child_time_ref_year], 'year_branch'= simulation[branch_year_in_child]) - - simulation[branch_time_in_child] - - skip values: - - - '' - - 'None' - - None - - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - - num type: 'double' - physics_index Physics index associated with the simulation. - fatal: False + fatal: True - default values: common[physics_index] + values: + + - attrs[physics_index] + - common[physics_index] num type: 'int' @@ -4607,9 +4539,12 @@ Project settings Type of content of the file. - fatal: False + fatal: True - default values: 'model-output' + values: + + - attrs[product] + - 'model-output' num type: 'string' @@ -4617,9 +4552,12 @@ Project settings Realization index associated with the simulation. - fatal: False + fatal: True - default values: internal[realization_index] + values: + + - attrs[realization_index] + - internal[realization_index] num type: 'int' @@ -4627,33 +4565,24 @@ Project settings Realm associated with the file. - fatal: False - - default values: variable.modeling_realm() + fatal: True - corrections: + values: - - 'ocnBgChem': 'ocnBgchem' + - common_tag[variable][modeling_realm] formatted with function from self named join({}) num type: 'string' - references - - References associated with the simulation. + region - fatal: False - - default values: common[references] - - num type: 'string' - - source - - Model associated with the simulation. + the domain over which data are reported fatal: True - default values: common[source] + values: + + - attrs[region] + - common_tag[variable][cmvar][region] num type: 'string' @@ -4661,62 +4590,26 @@ Project settings Model id associated with the simulation. - fatal: False - - default values: internal[source_id] - - num type: 'string' - - source_type - - Model type associated with the simulation. - - fatal: False - - default values: internal[source_type] - - num type: 'string' - - sub_experiment_id - - Id of the sub experiment associated with the simulation. - - fatal: False - - default values: common[sub_experiment_id] - - num type: 'string' - - sub_experiment - - Name of the sub experiment associated with the simulation. - - fatal: False - - default values: common[sub_experiment] - - num type: 'string' - - table_id - - Id of the table associated with the file. - - fatal: False + fatal: True - default values: [] + values: + + - attrs[source_id] + - internal[source_id] num type: 'string' - title + temporal_label - Title of the file. + Identifier of type of temporal sampling applied - fatal: False + fatal: True - default values: + values: - - '{} model output prepared for {} and {} / {} simulation'.format(internal[source_id], internal[project], common[activity_id], simulation[expid_in_filename]) - - '{} model output prepared for {} / {} {}'.format(internal[source_id], internal[project], common[activity_id], internal[experiment_id]) + - attrs[temporal_label] + - common_tag[variable][cmvar][temporal_label] + - common_tag[variable_esgvoc][temporal_label] num type: 'string' @@ -4724,29 +4617,40 @@ Project settings Id of the variable contained in the file. - fatal: False + fatal: True - default values: variable.mipVarLabel + values: + + - attrs[variable_id] + - common_tag[variable][name] + - common_tag[variable_esgvoc][variable_id] num type: 'string' - variant_info + variant_label - Variant information associated with the simulation. + Variant label associated with the simulation. - fatal: False + fatal: True - default values: '. Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.'.format(common[variant_info]) + values: + + - common[variant_label] + - attrs[variant_label] num type: 'string' - variant_label + vertical_label - Variant label associated with the simulation. + Identifier of vertical sampling applied - fatal: False + fatal: True - default values: common[variant_label] + values: + + - attrs[vertical_label] + - common_tag[variable][cmvar][vertical_label] + - common_tag[variable_esgvoc][vertical_label] num type: 'string' @@ -4762,9 +4666,9 @@ Project settings Id of the grid. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4773,16 +4677,16 @@ Project settings XIOS grid_definition beacon interpolate_axis - XIOS interpolate_axis beacon + TODO Attributes: type Type of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4790,9 +4694,9 @@ Project settings Order of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4800,9 +4704,9 @@ Project settings Coordinate of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4815,9 +4719,9 @@ Project settings Type of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4825,9 +4729,9 @@ Project settings Order of the interpolation. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4835,9 +4739,9 @@ Project settings Should the interpolated domain be renormalized? - fatal: False - - default values: [] + values: + + - attrs[renormalize] num type: 'string' @@ -4845,9 +4749,9 @@ Project settings Mode used for the interpolation. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -4855,9 +4759,9 @@ Project settings Should interpolation weights be written? - fatal: False - - default values: [] + values: + + - attrs[write_weight] num type: 'string' @@ -4865,9 +4769,9 @@ Project settings Coordinate of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4880,9 +4784,9 @@ Project settings Id of the scalar. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4890,9 +4794,9 @@ Project settings Reference scalar. - fatal: False - - default values: [] + values: + + - attrs[scalar_ref] num type: 'string' @@ -4900,9 +4804,9 @@ Project settings Name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -4910,11 +4814,11 @@ Project settings Standard name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' @@ -4926,9 +4830,9 @@ Project settings Long name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -4936,11 +4840,11 @@ Project settings Label of the scalar. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -4952,21 +4856,9 @@ Project settings Precision of the scalar. - fatal: False - - default values: [] - - skip values: - - - '' - - 'None' - - None - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -4977,17 +4869,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' value Value of the scalar. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -4999,11 +4903,11 @@ Project settings Bounds of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -5015,11 +4919,11 @@ Project settings Bounds name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds_name] - skip values: + forbidden values: - '' - 'None' @@ -5031,11 +4935,11 @@ Project settings Axis type of the scalar. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -5047,11 +4951,11 @@ Project settings Orientation of the scalar. - fatal: False - - default values: [] + values: + + - attrs[positive] - skip values: + forbidden values: - '' - 'None' @@ -5063,11 +4967,11 @@ Project settings Unit of the scalar. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -5090,9 +4994,11 @@ Project settings Content of the variable - fatal: False + fatal: True - default values: [] + values: + + - attrs[name] num type: 'string' @@ -5100,9 +5006,11 @@ Project settings Encoding type of the variable's content. - fatal: False + fatal: True - default values: [] + values: + + - attrs[type] num type: 'string' @@ -5115,9 +5023,9 @@ Project settings Index of the zoomed axis. - fatal: False - - default values: [] + values: + + - attrs[index] num type: 'string' \ No newline at end of file diff --git a/sphinx/source/userguide/projects/CORDEX-CMIP6.rst b/sphinx/source/userguide/projects/CORDEX-CMIP6.rst index 51e9a94d..6a3fead6 100644 --- a/sphinx/source/userguide/projects/CORDEX-CMIP6.rst +++ b/sphinx/source/userguide/projects/CORDEX-CMIP6.rst @@ -1,6 +1,144 @@ Parameters available for project CORDEX-CMIP6 ============================================= +Init values +--------------- +.. glossary:: + :sorted: + + data_request_config + + Configuration file of the data request content to be used. + + values: + + - laboratory[data_request_config] + - '__package-root__/dr_interface/CMIP7_config' + + num type: 'string' + + data_request_content_version + + Version of the data request content to be used. + + values: + + - laboratory[data_request_content_version] + - 'latest_stable' + + num type: 'string' + + data_request_path + + Path where the data request API used is placed. + + values: + + - laboratory[data_request_path] + - None + + num type: 'string' + + data_request_used + + The Data Request infrastructure type which should be used. + + values: + + - laboratory[data_request_used] + - 'CMIP6' + + num type: 'string' + + institution_id + + Institution identifier. + + fatal: True + + values: + + - laboratory[institution_id] + + num type: 'string' + + laboratory_used + + File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. + + values: + + - laboratory[laboratory_used] + - None + + num type: 'string' + + project + + Project associated with the simulation. + + values: + + - laboratory[project] + - 'CMIP6' + + num type: 'string' + + project_settings + + Project settings definition file to be used. + + values: + + - laboratory[project_settings] + - init[project] + + num type: 'string' + + save_project_settings + + The path of the file where the complete project settings will be written, if needed. + + values: + + - laboratory[save_project_settings] + - None + + num type: 'string' + + vocabulary_config + + Configuration file of the vocabulary to be used. + + values: + + - laboratory[vocabulary_config] + - '__package-root__/vocabulary/vocabulary.json' + + num type: 'string' + + vocabulary_project + + The vocabulary project which should be used. + + values: + + - laboratory[vocabulary_project] formatted with function from self named lower({}) + - init[project] formatted with function from self named lower({}) + + num type: 'string' + + vocabulary_used + + The vocabulary infrastructure type which should be used. + + values: + + - laboratory[vocabulary_used] + - None + + num type: 'string' + Internal values --------------- .. glossary:: @@ -10,9 +148,7 @@ Internal values CFMIP has an elaborated requirement for defining subhr frequency; by default, dr2xml uses 1 time step. - fatal: False - - default values: + values: - laboratory[CFsubhr_frequency] - '1ts' @@ -23,9 +159,7 @@ Internal values DR01.00.21 does not include Gibraltar strait, which is requested by OMIP. Can include it, if model provides it as last value of array. - fatal: False - - default values: + values: - laboratory[add_Gibraltar] - False @@ -38,7 +172,9 @@ Internal values fatal: True - default values: [] + values: + + - [] num type: 'string' @@ -46,9 +182,7 @@ Internal values Some scenario experiment in DR 01.00.21 do not request tos on 1 degree grid, while other do. If you use grid_policy=adhoc and had not changed the mapping of function. grids.lab_adhoc_grid_policy to grids.CNRM_grid_policy, next setting can force any tos request to also produce tos on a 1 degree grid. - fatal: False - - default values: + values: - laboratory[adhoc_policy_do_add_1deg_grid_for_tos] - False @@ -59,9 +193,7 @@ Internal values Should we allow for duplicate vars: two vars with same frequency, shape and realm, which differ only by the table. In DR01.00.21, this actually applies to very few fields (ps-Aermon, tas-ImonAnt, areacellg-IfxAnt). - fatal: False - - default values: + values: - laboratory[allow_duplicates] - True @@ -74,7 +206,7 @@ Internal values fatal: True - default values: + values: - laboratory[allow_duplicates_in_same_table] - False @@ -85,9 +217,7 @@ Internal values DR has sn attributes for MIP variables. They can be real,CF-compliant, standard_names or pseudo_standard_names, i.e. not yet approved labels. Default is to use only CF ones. - fatal: False - - default values: + values: - laboratory[allow_pseudo_standard_names] - False @@ -98,9 +228,7 @@ Internal values When using select='no', Xios may enter an endless loop, which is solved if next setting is False. - fatal: False - - default values: + values: - laboratory[allow_tos_3hr_1deg] - True @@ -111,19 +239,17 @@ Internal values In some instances, the experiment start year is not explicit or is doubtful in DR. See file doc/some_experiments_starty_in_DR01.00.21. You should then specify it, using next setting in order that requestItems analysis work in all cases. In some other cases, DR requestItems which apply to the experiment form its start does not cover its whole duration and have a wrong duration (computed based on a wrong start year); They necessitate to fix the start year. - fatal: False - - default values: simulation[branch_year_in_child] + values: + + - simulation[branch_year_in_child] num type: 'string' branching - Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. + Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. - fatal: False - - default values: + values: - laboratory[branching][internal[source_id]] - {} @@ -134,9 +260,7 @@ Internal values If the CMIP6 Controlled Vocabulary doesn't allow all the components you activate, you can set next toggle to True - fatal: False - - default values: + values: - laboratory[bypass_CV_components] - False @@ -147,9 +271,7 @@ Internal values Estimate of number of bytes per floating value, given the chosen :term:`compression_level`. - fatal: False - - default values: + values: - laboratory[bytes_per_float] - 2 @@ -162,7 +284,9 @@ Internal values fatal: True - default values: simulation[configuration] + values: + + - simulation[configuration] num type: 'string' @@ -172,98 +296,68 @@ Internal values fatal: True - default values: dict[context] - - num type: 'string' - - data_request_config - - Configuration file of the data request content to be used - - fatal: False - - default values: - - - laboratory[data_request_config] - - '/home/rigoudyg/dev/DR2XML/dr2xml_source/dr2xml/dr_interface/CMIP7_config' - - num type: 'string' - - data_request_content_version - - Version of the data request content to be used - - fatal: False - - default values: + values: - - laboratory[data_request_content_version] - - 'latest_stable' + - dict[context] num type: 'string' - data_request_path - - Path where the data request API used is placed. + debug_parsing - fatal: False + In order to identify which xml files generates a problem, you can use this flag. - default values: + values: - - laboratory[data_request_path] - - None + - laboratory[debug_parsing] + - False num type: 'string' - data_request_used - - The Data Request infrastructure type which should be used. + dr2xml_manages_enddate - fatal: False + A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. - default values: + values: - - laboratory[data_request_used] - - 'CMIP6' + - laboratory[dr2xml_manages_enddate] + - True num type: 'string' - debug_parsing - - In order to identify which xml files generates a problem, you can use this flag. + end_year - fatal: False + If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value - default values: + values: - - laboratory[debug_parsing] + - simulation[end_year] - False num type: 'string' - dr2xml_manages_enddate + excluded_expgroups_lset - A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. - - fatal: True + List of the experiments groups that will be excluded from outputs from laboratory settings. - default values: + values: - - laboratory[dr2xml_manages_enddate] - - True + - laboratory[excluded_expgroups] + - [] - num type: 'string' + target type: 'list' - end_year + num type: 'string' - If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value + excluded_expgroups_sset - fatal: False + List of the experiments groups that will be excluded from outputs from simulation settings. - default values: + values: - - simulation[end_year] - - False + - simulation[excluded_expgroups] + - [] + + target type: 'list' num type: 'string' @@ -271,169 +365,169 @@ Internal values List of the opportunities that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_opportunities_sset List of the opportunities that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_pairs_lset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_pairs_sset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_request_links List of links un data request that should not been followed (those request are not taken into account). - fatal: False - - default values: + values: - laboratory[excluded_request_links] - [] + target type: 'list' + num type: 'string' excluded_spshapes_lset The list of shapes that should be excluded (all variables in those shapes will be excluded from outputs). - fatal: False - - default values: + values: - laboratory[excluded_spshapes] - [] + target type: 'list' + num type: 'string' excluded_tables_lset List of the tables that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_tables_sset List of the tables that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_vargroups_lset List of the variables groups that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vargroups_sset List of the variables groups that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vars_lset List of CMOR variables to exclude from the result based on previous Data Request extraction from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vars] - [] + target type: 'list' + num type: 'string' excluded_vars_per_config A dictionary which keys are configurations and values the list of variables that must be excluded for each configuration. - fatal: False - - default values: + values: - laboratory[excluded_vars_per_config][internal[configuration]] - [] + target type: 'list' + num type: 'string' excluded_vars_sset List of CMOR variables to exclude from the result based on previous Data Request extraction from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vars] - [] + target type: 'list' + num type: 'string' experiment_for_requests @@ -442,7 +536,7 @@ Internal values fatal: True - default values: + values: - simulation[experiment_for_requests] - internal[experiment_id] @@ -451,11 +545,13 @@ Internal values experiment_id - Root experiment identifier. + Root experiment identifier fatal: True - default values: simulation[experiment_id] + values: + + - simulation[experiment_id] num type: 'string' @@ -463,9 +559,7 @@ Internal values If you want to produce the same variables set for all members, set this parameter to False. - fatal: False - - default values: + values: - simulation[filter_on_realization] - laboratory[filter_on_realization] @@ -477,9 +571,7 @@ Internal values You may provide some variables already horizontally remapped to some grid (i.e. Xios domain) in external files. The varname in file must match the referenced id in pingfile. Tested only for fixed fields. A dictionary with variable id as key and a dictionary as value: the key must be the grid id, the value a dictionary with the file for each resolution. - fatal: False - - default values: + values: - laboratory[fx_from_file] - [] @@ -492,7 +584,9 @@ Internal values fatal: True - default values: laboratory[grid_choice][internal[source_id]] + values: + + - laboratory[grid_choice][internal[source_id]] num type: 'string' @@ -502,7 +596,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_policy] - False @@ -515,7 +609,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_prefix] - internal[ping_variables_prefix] @@ -524,11 +618,13 @@ Internal values grids - Grids : per model resolution and per context :- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)- Xios id for the production grid (if it is not the native grid),- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)- resolution of the production grid (using CMIP6 conventions),- grid description + Grids : per model resolution and per context :\n- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)\n- Xios id for the production grid (if it is not the native grid)\n- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)\n- resolution of the production grid (using CMIP6 conventions)\n- grid description fatal: True - default values: laboratory[grids] + values: + + - laboratory[grids] num type: 'string' @@ -538,7 +634,7 @@ Internal values fatal: True - default values: + values: - laboratory[grids_dev] - {} @@ -549,9 +645,7 @@ Internal values Variables to be grouped in the same output file (provided additional conditions are filled). - fatal: False - - default values: + values: - simulation[grouped_vars_per_file] - laboratory[grouped_vars_per_file] @@ -559,143 +653,146 @@ Internal values num type: 'string' + included_expgroups + + List of experiments groups that will be processed (all others will not). + + values: + + - simulation[included_expgroups] + - internal[included_expgroups_lset] + + target type: 'list' + + num type: 'string' + + included_expgroups_lset + + List of experiments groups that will be processed (all others will not) from laboratory settings. + + values: + + - laboratory[included_expgroups] + - [] + + target type: 'list' + + num type: 'string' + included_opportunities List of opportunities that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_opportunities] - internal[included_opportunities_lset] + target type: 'list' + num type: 'string' included_opportunities_lset List of opportunities that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_opportunities] - [] + target type: 'list' + num type: 'string' included_request_links List of the request links that will be processed (all others will not). - fatal: False - - default values: + values: - laboratory[included_request_links] - [] + target type: 'list' + num type: 'string' included_tables List of tables that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_tables] - internal[included_tables_lset] + target type: 'list' + num type: 'string' included_tables_lset List of tables that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_tables] - [] + target type: 'list' + num type: 'string' included_vargroups List of variables groups that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_vargroups] - internal[included_vargroups_lset] + target type: 'list' + num type: 'string' included_vargroups_lset List of variables groups that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vargroups] - [] + target type: 'list' + num type: 'string' included_vars Variables to be considered from the Data Request (all others will not) - fatal: False - - default values: + values: - simulation[included_vars] - internal[included_vars_lset] + target type: 'list' + num type: 'string' included_vars_lset Variables to be considered from the Data Request (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vars] - [] - num type: 'string' - - institution_id - - Institution identifier. - - fatal: True - - default values: laboratory[institution_id] - - num type: 'string' - - laboratory_used - - File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. - - fatal: False - - default values: - - - laboratory[laboratory_used] - - None + target type: 'list' num type: 'string' @@ -703,9 +800,7 @@ Internal values Full path to the file which contains the list of home variables to be taken into account, in addition to the Data Request. - fatal: False - - default values: + values: - simulation[listof_home_vars] - laboratory[listof_home_vars] @@ -717,9 +812,7 @@ Internal values The maximum size of generated files in number of floating values. - fatal: False - - default values: + values: - laboratory[max_file_size_in_floats] - 500000000.0 @@ -732,7 +825,7 @@ Internal values fatal: True - default values: + values: - simulation[max_priority] - internal[max_priority_lset] @@ -745,7 +838,9 @@ Internal values fatal: True - default values: laboratory[max_priority] + values: + + - laboratory[max_priority] num type: 'string' @@ -753,9 +848,7 @@ Internal values The maximum number of years that should be putted in a single file. - fatal: True - - default values: + values: - simulation[max_split_freq] - laboratory[max_split_freq] @@ -769,7 +862,9 @@ Internal values fatal: True - default values: laboratory[mips] + values: + + - laboratory[mips] num type: 'string' @@ -779,7 +874,7 @@ Internal values fatal: True - default values: + values: - laboratory[nemo_sources_management_policy_master_of_the_world] - False @@ -788,11 +883,9 @@ Internal values non_standard_attributes - You may add a series of NetCDF attributes in all files for this simulation - - fatal: False + You may add a series of NetCDF attributes in all files for this simulation. - default values: + values: - laboratory[non_standard_attributes] - {} @@ -803,9 +896,7 @@ Internal values If your model has some axis which does not have all its attributes as in DR, and you want dr2xml to fix that it, give here the correspondence from model axis id to DR dim/grid id. For label dimensions you should provide the list of labels, ordered as in your model, as second element of a pair. Label-type axes will be processed even if not quoted. Scalar dimensions are not concerned by this feature. A dictionary with (axis_id, axis_correct_id) or (axis_id, tuple of labels) as key, values. - fatal: False - - default values: + values: - laboratory[non_standard_axes] - {} @@ -816,9 +907,7 @@ Internal values Name of the orography field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[orography_field_name] - 'orog' @@ -827,11 +916,13 @@ Internal values orphan_variables - A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context) + A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context). fatal: True - default values: laboratory[orphan_variables] + values: + + - laboratory[orphan_variables] num type: 'string' @@ -839,9 +930,7 @@ Internal values Full path of the directory which contains extra tables. - fatal: False - - default values: + values: - simulation[path_extra_tables] - laboratory[path_extra_tables] @@ -853,9 +942,7 @@ Internal values The path of the directory which, at run time, contains the root XML file (iodef.xml). - fatal: False - - default values: + values: - laboratory[path_to_parse] - './' @@ -866,9 +953,7 @@ Internal values A dictionary containing, for each perso or dev variables with a XY-perso shape, and for each vertical coordinate associated, the main attributes of the dimension. - fatal: False - - default values: + values: - simulation[perso_sdims_description] - {} @@ -881,7 +966,9 @@ Internal values fatal: True - default values: laboratory[ping_variables_prefix] + values: + + - laboratory[ping_variables_prefix] num type: 'string' @@ -889,61 +976,31 @@ Internal values Name of the orography field name to be used to compute height over orog fields prefixed with :term:`ping_variable_prefix`. - fatal: False - - default values: '{}{}'.format(internal[ping_variables_prefix], internal[orography_field_name]) - - num type: 'string' - - print_stats_per_var_label - - For an extended printout of selected CMOR variables, grouped by variable label. - - fatal: False - - default values: + values: - - laboratory[print_stats_per_var_label] - - False + - function from self named format('prefix'= internal[ping_variables_prefix], 'variable'= internal[orography_field_name]) num type: 'string' - print_variables - - If the value is a list, only the file/field variables listed here will be put in output files. If boolean, tell if the file/field variables should be put in output files. - - fatal: False - - default values: - - - laboratory[print_variables] - - True - - num type: 'string' - - project - - Project associated with the simulation. + print_stats_per_var_label - fatal: False + For an extended printout of selected CMOR variables, grouped by variable label. - default values: + values: - - laboratory[project] - - 'CMIP6' + - laboratory[print_stats_per_var_label] + - False num type: 'string' - project_settings - - Project settings definition file to be used. + print_variables - fatal: False + If the value is a list, only the file/field variables listed here will be put in output files. If boolean, tell if the file/field variables should be put in output files. - default values: + values: - - laboratory[project_settings] - - internal[project] + - laboratory[print_variables] + - True num type: 'string' @@ -951,9 +1008,7 @@ Internal values Realization number. - fatal: False - - default values: + values: - simulation[realization_index] - '1' @@ -962,11 +1017,13 @@ Internal values realms_per_context - A dictionary which keys are context names and values the lists of realms associated with each context + A dictionary which keys are context names and values the lists of realms associated with each context. fatal: True - default values: laboratory[realms_per_context][internal[context]] + values: + + - laboratory[realms_per_context][internal[context]] num type: 'string' @@ -976,7 +1033,9 @@ Internal values fatal: True - default values: [] + values: + + - [] num type: 'string' @@ -986,20 +1045,10 @@ Internal values fatal: True - default values: laboratory[sampling_timestep] - - num type: 'string' - - save_project_settings - - The path of the file where the complete project settings will be written, if needed. - - fatal: False - - default values: + values: - - laboratory[save_project_settings] - - None + - laboratory[sampling_timestep] + - 2 num type: 'string' @@ -1007,9 +1056,9 @@ Internal values List of the sectors to be considered. - fatal: False - - default values: laboratory[sectors] + values: + + - laboratory[sectors] num type: 'string' @@ -1019,7 +1068,9 @@ Internal values fatal: True - default values: dict[select] + values: + + - dict[select] authorized values: @@ -1029,43 +1080,65 @@ Internal values num type: 'string' + select_excluded_expgroups + + Excluded experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_expgroups_lset] + - + + num type: 'string' + select_excluded_opportunities Excluded opportunities for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_opportunities_lset]', 'internal[excluded_opportunities_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_opportunities_lset] + - num type: 'string' @@ -1075,37 +1148,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_pairs_lset]', 'internal[excluded_pairs_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_pairs_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_pairs_lset] + - num type: 'string' @@ -1115,37 +1179,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[excluded_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[excluded_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1155,37 +1210,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_tables_lset]', 'internal[excluded_tables_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_tables_lset] + - num type: 'string' @@ -1195,37 +1241,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vargroups_lset]', 'internal[excluded_vargroups_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vargroups_lset] + - num type: 'string' @@ -1235,37 +1272,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vars_lset]', 'internal[excluded_vars_sset]', 'internal[excluded_vars_per_config]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vars_lset] + - num type: 'string' @@ -1275,37 +1303,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[grid_choice] - - Case: + values: - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: 'LR' - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[grid_choice] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: 'LR' + - + + num type: 'string' + + select_included_expgroups + + Included experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_expgroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_expgroups_lset] + - num type: 'string' @@ -1315,37 +1365,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_opportunities] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_opportunities] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_opportunities_lset] + - num type: 'string' @@ -1355,37 +1396,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1395,77 +1427,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_tables] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_tables] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_tables_lset] + - num type: 'string' select_included_vargroups - Included variables groups for variable selection. + Included variable groups for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vargroups] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vargroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vargroups_lset] + - num type: 'string' @@ -1475,37 +1489,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vars] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vars] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vars_lset] + - num type: 'string' @@ -1515,37 +1520,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[max_priority] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[max_priority_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[max_priority] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[max_priority_lset] + - num type: 'string' @@ -1555,37 +1551,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[mips][internal[select_grid_choice]]sort_mips() - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[mips]sort_mips() - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: function from functions_file named sort_mips('mips'= internal[mips][internal[select_grid_choice]]) + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: function from functions_file named sort_mips('mips'= internal[mips]) + - num type: 'string' @@ -1595,40 +1582,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'on_expt_and_year' - - 'on_expt' - - - value: True - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'no' - - - value: False - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt_and_year' + - - 'on_expt' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'no' + - + - values: False + - num type: 'string' @@ -1638,40 +1616,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'on_expt_and_year' - - - value: internal[year] - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'no' - - 'on_expt' - - - value: None - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'on_expt_and_year' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt' + - - 'no' + - + - values: False + - num type: 'string' @@ -1681,37 +1650,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[sizes] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[sizes] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1721,47 +1681,38 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[tierMax] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[tierMax_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[tierMax] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[tierMax_lset] + - num type: 'string' simple_domain_grid_regexp - If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: 1) it must be a grid which has only a domain 2) the domain name must be extractable from the grid_id using a regexp and a group number Example: using a pattern that returns full id except for a '_grid' suffix + If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: \n1) it must be a grid which has only a domain \n2) the domain name must be extractable from the grid_id using a regexp and a group number \nExample: using a pattern that returns full id except for a '_grid' suffix - fatal: False - - default values: laboratory[simple_domain_grid_regexp] + values: + + - laboratory[simple_domain_grid_regexp] num type: 'string' @@ -1771,7 +1722,9 @@ Internal values fatal: True - default values: laboratory[sizes][internal[grid_choice]]format_sizes() + values: + + - function from functions_file named format_sizes('sizes'= laboratory[sizes][internal[grid_choice]]) num type: 'string' @@ -1781,7 +1734,7 @@ Internal values fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][0] - simulation[source_id] @@ -1790,11 +1743,11 @@ Internal values source_type - If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote "AGCM AER". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit + If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote \"AGCM AER\". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][1] - simulation[source_type] @@ -1806,9 +1759,7 @@ Internal values This variable is used when some variables are computed with a period which is not the basic timestep. A dictionary which keys are non standard timestep and values the list of variables which are computed at this timestep. - fatal: False - - default values: + values: - laboratory[special_timestep_vars] - [] @@ -1819,9 +1770,7 @@ Internal values Path to the split frequencies file to be used. - fatal: False - - default values: + values: - simulation[split_frequencies] - laboratory[split_frequencies] @@ -1831,11 +1780,13 @@ Internal values synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. - - fatal: False + Frequency at which the synchronisation between buffer and filesystem is done. - default values: [] + values: + + - simulation[synchronisation_frequency] + - laboratory[synchronisation_frequency] + - None num type: 'string' @@ -1845,7 +1796,7 @@ Internal values fatal: True - default values: + values: - simulation[tierMax] - internal[tierMax_lset] @@ -1858,7 +1809,9 @@ Internal values fatal: True - default values: laboratory[tierMax] + values: + + - laboratory[tierMax] num type: 'string' @@ -1868,7 +1821,7 @@ Internal values fatal: True - default values: + values: - laboratory[too_long_periods] - [] @@ -1879,9 +1832,7 @@ Internal values Should xml output files use the `@` symbol for definitions for instant variables? - fatal: False - - default values: + values: - laboratory[useAtForInstant] - False @@ -1894,7 +1845,7 @@ Internal values fatal: True - default values: + values: - laboratory[use_cmorvar_label_in_filename] - False @@ -1905,9 +1856,7 @@ Internal values Say if you want to use XIOS union/zoom axis to optimize vertical interpolation requested by the DR. - fatal: False - - default values: + values: - laboratory[use_union_zoom] - False @@ -1918,9 +1867,7 @@ Internal values Operation done for vertical interpolation. - fatal: False - - default values: + values: - laboratory[vertical_interpolation_operation] - 'instant' @@ -1931,9 +1878,9 @@ Internal values Time frequency of vertical interpolation. - fatal: False - - default values: laboratory[vertical_interpolation_sample_freq] + values: + + - laboratory[vertical_interpolation_sample_freq] num type: 'string' @@ -1941,9 +1888,7 @@ Internal values Version of XIOS used. - fatal: False - - default values: + values: - laboratory[xios_version] - 2 @@ -1956,7 +1901,9 @@ Internal values fatal: True - default values: dict[year] + values: + + - dict[year] num type: 'string' @@ -1964,9 +1911,7 @@ Internal values Name of the geopotential height field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[zg_field_name] - 'zg' @@ -1982,9 +1927,7 @@ Common values HDL associated with the project. - fatal: False - - default values: + values: - simulation[HDL] - laboratory[HDL] @@ -1994,31 +1937,55 @@ Common values Lambert_conformal_latitude_of_projection_origin - TODO + Latitude of central meridian of the Lambert conformal projection. + + fatal: True - fatal: False + values: + + - simulation[Lambert_conformal_latitude_of_projection_origin] - default values: simulation[Lambert_conformal_latitude_of_projection_origin] + forbidden values: + + - '' + - 'None' + - None num type: 'string' Lambert_conformal_longitude_of_central_meridian - TODO + Longitude of central meridian of the Lambert conformal projection. + + fatal: True - fatal: False + values: + + - simulation[Lambert_conformal_longitude_of_central_meridian] - default values: simulation[Lambert_conformal_longitude_of_central_meridian] + forbidden values: + + - '' + - 'None' + - None num type: 'string' Lambert_conformal_standard_parallel - TODO + Standard parallel of the Lambert conformal projection. + + fatal: True - fatal: False + values: + + - simulation[Lambert_conformal_standard_parallel] - default values: simulation[Lambert_conformal_standard_parallel] + forbidden values: + + - '' + - 'None' + - None num type: 'string' @@ -2026,9 +1993,7 @@ Common values MIP(s) name(s). - fatal: False - - default values: + values: - simulation[activity_id] - laboratory[activity_id] @@ -2039,9 +2004,7 @@ Common values Branching procedure. - fatal: False - - default values: + values: - simulation[branch_method] - 'standard' @@ -2052,9 +2015,7 @@ Common values Branch month in parent simulation with respect to its time axis. - fatal: False - - default values: + values: - simulation[branch_month_in_parent] - '1' @@ -2065,77 +2026,54 @@ Common values Branch year in parent simulation with respect to its time axis. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: simulation[branch_year_in_parent] + - + - check to perform: 'eq' + - + - reference values: internal[branching][internal[experiment_id]][1] + - + - values: simulation[branch_year_in_parent] + - + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'neq' + - + - reference values: internal[branching] + - + - values: simulation[branch_year_in_parent] + - + + forbidden values: - None - 'None' - '' - 'N/A' - cases: - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: internal[branching] - - Condition: - - check value: simulation[branch_year_in_parent] - - check to do: 'eq' - - reference values: internal[branching][internal[experiment_id]][1] - - - value: simulation[branch_year_in_parent] - - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'neq' - - reference values: internal[branching] - - - value: simulation[branch_year_in_parent] - - num type: 'string' - comment_lab + comment_lset A character string containing additional information about the models from laboratory settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - laboratory[comment] - '' num type: 'string' - comment_sim + comment_sset A character string containing additional information about the models from simulation settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - simulation[comment] - '' @@ -2144,11 +2082,9 @@ Common values compression_level - The compression level to be applied to NetCDF output files. + The compression level to be applied to NetCDF output files." - fatal: False - - default values: + values: - laboratory[compression_level] - '0' @@ -2159,9 +2095,7 @@ Common values Email address of the data producer. - fatal: False - - default values: + values: - simulation[contact] - laboratory[contact] @@ -2173,20 +2107,19 @@ Common values Version of the conventions used. - fatal: False - - default values: dr2xml.config.conventions + values: + + - config.conventions num type: 'string' conventions_version - TODO - - fatal: False + Version of the conventions used. - default values: + values: + - config.CMIP6_conventions_version - 'CF-1.11' - laboratory[conventions_version] @@ -2198,7 +2131,9 @@ Common values fatal: True - default values: data_request.get_version() + values: + + - function from data_request named get_version({}) num type: 'string' @@ -2206,9 +2141,9 @@ Common values Date range format to be used in file definition names. - fatal: False - - default values: '%start_date%-%end_date%' + values: + + - '%start_date%-%end_date%' num type: 'string' @@ -2216,92 +2151,80 @@ Common values Description of the simulation. - fatal: False - - default values: + values: - - simulation[description] - laboratory[description] + - simulation[description] num type: 'string' domain - TODO - - fatal: False + Dictionary which contains, for each context, the associated domain. - default values: simulation[domain][internal[context]] + values: + + - simulation[domain][internal[context]] num type: 'string' domain_id - TODO - - fatal: False - - default values: simulation[domain_id][internal[context]] - - num type: 'string' - - dr2xml_version - - Version of dr2xml used. - - fatal: False + Id of the domain. - default values: dr2xml.config.version - - num type: 'string' + values: + + - simulation[domain_id][internal[context]] - driving_experiment + num type: 'string' - TODO + dr2xml_version - fatal: False + Version of dr2xml used. - default values: simulation[driving_experiment] + values: + + - config.version num type: 'string' - driving_experiment_id - - TODO + driving_experiment - fatal: False + Name of the driving experiment. - default values: simulation[driving_experiment_id] + values: + + - simulation[driving_experiment] num type: 'string' driving_institution_id - TODO - - fatal: False + Id of the institution of the driving model. - default values: simulation[driving_institution_id] + values: + + - simulation[driving_institution_id] num type: 'string' driving_source_id - TODO - - fatal: False + Id of the driving model. - default values: simulation[driving_source_id] + values: + + - simulation[driving_source_id] num type: 'string' driving_variant_label - TODO - - fatal: False + Variant label of the driving simulation. - default values: simulation[driving_variant_label] + values: + + - simulation[driving_variant_label] num type: 'string' @@ -2309,9 +2232,9 @@ Common values Name of the experiment. - fatal: False - - default values: simulation[experiment] + values: + + - simulation[experiment] num type: 'string' @@ -2319,9 +2242,7 @@ Common values Experiment label to use in file names and attribute. - fatal: False - - default values: + values: - simulation[expid_in_filename] - internal[experiment_id] @@ -2334,9 +2255,7 @@ Common values Index for variant of forcing. - fatal: False - - default values: + values: - simulation[forcing_index] - '1' @@ -2347,9 +2266,7 @@ Common values In case of replacement of previously produced data, description of any changes in the production chain. - fatal: False - - default values: + values: - simulation[history] - 'none' @@ -2360,9 +2277,9 @@ Common values Location of documentation. - fatal: False - - default values: laboratory[info_url] + values: + + - laboratory[info_url] num type: 'string' @@ -2370,9 +2287,7 @@ Common values Index for variant of initialization method. - fatal: False - - default values: + values: - simulation[initialization_index] - '1' @@ -2383,9 +2298,9 @@ Common values Full name of the institution of the data producer. - fatal: False - - default values: laboratory[institution] + values: + + - laboratory[institution] num type: 'string' @@ -2393,9 +2308,9 @@ Common values Name of the file which will contain the list of the patterns of perso and dev output file definition. - fatal: False - - default values: 'dr2xml_list_perso_and_dev_file_names' + values: + + - 'dr2xml_list_perso_and_dev_file_names' num type: 'string' @@ -2403,12 +2318,34 @@ Common values MIP associated with the simulation. - fatal: False + values: + + - common[mip_era_sset] + - common[mip_era_lset] + + forbidden values: None - default values: + num type: 'string' + + mip_era_lset + + MIP associated with the simulation from laboratory settings. + + values: - - simulation[mip_era] - laboratory[mip_era] + - None + + num type: 'string' + + mip_era_sset + + MIP associated with the simulation from simulation settings. + + values: + + - simulation[mip_era] + - None num type: 'string' @@ -2416,9 +2353,7 @@ Common values We can control the max output level set for all output files. - fatal: False - - default values: + values: - laboratory[output_level] - '10' @@ -2429,9 +2364,7 @@ Common values Description of sub-experiment. - fatal: False - - default values: + values: - simulation[parent_activity_id] - simulation[activity_id] @@ -2444,9 +2377,7 @@ Common values Parent experiment identifier. - fatal: False - - default values: + values: - simulation[parent_experiment_id] - laboratory[parent_experiment_id] @@ -2457,9 +2388,9 @@ Common values Parent’s associated MIP cycle. - fatal: False - - default values: simulation[parent_mip_era] + values: + + - simulation[parent_mip_era] num type: 'string' @@ -2467,9 +2398,9 @@ Common values Parent model identifier. - fatal: False - - default values: simulation[parent_source_id] + values: + + - simulation[parent_source_id] num type: 'string' @@ -2477,9 +2408,7 @@ Common values Reference year in parent simulation. - fatal: False - - default values: + values: - simulation[parent_time_ref_year] - '1850' @@ -2490,9 +2419,9 @@ Common values Time units used in parent. - fatal: False - - default values: simulation[parent_time_units] + values: + + - simulation[parent_time_units] num type: 'string' @@ -2500,9 +2429,9 @@ Common values Parent variant label. - fatal: False - - default values: simulation[parent_variant_label] + values: + + - simulation[parent_variant_label] num type: 'string' @@ -2510,9 +2439,7 @@ Common values Index for model physics variant. - fatal: False - - default values: + values: - simulation[physics_index] - '1' @@ -2525,7 +2452,9 @@ Common values fatal: True - default values: dict[prefix] + values: + + - dict[prefix] num type: 'string' @@ -2533,9 +2462,9 @@ Common values References associated with the simulation. - fatal: False - - default values: laboratory[references] + values: + + - laboratory[references] num type: 'string' @@ -2543,9 +2472,9 @@ Common values Name of the model. - fatal: False - - default values: laboratory[source] + values: + + - laboratory[source] num type: 'string' @@ -2553,9 +2482,7 @@ Common values Sub-experiment name. - fatal: False - - default values: + values: - simulation[sub_experiment] - 'none' @@ -2566,9 +2493,7 @@ Common values Sub-experiment identifier. - fatal: False - - default values: + values: - simulation[sub_experiment_id] - 'none' @@ -2579,21 +2504,19 @@ Common values It is recommended that some description be included to help identify major differences among variants, but care should be taken to record correct information. dr2xml will add in all cases: 'Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.' - fatal: False - - default values: simulation[variant_info] + values: + + - simulation[variant_info] - skip values: '' + forbidden values: '' num type: 'string' version_realization - TODO - - fatal: False + Realization of the current simulation. - default values: + values: - simulation[version_realization] - 'v1-r1' @@ -2614,19 +2537,19 @@ Project settings Id of the axis. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' positive - How is the axis oriented? + Hox is the axis oriented? - fatal: False - - default values: [] + values: + + - attrs[positive] num type: 'string' @@ -2634,9 +2557,9 @@ Project settings Number of values of this axis. - fatal: False - - default values: [] + values: + + - attrs[n_glo] num type: 'string' @@ -2644,11 +2567,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2660,9 +2583,9 @@ Project settings Reference axis. - fatal: False - - default values: [] + values: + + - attrs[axis_ref] num type: 'string' @@ -2670,9 +2593,9 @@ Project settings Name of this axis. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -2680,27 +2603,25 @@ Project settings Standard name of the axis. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' - None - authorized types: - num type: 'string' long_name Long name of this axis. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -2708,21 +2629,9 @@ Project settings Precision of the axis. - fatal: False - - default values: [] - - skip values: - - - '' - - 'None' - - None - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -2733,17 +2642,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' unit Unit of the axis. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -2755,11 +2676,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2771,11 +2692,11 @@ Project settings Bounds of the axis. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -2787,11 +2708,11 @@ Project settings Name dimension of the axis. - fatal: False - - default values: [] + values: + + - attrs[dim_name] - skip values: + forbidden values: - '' - 'None' @@ -2803,11 +2724,11 @@ Project settings Label of the axis. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -2819,11 +2740,11 @@ Project settings Axis type. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -2843,14 +2764,9 @@ Project settings Precision associated with the axis group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -2862,6 +2778,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' context @@ -2873,29 +2795,29 @@ Project settings Version of the Data Request used - fatal: False - - default values: '{} Data Request version {}'.format(internal[data_request_used], common[data_specs_version]) + values: + + - function from self named format('data_request_used'= init[data_request_used], 'data_specs_version'= common[data_specs_version]) num type: 'string' CV_version - TODO - - fatal: False + Controled vocabulary version used. - default values: 'CMIP6-CV version ??' + values: + + - 'CMIP6-CV version ??' num type: 'string' conventions_version - TODO - - fatal: False + Conventions version used. - default values: 'CMIP6_conventions_version {}'.format(common[conventions_version]) + values: + + - 'CMIP6_conventions_version {}'.format(common[conventions_version]) num type: 'string' @@ -2903,9 +2825,9 @@ Project settings Version of dr2xml used - fatal: False - - default values: 'dr2xml version {}'.format(common[dr2xml_version]) + values: + + - function from self named format('dr2xml_version'= common[dr2xml_version]) num type: 'string' @@ -2913,9 +2835,9 @@ Project settings Laboratory settings used - fatal: False - - default values: 'Lab_and_model settings***newline***{}'.format(laboratory) + values: + + - function from self named format('laboratory'= laboratory) num type: 'string' @@ -2923,9 +2845,9 @@ Project settings Simulation_settings used - fatal: False - - default values: 'Simulation settings***newline***{}'.format(simulation) + values: + + - function from self named format('laboratory'= simulation) num type: 'string' @@ -2933,9 +2855,9 @@ Project settings Year used for the dr2xml's launch - fatal: False - - default values: 'Year processed {}'.format(internal[year]) + values: + + - function from self named format('year'= internal[year]) num type: 'string' @@ -2945,9 +2867,9 @@ Project settings Id of the context - fatal: False - - default values: internal[context] + values: + + - internal[context] num type: 'string' @@ -2960,29 +2882,29 @@ Project settings Id of the domain. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' ni_glo - Number of points on i dimension. + Number of point in i dimension. - fatal: False - - default values: [] + values: + + - attrs[ni_glo] num type: 'string' nj_glo - Number of points on j dimension. + Number of points in j dimension. - fatal: False - - default values: [] + values: + + - attrs[nj_glo] num type: 'string' @@ -2990,9 +2912,9 @@ Project settings Type of the domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -3000,9 +2922,9 @@ Project settings Precision of the domain. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -3010,9 +2932,9 @@ Project settings Latitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lat_name] num type: 'string' @@ -3020,9 +2942,9 @@ Project settings Longitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lon_name] num type: 'string' @@ -3030,9 +2952,9 @@ Project settings Name of the i dimension. - fatal: False - - default values: [] + values: + + - attrs[dim_i_name] num type: 'string' @@ -3040,9 +2962,9 @@ Project settings Reference domain. - fatal: False - - default values: [] + values: + + - attrs[domain_ref] num type: 'string' @@ -3058,14 +2980,9 @@ Project settings Precision associated with the domain group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -3077,6 +2994,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' duplicate_scalar @@ -3091,9 +3014,9 @@ Project settings Id of the field. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -3101,9 +3024,9 @@ Project settings Id of the reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -3111,9 +3034,9 @@ Project settings Name of the field. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3121,9 +3044,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -3131,9 +3054,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -3141,9 +3064,9 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] num type: 'string' @@ -3151,9 +3074,9 @@ Project settings Long name of the field. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -3161,9 +3084,9 @@ Project settings Standard name of the field. - fatal: False - - default values: [] + values: + + - attrs[standard_name] num type: 'string' @@ -3171,9 +3094,9 @@ Project settings Unit of the field. - fatal: False - - default values: [] + values: + + - attrs[unit] num type: 'string' @@ -3181,9 +3104,9 @@ Project settings Operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3191,9 +3114,9 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: [] + values: + + - attrs[detect_missing_value] num type: 'string' @@ -3201,9 +3124,9 @@ Project settings Precision of the field. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -3219,9 +3142,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -3229,9 +3152,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -3239,14 +3162,28 @@ Project settings XIOS field beacon (only for output fields) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: field_ref Reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -3254,9 +3191,10 @@ Project settings Name of the field. - fatal: False - - default values: variable.mipVarLabel + values: + + - attrs[name] + - common_tag[variable][mipVarLabel] num type: 'string' @@ -3264,11 +3202,11 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] - skip values: + forbidden values: - '' - 'None' @@ -3280,11 +3218,11 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] - skip values: + forbidden values: - '' - 'None' @@ -3296,9 +3234,10 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: 'True' + values: + + - attrs[detect_missing_value] + - 'True' num type: 'string' @@ -3308,12 +3247,11 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '0' - - '1.e+20' + - attrs[default_value] + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3324,6 +3262,11 @@ Project settings - 'integer': '0' - 'int': '0' + authorized values: + + - '0' + - '1.e+20' + num type: 'string' prec @@ -3332,13 +3275,10 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3349,15 +3289,22 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' cell_methods Cell method associated with the field. - fatal: False - - default values: variable.cell_methods + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] corrections: @@ -3369,9 +3316,10 @@ Project settings Mode associated with the cell method of the field. - fatal: False - - default values: 'overwrite' + values: + + - attrs[cell_methods_mode] + - 'overwrite' num type: 'string' @@ -3379,9 +3327,9 @@ Project settings Operation performed on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3389,11 +3337,11 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] - skip values: + forbidden values: - '' - 'None' @@ -3405,11 +3353,11 @@ Project settings Expression used to compute the field. - fatal: False - - default values: [] + values: + + - attrs[expr] - skip values: + forbidden values: - '' - 'None' @@ -3423,14 +3371,13 @@ Project settings Comment associated with the field. - fatal: False - - default values: + values: - - simulation[comments][variable.label] - - laboratory[comments][variable.label] + - attrs[comment] + - simulation[comments][common_tag[variable][label]] + - laboratory[comments][common_tag[variable][label]] - skip values: + forbidden values: - '' - 'None' @@ -3442,11 +3389,12 @@ Project settings Standard name of the field. - fatal: False - - default values: variable.stdname + values: + + - attrs[standard_name] + - common_tag[variable][stdname] - skip values: + forbidden values: - '' - 'None' @@ -3458,14 +3406,13 @@ Project settings Description associated with the field. - fatal: False - - default values: + values: - - variable.description + - attrs[description] + - common_tag[variable][description] - 'None' - skip values: '' + forbidden values: '' num type: 'string' @@ -3473,9 +3420,10 @@ Project settings Long name of the field. - fatal: False - - default values: variable.long_name + values: + + - attrs[long_name] + - common_tag[variable][long_name] num type: 'string' @@ -3483,9 +3431,10 @@ Project settings History associated with the field. - fatal: False - - default values: common[history] + values: + + - attrs[history] + - common[history] num type: 'string' @@ -3493,11 +3442,12 @@ Project settings Units associated with the field. - fatal: False - - default values: variable.units + values: + + - attrs[units] + - common_tag[variable][units] - skip values: + forbidden values: - '' - 'None' @@ -3507,33 +3457,35 @@ Project settings cell_methods - Cell method associated with the field. + Cell methods associated with the field. - fatal: False + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] - default values: variable.cell_methods + corrections: + + - 'area: time: mean': 'time: mean' - skip values: + forbidden values: - '' - 'None' - None - corrections: - - - 'area: time: mean': 'time: mean' - num type: 'string' cell_measures Cell measures associated with the field. - fatal: False - - default values: variable.cell_measures + values: + + - attrs[cell_measures] + - common_tag[variable][cell_measures] - skip values: + forbidden values: - '' - 'None' @@ -3545,11 +3497,12 @@ Project settings Flag meanings associated with the field. - fatal: False - - default values: variable.flag_meanings + values: + + - attrs[flag_meanings] + - common_tag[variable][flag_meanings] - skip values: + forbidden values: - '' - 'None' @@ -3561,11 +3514,12 @@ Project settings Flag values associated with the field. - fatal: False - - default values: variable.flag_values + values: + + - attrs[flag_values] + - common_tag[variable][flag_values] - skip values: + forbidden values: - '' - 'None' @@ -3575,21 +3529,23 @@ Project settings grid_mapping - TODO - - fatal: False - - default values: 'crs' + Grid mapping associated with the file. - conditions: - Condition: + values: - check value: internal[context] - - check to do: 'eq' - - reference values: 'surfex' - + - Condition: + - + - value to check: internal[context] + - + - check to perform: 'eq' + - + - reference values: 'surfex' + - + - values: + - + - - attrs[grid_mapping] + - - 'crs' + - num type: 'string' @@ -3602,9 +3558,9 @@ Project settings Id of the file. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -3612,9 +3568,9 @@ Project settings File name. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3622,9 +3578,9 @@ Project settings Mode in which the file will be open. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -3632,9 +3588,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3642,9 +3598,9 @@ Project settings Should the file be considered by XIOS. - fatal: False - - default values: [] + values: + + - attrs[enabled] num type: 'string' @@ -3657,9 +3613,10 @@ Project settings Type of file to be produced - fatal: False - - default values: 'one_file' + values: + + - attrs[type] + - 'one_file' num type: 'string' @@ -3667,9 +3624,10 @@ Project settings Should the file_definition be considered by XIOS - fatal: False - - default values: 'true' + values: + + - attrs[enabled] + - 'true' num type: 'string' @@ -3677,14 +3635,31 @@ Project settings XIOS file beacon (only for output files) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: id Id of the output file - fatal: False + fatal: True - default values: '{}_{}_{}'.format(variable.label, dict[table_id], dict[grid_label]) + values: + + - attrs[id] + - function from self named format('grid'= attrs[grid_label], 'table'= attrs[table_id], 'variable'= common_tag[variable][label]) num type: 'string' @@ -3694,7 +3669,9 @@ Project settings fatal: True - default values: build_filename('frequency'= variable.frequency, 'prefix'= common[prefix], 'source_id'= internal[source_id], 'expid_in_filename'= common[expid_in_filename], 'date_range'= common[date_range], 'var_type'= variable.type, 'list_perso_dev_file'= common[list_perso_dev_file], 'label'= variable.label, 'mipVarLabel'= variable.mipVarLabel, 'use_cmorvar'= internal[use_cmorvar_label_in_filename], 'domain_id'= common[domain_id], 'driving_source_id'= common[driving_source_id], 'driving_variant_label'= common[driving_variant_label], 'institution_id'= internal[institution_id], 'version_realization'= common[version_realization]) + values: + + - function from functions_file named build_filename('frequency'= variable.frequency, 'prefix'= common[prefix], 'source_id'= internal[source_id], 'expid_in_filename'= common[expid_in_filename], 'date_range'= common[date_range], 'var_type'= variable.type, 'list_perso_dev_file'= common[list_perso_dev_file], 'label'= variable.label, 'mipVarLabel'= variable.mipVarLabel, 'use_cmorvar'= internal[use_cmorvar_label_in_filename], 'domain_id'= common[domain_id], 'driving_source_id'= common[driving_source_id], 'driving_variant_label'= common[driving_variant_label], 'institution_id'= init[institution_id], 'version_realization'= common[version_realization]) num type: 'string' @@ -3702,9 +3679,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3712,9 +3689,10 @@ Project settings Should the data be append to the file? - fatal: False - - default values: 'true' + values: + + - attrs[append] + - 'true' num type: 'string' @@ -3722,11 +3700,12 @@ Project settings Output level of the file. - fatal: False - - default values: common[output_level] + values: + + - attrs[output_level] + - common[output_level] - skip values: + forbidden values: - 'None' - '' @@ -3738,11 +3717,12 @@ Project settings Compression level of the file. - fatal: False - - default values: common[compression_level] + values: + + - attrs[compression_level] + - common[compression_level] - skip values: + forbidden values: - 'None' - '' @@ -3754,143 +3734,139 @@ Project settings Splitting frequency of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_freq_format Splitting frequency format of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq_format] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_start_offset Splitting start offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_start_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_end_offset Splitting end offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_end_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_last_date Splitting last date of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_last_date] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' time_units Time units of the file. - fatal: False - - default values: 'days' + values: + + - attrs[ time_units] + - 'days' num type: 'string' @@ -3898,9 +3874,10 @@ Project settings Time counter name. - fatal: False - - default values: 'time' + values: + + - attrs[time_counter_name] + - 'time' num type: 'string' @@ -3908,9 +3885,10 @@ Project settings Time counter type. - fatal: False - - default values: 'exclusive' + values: + + - attrs[time_counter] + - 'exclusive' num type: 'string' @@ -3918,9 +3896,10 @@ Project settings Time stamp name. - fatal: False - - default values: 'creation_date' + values: + + - attrs[time_stamp_name] + - 'creation_date' num type: 'string' @@ -3928,9 +3907,10 @@ Project settings Time stamp format. - fatal: False - - default values: '%Y-%m-%dT%H:%M:%SZ' + values: + + - attrs[time_stamp_format] + - '%Y-%m-%dT%H:%M:%SZ' num type: 'string' @@ -3938,9 +3918,10 @@ Project settings Unique identifier of the file name. - fatal: False - - default values: 'tracking_id' + values: + + - attrs[uuid_name] + - 'tracking_id' num type: 'string' @@ -3948,11 +3929,13 @@ Project settings Unique identifier of the file format. - fatal: False - - default values: 'hdl:{}/%uuid%'.format(common[HDL]) + values: + + - attrs[uuid_format] + - attrs[uuid_format] + - function from self named format('hdl'= common[HDL]) - skip values: + forbidden values: - 'None' - '' @@ -3964,21 +3947,23 @@ Project settings Convention used for the file. - fatal: False - - default values: common[convention_str] + values: + + - attrs[convention_str] + - common[convention_str] num type: 'string' synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. - - fatal: False + Frequency at which the synchronisation between buffer and filesystem is done. - default values: internal[synchronisation_frequency] + values: + + - attrs[synchronisation_frequency] + - internal[synchronisation_frequency] - skip values: + forbidden values: - 'None' - '' @@ -3992,9 +3977,10 @@ Project settings Activity id associated with the simulation. - fatal: False - - default values: common[activity_id] + values: + + - attrs[activity_id] + - common[activity_id] num type: 'string' @@ -4002,97 +3988,12 @@ Project settings Comment associated with the file. - fatal: False - - default values: [] - - skip values: '' - - cases: - Case: - - conditions: - Condition: - - check value: variable.comments - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}{}'.format(common[comment_lab], common[comment_sim], variable.comments) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}'.format(common[comment_lab], common[comment_sim]) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_sim] - - Case: - - conditions: - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_lab] - + values: + + - attrs[comment] + - function from self named format('var'= , , Condition:, , value to check: common_tag[variable][comments], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common_tag[variable][comments], , 'lset'= , , Condition:, , value to check: common[comment_lset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_lset], , 'sset'= , , Condition:, , value to check: common[comment_sset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_sset], ) + + forbidden values: '' num type: 'string' @@ -4100,11 +4001,12 @@ Project settings Contact email. - fatal: False - - default values: common[contact] + values: + + - attrs[contact] + - common[contact] - skip values: + forbidden values: - 'None' - '' @@ -4118,9 +4020,10 @@ Project settings output key: 'Conventions' - fatal: False - - default values: common[conventions_version] + values: + + - attrs[conventions_version] + - common[convention_versions] num type: 'string' @@ -4128,9 +4031,10 @@ Project settings Version of dr2xml used. - fatal: False - - default values: common[dr2xml_version] + values: + + - attrs[dr2xml_version] + - common[dr2xml_version] num type: 'string' @@ -4138,9 +4042,10 @@ Project settings TODO - fatal: False - - default values: common[domain] + values: + + - attrs[domain] + - common[domain] num type: 'string' @@ -4148,9 +4053,10 @@ Project settings TODO - fatal: False - - default values: common[domain_id] + values: + + - attrs[domain_id] + - common[domain_id] num type: 'string' @@ -4160,7 +4066,10 @@ Project settings fatal: True - default values: common[driving_experiment] + values: + + - attrs[driving_experiment] + - common[driving_experiment] num type: 'string' @@ -4170,7 +4079,10 @@ Project settings fatal: True - default values: common[driving_experiment_id] + values: + + - attrs[driving_experiment_id] + - common[driving_experiment_id] num type: 'string' @@ -4180,7 +4092,10 @@ Project settings fatal: True - default values: common[driving_institution_id] + values: + + - attrs[driving_institution_id] + - common[driving_institution_id] num type: 'string' @@ -4190,7 +4105,10 @@ Project settings fatal: True - default values: common[driving_source_id] + values: + + - attrs[driving_source_id] + - common[driving_source_id] num type: 'string' @@ -4200,7 +4118,10 @@ Project settings fatal: True - default values: common[driving_variant_label] + values: + + - attrs[driving_variant_label] + - common[driving_variant_label] num type: 'string' @@ -4210,9 +4131,10 @@ Project settings output key: 'experiment_id' - fatal: False - - default values: common[expid_in_filename] + values: + + - attrs[expid_in_filename] + - common[expid_in_filename] num type: 'string' @@ -4220,11 +4142,12 @@ Project settings External variables associated with the file. - fatal: False - - default values: variable.cell_measuresbuild_external_variables() + values: + + - attrs[external_variables] + - function from functions_file named build_external_variables('cell_measures'= common_tag[variable][cell_measures]) - skip values: '' + forbidden values: '' num type: 'string' @@ -4232,9 +4155,10 @@ Project settings Frequency associated with the file. - fatal: False - - default values: variable.frequency + values: + + - attrs[frequency] + - common_tag[variable][frequency] num type: 'string' @@ -4242,9 +4166,9 @@ Project settings Id of the grid used in the file. - fatal: False - - default values: [] + values: + + - attrs[grid] num type: 'string' @@ -4252,9 +4176,10 @@ Project settings History associated with the file. - fatal: False - - default values: common[history] + values: + + - attrs[history] + - common[history] num type: 'string' @@ -4264,7 +4189,10 @@ Project settings fatal: True - default values: common[institution] + values: + + - attrs[institution] + - common[institution] num type: 'string' @@ -4274,95 +4202,105 @@ Project settings fatal: True - default values: internal[institution_id] + values: + + - attrs[institution_id] + - init[institution_id] num type: 'string' Lambert_conformal_longitude_of_central_meridian - TODO - - fatal: False + Longitude of central meridian of the Lambert conformal projection. - default values: common[Lambert_conformal_longitude_of_central_meridian] - - skip values: + values: + + - Condition: + - + - value to check: internal[context] + - + - check to perform: 'eq' + - + - reference values: 'surfex' + - + - values: + - + - - attrs[Lambert_conformal_longitude_of_central_meridian] + - - common[Lambert_conformal_longitude_of_central_meridian] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[context] - - check to do: 'eq' - - reference values: 'surfex' - - num type: 'string' Lambert_conformal_standard_parallel - TODO - - fatal: False + Standard parallel of the Lambert conformal projection. - default values: common[Lambert_conformal_standard_parallel] - - skip values: + values: + + - Condition: + - + - value to check: internal[context] + - + - check to perform: 'eq' + - + - reference values: 'surfex' + - + - values: + - + - - attrs[Lambert_conformal_standard_parallel] + - - common[Lambert_conformal_standard_parallel] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[context] - - check to do: 'eq' - - reference values: 'surfex' - - num type: 'string' Lambert_conformal_latitude_of_projection_origin - TODO - - fatal: False + Latitude of central meridian of the Lambert conformal projection. - default values: common[Lambert_conformal_latitude_of_projection_origin] - - skip values: + values: + + - Condition: + - + - value to check: internal[context] + - + - check to perform: 'eq' + - + - reference values: 'surfex' + - + - values: + - + - - attrs[Lambert_conformal_latitude_of_projection_origin] + - - common[Lambert_conformal_latitude_of_projection_origin] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[context] - - check to do: 'eq' - - reference values: 'surfex' - - num type: 'string' license License associated with the file. - fatal: False - - default values: laboratory[license] + values: + + - attrs[license] + - laboratory[license] num type: 'string' @@ -4370,10 +4308,9 @@ Project settings MIP associated with the simulation. - fatal: False - - default values: + values: + - attrs[mip_era] - simulation[mip_era] - laboratory[mip_era] - 'CMIP6' @@ -4386,9 +4323,9 @@ Project settings output key: 'native_resolution' - fatal: False - - default values: [] + values: + + - attrs[nominal_resolution] num type: 'string' @@ -4396,9 +4333,10 @@ Project settings Type of content of the file. - fatal: False - - default values: 'model-output' + values: + + - attrs[product] + - 'model-output' num type: 'string' @@ -4406,9 +4344,10 @@ Project settings TODO - fatal: False - - default values: 'CORDEX-CMIP6' + values: + + - attrs[project_id] + - 'CORDEX-CMIP6' num type: 'string' @@ -4416,9 +4355,9 @@ Project settings Realm associated with the file. - fatal: False - - default values: variable.modeling_realm() + values: + + - common_tag[variable][modeling_realm] formatted with function from self named join({}) num type: 'string' @@ -4426,9 +4365,10 @@ Project settings References associated with the simulation. - fatal: False - - default values: common[references] + values: + + - attrs[references] + - common[references] num type: 'string' @@ -4436,9 +4376,10 @@ Project settings Model associated with the simulation. - fatal: False - - default values: laboratory[source_description][internal[source_id]] + values: + + - attrs[source] + - laboratory[source_description][internal[source_id]] num type: 'string' @@ -4446,9 +4387,10 @@ Project settings Model id associated with the simulation. - fatal: False - - default values: simulation[source_id] + values: + + - attrs[source_id] + - simulation[source_id] num type: 'string' @@ -4456,9 +4398,10 @@ Project settings Model type associated with the simulation. - fatal: False - - default values: laboratory[source_types][internal[source_id]] + values: + + - attrs[source_type] + - laboratory[source_types][internal[source_id]] num type: 'string' @@ -4466,9 +4409,9 @@ Project settings Title of the file. - fatal: False - - default values: '{} model output prepared for {} / {} simulation driven by {}'.format(internal[source_id], CORDEX-CMIP6, common[expid_in_filename], common[driving_experiment]) + values: + + - function from self named format('source'= internal[source_id], 'project'= 'CORDEX-CMIP6', 'driving'= common[driving_experiment], 'expid'= common[expid_in_filename]) num type: 'string' @@ -4476,9 +4419,10 @@ Project settings Id of the variable contained in the file. - fatal: False - - default values: variable.mipVarLabel + values: + + - attrs[variable_id] + - variable.mipVarLabel num type: 'string' @@ -4486,9 +4430,10 @@ Project settings TODO - fatal: False - - default values: common[version_realization] + values: + + - attrs[version_realization] + - common[version_realization] num type: 'string' @@ -4504,9 +4449,9 @@ Project settings Id of the grid. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4515,16 +4460,16 @@ Project settings XIOS grid_definition beacon interpolate_axis - XIOS interpolate_axis beacon + TODO Attributes: type Type of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4532,9 +4477,9 @@ Project settings Order of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4542,9 +4487,9 @@ Project settings Coordinate of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4557,9 +4502,9 @@ Project settings Type of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4567,9 +4512,9 @@ Project settings Order of the interpolation. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4577,9 +4522,9 @@ Project settings Should the interpolated domain be renormalized? - fatal: False - - default values: [] + values: + + - attrs[renormalize] num type: 'string' @@ -4587,9 +4532,9 @@ Project settings Mode used for the interpolation. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -4597,9 +4542,9 @@ Project settings Should interpolation weights be written? - fatal: False - - default values: [] + values: + + - attrs[write_weight] num type: 'string' @@ -4607,9 +4552,9 @@ Project settings Coordinate of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4622,9 +4567,9 @@ Project settings Id of the scalar. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4632,9 +4577,9 @@ Project settings Reference scalar. - fatal: False - - default values: [] + values: + + - attrs[scalar_ref] num type: 'string' @@ -4642,9 +4587,9 @@ Project settings Name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -4652,11 +4597,11 @@ Project settings Standard name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' @@ -4668,9 +4613,9 @@ Project settings Long name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -4678,11 +4623,11 @@ Project settings Label of the scalar. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -4694,21 +4639,9 @@ Project settings Precision of the scalar. - fatal: False - - default values: [] - - skip values: - - - '' - - 'None' - - None - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -4719,17 +4652,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' value Value of the scalar. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -4741,11 +4686,11 @@ Project settings Bounds of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -4757,11 +4702,11 @@ Project settings Bounds name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds_name] - skip values: + forbidden values: - '' - 'None' @@ -4773,11 +4718,11 @@ Project settings Axis type of the scalar. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -4789,11 +4734,11 @@ Project settings Orientation of the scalar. - fatal: False - - default values: [] + values: + + - attrs[positive] - skip values: + forbidden values: - '' - 'None' @@ -4805,11 +4750,11 @@ Project settings Unit of the scalar. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -4832,9 +4777,11 @@ Project settings Content of the variable - fatal: False + fatal: True - default values: [] + values: + + - attrs[name] num type: 'string' @@ -4842,9 +4789,11 @@ Project settings Encoding type of the variable's content. - fatal: False + fatal: True - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4857,9 +4806,9 @@ Project settings Index of the zoomed axis. - fatal: False - - default values: [] + values: + + - attrs[index] num type: 'string' \ No newline at end of file diff --git a/sphinx/source/userguide/projects/CORDEX.rst b/sphinx/source/userguide/projects/CORDEX.rst index 1abb3c0a..ee77b49b 100644 --- a/sphinx/source/userguide/projects/CORDEX.rst +++ b/sphinx/source/userguide/projects/CORDEX.rst @@ -1,6 +1,144 @@ Parameters available for project CORDEX ======================================= +Init values +--------------- +.. glossary:: + :sorted: + + data_request_config + + Configuration file of the data request content to be used. + + values: + + - laboratory[data_request_config] + - '__package-root__/dr_interface/CMIP7_config' + + num type: 'string' + + data_request_content_version + + Version of the data request content to be used. + + values: + + - laboratory[data_request_content_version] + - 'latest_stable' + + num type: 'string' + + data_request_path + + Path where the data request API used is placed. + + values: + + - laboratory[data_request_path] + - None + + num type: 'string' + + data_request_used + + The Data Request infrastructure type which should be used. + + values: + + - laboratory[data_request_used] + - 'CMIP6' + + num type: 'string' + + institution_id + + Institution identifier. + + fatal: True + + values: + + - laboratory[institution_id] + + num type: 'string' + + laboratory_used + + File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. + + values: + + - laboratory[laboratory_used] + - None + + num type: 'string' + + project + + Project associated with the simulation. + + values: + + - laboratory[project] + - 'CMIP6' + + num type: 'string' + + project_settings + + Project settings definition file to be used. + + values: + + - laboratory[project_settings] + - init[project] + + num type: 'string' + + save_project_settings + + The path of the file where the complete project settings will be written, if needed. + + values: + + - laboratory[save_project_settings] + - None + + num type: 'string' + + vocabulary_config + + Configuration file of the vocabulary to be used. + + values: + + - laboratory[vocabulary_config] + - '__package-root__/vocabulary/vocabulary.json' + + num type: 'string' + + vocabulary_project + + The vocabulary project which should be used. + + values: + + - laboratory[vocabulary_project] formatted with function from self named lower({}) + - init[project] formatted with function from self named lower({}) + + num type: 'string' + + vocabulary_used + + The vocabulary infrastructure type which should be used. + + values: + + - laboratory[vocabulary_used] + - None + + num type: 'string' + Internal values --------------- .. glossary:: @@ -10,9 +148,7 @@ Internal values CFMIP has an elaborated requirement for defining subhr frequency; by default, dr2xml uses 1 time step. - fatal: False - - default values: + values: - laboratory[CFsubhr_frequency] - '1ts' @@ -23,9 +159,7 @@ Internal values DR01.00.21 does not include Gibraltar strait, which is requested by OMIP. Can include it, if model provides it as last value of array. - fatal: False - - default values: + values: - laboratory[add_Gibraltar] - False @@ -38,7 +172,9 @@ Internal values fatal: True - default values: [] + values: + + - [] num type: 'string' @@ -46,9 +182,7 @@ Internal values Some scenario experiment in DR 01.00.21 do not request tos on 1 degree grid, while other do. If you use grid_policy=adhoc and had not changed the mapping of function. grids.lab_adhoc_grid_policy to grids.CNRM_grid_policy, next setting can force any tos request to also produce tos on a 1 degree grid. - fatal: False - - default values: + values: - laboratory[adhoc_policy_do_add_1deg_grid_for_tos] - False @@ -59,9 +193,7 @@ Internal values Should we allow for duplicate vars: two vars with same frequency, shape and realm, which differ only by the table. In DR01.00.21, this actually applies to very few fields (ps-Aermon, tas-ImonAnt, areacellg-IfxAnt). - fatal: False - - default values: + values: - laboratory[allow_duplicates] - True @@ -74,7 +206,7 @@ Internal values fatal: True - default values: + values: - laboratory[allow_duplicates_in_same_table] - False @@ -85,9 +217,7 @@ Internal values DR has sn attributes for MIP variables. They can be real,CF-compliant, standard_names or pseudo_standard_names, i.e. not yet approved labels. Default is to use only CF ones. - fatal: False - - default values: + values: - laboratory[allow_pseudo_standard_names] - False @@ -98,9 +228,7 @@ Internal values When using select='no', Xios may enter an endless loop, which is solved if next setting is False. - fatal: False - - default values: + values: - laboratory[allow_tos_3hr_1deg] - True @@ -111,19 +239,17 @@ Internal values In some instances, the experiment start year is not explicit or is doubtful in DR. See file doc/some_experiments_starty_in_DR01.00.21. You should then specify it, using next setting in order that requestItems analysis work in all cases. In some other cases, DR requestItems which apply to the experiment form its start does not cover its whole duration and have a wrong duration (computed based on a wrong start year); They necessitate to fix the start year. - fatal: False - - default values: simulation[branch_year_in_child] + values: + + - simulation[branch_year_in_child] num type: 'string' branching - Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. - - fatal: False + Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. - default values: + values: - laboratory[branching][internal[source_id]] - {} @@ -134,9 +260,7 @@ Internal values If the CMIP6 Controlled Vocabulary doesn't allow all the components you activate, you can set next toggle to True - fatal: False - - default values: + values: - laboratory[bypass_CV_components] - False @@ -147,9 +271,7 @@ Internal values Estimate of number of bytes per floating value, given the chosen :term:`compression_level`. - fatal: False - - default values: + values: - laboratory[bytes_per_float] - 2 @@ -162,7 +284,9 @@ Internal values fatal: True - default values: simulation[configuration] + values: + + - simulation[configuration] num type: 'string' @@ -172,98 +296,68 @@ Internal values fatal: True - default values: dict[context] - - num type: 'string' - - data_request_config - - Configuration file of the data request content to be used - - fatal: False - - default values: + values: - - laboratory[data_request_config] - - '/home/rigoudyg/dev/DR2XML/dr2xml_source/dr2xml/dr_interface/CMIP7_config' + - dict[context] num type: 'string' - data_request_content_version - - Version of the data request content to be used - - fatal: False - - default values: - - - laboratory[data_request_content_version] - - 'latest_stable' - - num type: 'string' - - data_request_path - - Path where the data request API used is placed. + debug_parsing - fatal: False + In order to identify which xml files generates a problem, you can use this flag. - default values: + values: - - laboratory[data_request_path] - - None + - laboratory[debug_parsing] + - False num type: 'string' - data_request_used - - The Data Request infrastructure type which should be used. + dr2xml_manages_enddate - fatal: False + A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. - default values: + values: - - laboratory[data_request_used] - - 'CMIP6' + - laboratory[dr2xml_manages_enddate] + - True num type: 'string' - debug_parsing - - In order to identify which xml files generates a problem, you can use this flag. + end_year - fatal: False + If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value - default values: + values: - - laboratory[debug_parsing] + - simulation[end_year] - False num type: 'string' - dr2xml_manages_enddate - - A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. + excluded_expgroups_lset - fatal: True + List of the experiments groups that will be excluded from outputs from laboratory settings. - default values: + values: - - laboratory[dr2xml_manages_enddate] - - True + - laboratory[excluded_expgroups] + - [] - num type: 'string' + target type: 'list' - end_year + num type: 'string' - If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value + excluded_expgroups_sset - fatal: False + List of the experiments groups that will be excluded from outputs from simulation settings. - default values: + values: - - simulation[end_year] - - False + - simulation[excluded_expgroups] + - [] + + target type: 'list' num type: 'string' @@ -271,169 +365,169 @@ Internal values List of the opportunities that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_opportunities_sset List of the opportunities that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_pairs_lset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_pairs_sset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_request_links List of links un data request that should not been followed (those request are not taken into account). - fatal: False - - default values: + values: - laboratory[excluded_request_links] - [] + target type: 'list' + num type: 'string' excluded_spshapes_lset The list of shapes that should be excluded (all variables in those shapes will be excluded from outputs). - fatal: False - - default values: + values: - laboratory[excluded_spshapes] - [] + target type: 'list' + num type: 'string' excluded_tables_lset List of the tables that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_tables_sset List of the tables that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_vargroups_lset List of the variables groups that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vargroups_sset List of the variables groups that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vars_lset List of CMOR variables to exclude from the result based on previous Data Request extraction from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vars] - [] + target type: 'list' + num type: 'string' excluded_vars_per_config A dictionary which keys are configurations and values the list of variables that must be excluded for each configuration. - fatal: False - - default values: + values: - laboratory[excluded_vars_per_config][internal[configuration]] - [] + target type: 'list' + num type: 'string' excluded_vars_sset List of CMOR variables to exclude from the result based on previous Data Request extraction from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vars] - [] + target type: 'list' + num type: 'string' experiment_for_requests @@ -442,7 +536,7 @@ Internal values fatal: True - default values: + values: - simulation[experiment_for_requests] - internal[experiment_id] @@ -451,11 +545,13 @@ Internal values experiment_id - Root experiment identifier. + Root experiment identifier fatal: True - default values: simulation[experiment_id] + values: + + - simulation[experiment_id] num type: 'string' @@ -463,9 +559,7 @@ Internal values If you want to produce the same variables set for all members, set this parameter to False. - fatal: False - - default values: + values: - simulation[filter_on_realization] - laboratory[filter_on_realization] @@ -477,9 +571,7 @@ Internal values You may provide some variables already horizontally remapped to some grid (i.e. Xios domain) in external files. The varname in file must match the referenced id in pingfile. Tested only for fixed fields. A dictionary with variable id as key and a dictionary as value: the key must be the grid id, the value a dictionary with the file for each resolution. - fatal: False - - default values: + values: - laboratory[fx_from_file] - [] @@ -492,7 +584,9 @@ Internal values fatal: True - default values: laboratory[grid_choice][internal[source_id]] + values: + + - laboratory[grid_choice][internal[source_id]] num type: 'string' @@ -502,7 +596,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_policy] - False @@ -515,7 +609,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_prefix] - internal[ping_variables_prefix] @@ -524,11 +618,13 @@ Internal values grids - Grids : per model resolution and per context :- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)- Xios id for the production grid (if it is not the native grid),- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)- resolution of the production grid (using CMIP6 conventions),- grid description + Grids : per model resolution and per context :\n- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)\n- Xios id for the production grid (if it is not the native grid)\n- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)\n- resolution of the production grid (using CMIP6 conventions)\n- grid description fatal: True - default values: laboratory[grids] + values: + + - laboratory[grids] num type: 'string' @@ -538,7 +634,7 @@ Internal values fatal: True - default values: + values: - laboratory[grids_dev] - {} @@ -549,9 +645,7 @@ Internal values Variables to be grouped in the same output file (provided additional conditions are filled). - fatal: False - - default values: + values: - simulation[grouped_vars_per_file] - laboratory[grouped_vars_per_file] @@ -559,143 +653,146 @@ Internal values num type: 'string' + included_expgroups + + List of experiments groups that will be processed (all others will not). + + values: + + - simulation[included_expgroups] + - internal[included_expgroups_lset] + + target type: 'list' + + num type: 'string' + + included_expgroups_lset + + List of experiments groups that will be processed (all others will not) from laboratory settings. + + values: + + - laboratory[included_expgroups] + - [] + + target type: 'list' + + num type: 'string' + included_opportunities List of opportunities that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_opportunities] - internal[included_opportunities_lset] + target type: 'list' + num type: 'string' included_opportunities_lset List of opportunities that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_opportunities] - [] + target type: 'list' + num type: 'string' included_request_links List of the request links that will be processed (all others will not). - fatal: False - - default values: + values: - laboratory[included_request_links] - [] + target type: 'list' + num type: 'string' included_tables List of tables that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_tables] - internal[included_tables_lset] + target type: 'list' + num type: 'string' included_tables_lset List of tables that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_tables] - [] + target type: 'list' + num type: 'string' included_vargroups List of variables groups that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_vargroups] - internal[included_vargroups_lset] + target type: 'list' + num type: 'string' included_vargroups_lset List of variables groups that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vargroups] - [] + target type: 'list' + num type: 'string' included_vars Variables to be considered from the Data Request (all others will not) - fatal: False - - default values: + values: - simulation[included_vars] - internal[included_vars_lset] + target type: 'list' + num type: 'string' included_vars_lset Variables to be considered from the Data Request (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vars] - [] - num type: 'string' - - institution_id - - Institution identifier. - - fatal: True - - default values: laboratory[institution_id] - - num type: 'string' - - laboratory_used - - File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. - - fatal: False - - default values: - - - laboratory[laboratory_used] - - None + target type: 'list' num type: 'string' @@ -703,9 +800,7 @@ Internal values Full path to the file which contains the list of home variables to be taken into account, in addition to the Data Request. - fatal: False - - default values: + values: - simulation[listof_home_vars] - laboratory[listof_home_vars] @@ -717,9 +812,7 @@ Internal values The maximum size of generated files in number of floating values. - fatal: False - - default values: + values: - laboratory[max_file_size_in_floats] - 500000000.0 @@ -732,7 +825,7 @@ Internal values fatal: True - default values: + values: - simulation[max_priority] - internal[max_priority_lset] @@ -745,7 +838,9 @@ Internal values fatal: True - default values: laboratory[max_priority] + values: + + - laboratory[max_priority] num type: 'string' @@ -753,9 +848,7 @@ Internal values The maximum number of years that should be putted in a single file. - fatal: True - - default values: + values: - simulation[max_split_freq] - laboratory[max_split_freq] @@ -769,7 +862,9 @@ Internal values fatal: True - default values: laboratory[mips] + values: + + - laboratory[mips] num type: 'string' @@ -779,7 +874,7 @@ Internal values fatal: True - default values: + values: - laboratory[nemo_sources_management_policy_master_of_the_world] - False @@ -788,11 +883,9 @@ Internal values non_standard_attributes - You may add a series of NetCDF attributes in all files for this simulation - - fatal: False + You may add a series of NetCDF attributes in all files for this simulation. - default values: + values: - laboratory[non_standard_attributes] - {} @@ -803,9 +896,7 @@ Internal values If your model has some axis which does not have all its attributes as in DR, and you want dr2xml to fix that it, give here the correspondence from model axis id to DR dim/grid id. For label dimensions you should provide the list of labels, ordered as in your model, as second element of a pair. Label-type axes will be processed even if not quoted. Scalar dimensions are not concerned by this feature. A dictionary with (axis_id, axis_correct_id) or (axis_id, tuple of labels) as key, values. - fatal: False - - default values: + values: - laboratory[non_standard_axes] - {} @@ -816,9 +907,7 @@ Internal values Name of the orography field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[orography_field_name] - 'orog' @@ -827,11 +916,13 @@ Internal values orphan_variables - A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context) + A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context). fatal: True - default values: laboratory[orphan_variables] + values: + + - laboratory[orphan_variables] num type: 'string' @@ -839,9 +930,7 @@ Internal values Full path of the directory which contains extra tables. - fatal: False - - default values: + values: - simulation[path_extra_tables] - laboratory[path_extra_tables] @@ -853,9 +942,7 @@ Internal values The path of the directory which, at run time, contains the root XML file (iodef.xml). - fatal: False - - default values: + values: - laboratory[path_to_parse] - './' @@ -866,9 +953,7 @@ Internal values A dictionary containing, for each perso or dev variables with a XY-perso shape, and for each vertical coordinate associated, the main attributes of the dimension. - fatal: False - - default values: + values: - simulation[perso_sdims_description] - {} @@ -881,7 +966,9 @@ Internal values fatal: True - default values: laboratory[ping_variables_prefix] + values: + + - laboratory[ping_variables_prefix] num type: 'string' @@ -889,9 +976,9 @@ Internal values Name of the orography field name to be used to compute height over orog fields prefixed with :term:`ping_variable_prefix`. - fatal: False - - default values: '{}{}'.format(internal[ping_variables_prefix], internal[orography_field_name]) + values: + + - function from self named format('prefix'= internal[ping_variables_prefix], 'variable'= internal[orography_field_name]) num type: 'string' @@ -899,9 +986,7 @@ Internal values For an extended printout of selected CMOR variables, grouped by variable label. - fatal: False - - default values: + values: - laboratory[print_stats_per_var_label] - False @@ -912,48 +997,18 @@ Internal values If the value is a list, only the file/field variables listed here will be put in output files. If boolean, tell if the file/field variables should be put in output files. - fatal: False - - default values: + values: - laboratory[print_variables] - True num type: 'string' - project - - Project associated with the simulation. - - fatal: False - - default values: - - - laboratory[project] - - 'CMIP6' - - num type: 'string' - - project_settings - - Project settings definition file to be used. - - fatal: False - - default values: - - - laboratory[project_settings] - - internal[project] - - num type: 'string' - realization_index Realization number. - fatal: False - - default values: + values: - simulation[realization_index] - '1' @@ -962,11 +1017,13 @@ Internal values realms_per_context - A dictionary which keys are context names and values the lists of realms associated with each context + A dictionary which keys are context names and values the lists of realms associated with each context. fatal: True - default values: laboratory[realms_per_context][internal[context]] + values: + + - laboratory[realms_per_context][internal[context]] num type: 'string' @@ -976,7 +1033,9 @@ Internal values fatal: True - default values: [] + values: + + - [] num type: 'string' @@ -986,20 +1045,10 @@ Internal values fatal: True - default values: laboratory[sampling_timestep] - - num type: 'string' - - save_project_settings - - The path of the file where the complete project settings will be written, if needed. - - fatal: False - - default values: + values: - - laboratory[save_project_settings] - - None + - laboratory[sampling_timestep] + - 2 num type: 'string' @@ -1007,9 +1056,9 @@ Internal values List of the sectors to be considered. - fatal: False - - default values: laboratory[sectors] + values: + + - laboratory[sectors] num type: 'string' @@ -1019,7 +1068,9 @@ Internal values fatal: True - default values: dict[select] + values: + + - dict[select] authorized values: @@ -1029,43 +1080,65 @@ Internal values num type: 'string' + select_excluded_expgroups + + Excluded experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_expgroups_lset] + - + + num type: 'string' + select_excluded_opportunities Excluded opportunities for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_opportunities_lset]', 'internal[excluded_opportunities_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_opportunities_lset] + - num type: 'string' @@ -1075,37 +1148,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_pairs_lset]', 'internal[excluded_pairs_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_pairs_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_pairs_lset] + - num type: 'string' @@ -1115,37 +1179,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[excluded_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[excluded_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1155,37 +1210,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_tables_lset]', 'internal[excluded_tables_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_tables_lset] + - num type: 'string' @@ -1195,37 +1241,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vargroups_lset]', 'internal[excluded_vargroups_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vargroups_lset] + - num type: 'string' @@ -1235,37 +1272,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vars_lset]', 'internal[excluded_vars_sset]', 'internal[excluded_vars_per_config]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vars_lset] + - num type: 'string' @@ -1275,37 +1303,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[grid_choice] - - Case: + values: - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: 'LR' - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[grid_choice] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: 'LR' + - + + num type: 'string' + + select_included_expgroups + + Included experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_expgroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_expgroups_lset] + - num type: 'string' @@ -1315,37 +1365,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_opportunities] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_opportunities] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_opportunities_lset] + - num type: 'string' @@ -1355,37 +1396,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1395,77 +1427,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_tables] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_tables] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_tables_lset] + - num type: 'string' select_included_vargroups - Included variables groups for variable selection. + Included variable groups for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vargroups] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vargroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vargroups_lset] + - num type: 'string' @@ -1475,37 +1489,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vars] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vars] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vars_lset] + - num type: 'string' @@ -1515,37 +1520,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[max_priority] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[max_priority_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[max_priority] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[max_priority_lset] + - num type: 'string' @@ -1555,37 +1551,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[mips][internal[select_grid_choice]]sort_mips() - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[mips]sort_mips() - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: function from functions_file named sort_mips('mips'= internal[mips][internal[select_grid_choice]]) + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: function from functions_file named sort_mips('mips'= internal[mips]) + - num type: 'string' @@ -1595,40 +1582,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'on_expt_and_year' - - 'on_expt' - - - value: True - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'no' - - - value: False - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt_and_year' + - - 'on_expt' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'no' + - + - values: False + - num type: 'string' @@ -1638,40 +1616,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'on_expt_and_year' - - - value: internal[year] - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'no' - - 'on_expt' - - - value: None - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'on_expt_and_year' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt' + - - 'no' + - + - values: False + - num type: 'string' @@ -1681,37 +1650,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[sizes] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[sizes] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1721,47 +1681,38 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[tierMax] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[tierMax_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[tierMax] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[tierMax_lset] + - num type: 'string' simple_domain_grid_regexp - If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: 1) it must be a grid which has only a domain 2) the domain name must be extractable from the grid_id using a regexp and a group number Example: using a pattern that returns full id except for a '_grid' suffix - - fatal: False + If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: \n1) it must be a grid which has only a domain \n2) the domain name must be extractable from the grid_id using a regexp and a group number \nExample: using a pattern that returns full id except for a '_grid' suffix - default values: laboratory[simple_domain_grid_regexp] + values: + + - laboratory[simple_domain_grid_regexp] num type: 'string' @@ -1771,7 +1722,9 @@ Internal values fatal: True - default values: laboratory[sizes][internal[grid_choice]]format_sizes() + values: + + - function from functions_file named format_sizes('sizes'= laboratory[sizes][internal[grid_choice]]) num type: 'string' @@ -1781,7 +1734,7 @@ Internal values fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][0] - simulation[source_id] @@ -1790,11 +1743,11 @@ Internal values source_type - If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote "AGCM AER". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit + If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote \"AGCM AER\". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][1] - simulation[source_type] @@ -1806,9 +1759,7 @@ Internal values This variable is used when some variables are computed with a period which is not the basic timestep. A dictionary which keys are non standard timestep and values the list of variables which are computed at this timestep. - fatal: False - - default values: + values: - laboratory[special_timestep_vars] - [] @@ -1819,9 +1770,7 @@ Internal values Path to the split frequencies file to be used. - fatal: False - - default values: + values: - simulation[split_frequencies] - laboratory[split_frequencies] @@ -1831,11 +1780,13 @@ Internal values synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. + Frequency at which the synchronisation between buffer and filesystem is done. - fatal: False - - default values: [] + values: + + - simulation[synchronisation_frequency] + - laboratory[synchronisation_frequency] + - None num type: 'string' @@ -1845,7 +1796,7 @@ Internal values fatal: True - default values: + values: - simulation[tierMax] - internal[tierMax_lset] @@ -1858,7 +1809,9 @@ Internal values fatal: True - default values: laboratory[tierMax] + values: + + - laboratory[tierMax] num type: 'string' @@ -1868,7 +1821,7 @@ Internal values fatal: True - default values: + values: - laboratory[too_long_periods] - [] @@ -1879,9 +1832,7 @@ Internal values Should xml output files use the `@` symbol for definitions for instant variables? - fatal: False - - default values: + values: - laboratory[useAtForInstant] - False @@ -1894,7 +1845,7 @@ Internal values fatal: True - default values: + values: - laboratory[use_cmorvar_label_in_filename] - False @@ -1905,9 +1856,7 @@ Internal values Say if you want to use XIOS union/zoom axis to optimize vertical interpolation requested by the DR. - fatal: False - - default values: + values: - laboratory[use_union_zoom] - False @@ -1918,9 +1867,7 @@ Internal values Operation done for vertical interpolation. - fatal: False - - default values: + values: - laboratory[vertical_interpolation_operation] - 'instant' @@ -1931,9 +1878,9 @@ Internal values Time frequency of vertical interpolation. - fatal: False - - default values: laboratory[vertical_interpolation_sample_freq] + values: + + - laboratory[vertical_interpolation_sample_freq] num type: 'string' @@ -1941,9 +1888,7 @@ Internal values Version of XIOS used. - fatal: False - - default values: + values: - laboratory[xios_version] - 2 @@ -1956,7 +1901,9 @@ Internal values fatal: True - default values: dict[year] + values: + + - dict[year] num type: 'string' @@ -1964,9 +1911,7 @@ Internal values Name of the geopotential height field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[zg_field_name] - 'zg' @@ -1982,9 +1927,9 @@ Common values Dictionary which contains, for each context, the associated CORDEX domain. - fatal: False - - default values: simulation[CORDEX_domain][internal[context]] + values: + + - simulation[CORDEX_domain][internal[context]] num type: 'string' @@ -1992,9 +1937,7 @@ Common values HDL associated with the project. - fatal: False - - default values: + values: - simulation[HDL] - laboratory[HDL] @@ -2006,9 +1949,17 @@ Common values Latitude of central meridian of the Lambert conformal projection. - fatal: False + fatal: True + + values: + + - simulation[Lambert_conformal_latitude_of_projection_origin] - default values: simulation[Lambert_conformal_latitude_of_projection_origin] + forbidden values: + + - '' + - 'None' + - None num type: 'string' @@ -2016,9 +1967,17 @@ Common values Longitude of central meridian of the Lambert conformal projection. - fatal: False + fatal: True + + values: + + - simulation[Lambert_conformal_longitude_of_central_meridian] - default values: simulation[Lambert_conformal_longitude_of_central_meridian] + forbidden values: + + - '' + - 'None' + - None num type: 'string' @@ -2026,9 +1985,17 @@ Common values Standard parallel of the Lambert conformal projection. - fatal: False + fatal: True + + values: + + - simulation[Lambert_conformal_standard_parallel] - default values: simulation[Lambert_conformal_standard_parallel] + forbidden values: + + - '' + - 'None' + - None num type: 'string' @@ -2036,9 +2003,7 @@ Common values MIP(s) name(s). - fatal: False - - default values: + values: - simulation[activity_id] - laboratory[activity_id] @@ -2049,9 +2014,7 @@ Common values Branching procedure. - fatal: False - - default values: + values: - simulation[branch_method] - 'standard' @@ -2062,9 +2025,7 @@ Common values Branch month in parent simulation with respect to its time axis. - fatal: False - - default values: + values: - simulation[branch_month_in_parent] - '1' @@ -2075,77 +2036,54 @@ Common values Branch year in parent simulation with respect to its time axis. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: simulation[branch_year_in_parent] + - + - check to perform: 'eq' + - + - reference values: internal[branching][internal[experiment_id]][1] + - + - values: simulation[branch_year_in_parent] + - + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'neq' + - + - reference values: internal[branching] + - + - values: simulation[branch_year_in_parent] + - + + forbidden values: - None - 'None' - '' - 'N/A' - cases: - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: internal[branching] - - Condition: - - check value: simulation[branch_year_in_parent] - - check to do: 'eq' - - reference values: internal[branching][internal[experiment_id]][1] - - - value: simulation[branch_year_in_parent] - - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'neq' - - reference values: internal[branching] - - - value: simulation[branch_year_in_parent] - - num type: 'string' - comment_lab + comment_lset A character string containing additional information about the models from laboratory settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - laboratory[comment] - '' num type: 'string' - comment_sim + comment_sset A character string containing additional information about the models from simulation settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - simulation[comment] - '' @@ -2154,11 +2092,9 @@ Common values compression_level - The compression level to be applied to NetCDF output files. + The compression level to be applied to NetCDF output files." - fatal: False - - default values: + values: - laboratory[compression_level] - '0' @@ -2169,9 +2105,7 @@ Common values Email address of the data producer. - fatal: False - - default values: + values: - simulation[contact] - laboratory[contact] @@ -2183,9 +2117,9 @@ Common values Version of the conventions used. - fatal: False - - default values: dr2xml.config.conventions + values: + + - config.conventions num type: 'string' @@ -2193,9 +2127,9 @@ Common values Version of the conventions used. - fatal: False - - default values: dr2xml.config.CMIP6_conventions_version + values: + + - config.CMIP6_conventions_version num type: 'string' @@ -2205,7 +2139,9 @@ Common values fatal: True - default values: data_request.get_version() + values: + + - function from data_request named get_version({}) num type: 'string' @@ -2213,9 +2149,9 @@ Common values Date range format to be used in file definition names. - fatal: False - - default values: '%start_date%-%end_date%' + values: + + - '%start_date%-%end_date%' num type: 'string' @@ -2223,12 +2159,10 @@ Common values Description of the simulation. - fatal: False - - default values: + values: - - simulation[description] - laboratory[description] + - simulation[description] num type: 'string' @@ -2236,9 +2170,9 @@ Common values Version of dr2xml used. - fatal: False - - default values: dr2xml.config.version + values: + + - config.version num type: 'string' @@ -2246,9 +2180,9 @@ Common values Id of the experiment which drives the current simulation. - fatal: False - - default values: simulation[driving_experiment] + values: + + - simulation[driving_experiment] num type: 'string' @@ -2256,9 +2190,9 @@ Common values Name of the experiment which drives the current simulation. - fatal: False - - default values: simulation[driving_experiment_name] + values: + + - simulation[driving_experiment_name] num type: 'string' @@ -2266,9 +2200,9 @@ Common values Member of the simulation which drives the simulation. - fatal: False - - default values: simulation[driving_model_ensemble_member] + values: + + - simulation[driving_model_ensemble_member] num type: 'string' @@ -2276,9 +2210,9 @@ Common values Id of the driving model. - fatal: False - - default values: simulation[driving_model_id] + values: + + - simulation[driving_model_id] num type: 'string' @@ -2286,9 +2220,9 @@ Common values Name of the experiment. - fatal: False - - default values: simulation[experiment] + values: + + - simulation[experiment] num type: 'string' @@ -2296,9 +2230,7 @@ Common values Experiment label to use in file names and attribute. - fatal: False - - default values: + values: - simulation[expid_in_filename] - internal[experiment_id] @@ -2311,9 +2243,7 @@ Common values Index for variant of forcing. - fatal: False - - default values: + values: - simulation[forcing_index] - '1' @@ -2324,9 +2254,7 @@ Common values In case of replacement of previously produced data, description of any changes in the production chain. - fatal: False - - default values: + values: - simulation[history] - 'none' @@ -2337,9 +2265,9 @@ Common values Location of documentation. - fatal: False - - default values: laboratory[info_url] + values: + + - laboratory[info_url] num type: 'string' @@ -2347,9 +2275,7 @@ Common values Index for variant of initialization method. - fatal: False - - default values: + values: - simulation[initialization_index] - '1' @@ -2360,9 +2286,9 @@ Common values Full name of the institution of the data producer. - fatal: False - - default values: laboratory[institution] + values: + + - laboratory[institution] num type: 'string' @@ -2370,9 +2296,9 @@ Common values Name of the file which will contain the list of the patterns of perso and dev output file definition. - fatal: False - - default values: 'dr2xml_list_perso_and_dev_file_names' + values: + + - 'dr2xml_list_perso_and_dev_file_names' num type: 'string' @@ -2380,12 +2306,34 @@ Common values MIP associated with the simulation. - fatal: False + values: + + - common[mip_era_sset] + - common[mip_era_lset] + + forbidden values: None + + num type: 'string' - default values: + mip_era_lset + + MIP associated with the simulation from laboratory settings. + + values: - - simulation[mip_era] - laboratory[mip_era] + - None + + num type: 'string' + + mip_era_sset + + MIP associated with the simulation from simulation settings. + + values: + + - simulation[mip_era] + - None num type: 'string' @@ -2393,9 +2341,7 @@ Common values We can control the max output level set for all output files. - fatal: False - - default values: + values: - laboratory[output_level] - '10' @@ -2406,9 +2352,7 @@ Common values Description of sub-experiment. - fatal: False - - default values: + values: - simulation[parent_activity_id] - simulation[activity_id] @@ -2421,9 +2365,7 @@ Common values Parent experiment identifier. - fatal: False - - default values: + values: - simulation[parent_experiment_id] - laboratory[parent_experiment_id] @@ -2434,9 +2376,9 @@ Common values Parent’s associated MIP cycle. - fatal: False - - default values: simulation[parent_mip_era] + values: + + - simulation[parent_mip_era] num type: 'string' @@ -2444,9 +2386,9 @@ Common values Parent model identifier. - fatal: False - - default values: simulation[parent_source_id] + values: + + - simulation[parent_source_id] num type: 'string' @@ -2454,9 +2396,7 @@ Common values Reference year in parent simulation. - fatal: False - - default values: + values: - simulation[parent_time_ref_year] - '1850' @@ -2467,9 +2407,9 @@ Common values Time units used in parent. - fatal: False - - default values: simulation[parent_time_units] + values: + + - simulation[parent_time_units] num type: 'string' @@ -2477,9 +2417,9 @@ Common values Parent variant label. - fatal: False - - default values: simulation[parent_variant_label] + values: + + - simulation[parent_variant_label] num type: 'string' @@ -2487,9 +2427,7 @@ Common values Index for model physics variant. - fatal: False - - default values: + values: - simulation[physics_index] - '1' @@ -2502,7 +2440,9 @@ Common values fatal: True - default values: dict[prefix] + values: + + - dict[prefix] num type: 'string' @@ -2510,9 +2450,9 @@ Common values Version id of the regional model used. - fatal: False - - default values: simulation[rcm_version_id] + values: + + - simulation[rcm_version_id] num type: 'string' @@ -2520,9 +2460,9 @@ Common values References associated with the simulation. - fatal: False - - default values: laboratory[references] + values: + + - laboratory[references] num type: 'string' @@ -2530,9 +2470,9 @@ Common values Name of the model. - fatal: False - - default values: laboratory[source] + values: + + - laboratory[source] num type: 'string' @@ -2540,9 +2480,7 @@ Common values Sub-experiment name. - fatal: False - - default values: + values: - simulation[sub_experiment] - 'none' @@ -2553,9 +2491,7 @@ Common values Sub-experiment identifier. - fatal: False - - default values: + values: - simulation[sub_experiment_id] - 'none' @@ -2566,11 +2502,11 @@ Common values It is recommended that some description be included to help identify major differences among variants, but care should be taken to record correct information. dr2xml will add in all cases: 'Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.' - fatal: False - - default values: simulation[variant_info] + values: + + - simulation[variant_info] - skip values: '' + forbidden values: '' num type: 'string' @@ -2578,9 +2514,9 @@ Common values Label of the variant done. - fatal: False - - default values: 'r{}i{}p{}f{}'.format(internal[realization_index], common[initialization_index], common[physics_index], common[forcing_index]) + values: + + - function from self named format('realization'= internal[realization_index], 'initialization'= common[initialization_index], 'physics'= common[physics_index], 'forcing'= common[forcing_index]) num type: 'string' @@ -2598,19 +2534,19 @@ Project settings Id of the axis. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' positive - How is the axis oriented? + Hox is the axis oriented? - fatal: False - - default values: [] + values: + + - attrs[positive] num type: 'string' @@ -2618,9 +2554,9 @@ Project settings Number of values of this axis. - fatal: False - - default values: [] + values: + + - attrs[n_glo] num type: 'string' @@ -2628,11 +2564,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2644,9 +2580,9 @@ Project settings Reference axis. - fatal: False - - default values: [] + values: + + - attrs[axis_ref] num type: 'string' @@ -2654,9 +2590,9 @@ Project settings Name of this axis. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -2664,27 +2600,25 @@ Project settings Standard name of the axis. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' - None - authorized types: - num type: 'string' long_name Long name of this axis. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -2692,21 +2626,9 @@ Project settings Precision of the axis. - fatal: False - - default values: [] - - skip values: - - - '' - - 'None' - - None - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -2717,17 +2639,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' unit Unit of the axis. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -2739,11 +2673,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2755,11 +2689,11 @@ Project settings Bounds of the axis. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -2771,11 +2705,11 @@ Project settings Name dimension of the axis. - fatal: False - - default values: [] + values: + + - attrs[dim_name] - skip values: + forbidden values: - '' - 'None' @@ -2787,11 +2721,11 @@ Project settings Label of the axis. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -2803,11 +2737,11 @@ Project settings Axis type. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -2827,14 +2761,9 @@ Project settings Precision associated with the axis group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -2846,6 +2775,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' context @@ -2857,9 +2792,9 @@ Project settings Version of the Data Request used - fatal: False - - default values: '{} Data Request version {}'.format(internal[data_request_used], common[data_specs_version]) + values: + + - function from self named format('data_request_used'= init[data_request_used], 'data_specs_version'= common[data_specs_version]) num type: 'string' @@ -2867,9 +2802,9 @@ Project settings Controled vocabulary version used. - fatal: False - - default values: 'CMIP6-CV version ??' + values: + + - 'CMIP6-CV version ??' num type: 'string' @@ -2877,9 +2812,9 @@ Project settings Conventions version used. - fatal: False - - default values: 'CMIP6_conventions_version {}'.format(common[conventions_version]) + values: + + - 'CMIP6_conventions_version {}'.format(common[conventions_version]) num type: 'string' @@ -2887,9 +2822,9 @@ Project settings Version of dr2xml used - fatal: False - - default values: 'dr2xml version {}'.format(common[dr2xml_version]) + values: + + - function from self named format('dr2xml_version'= common[dr2xml_version]) num type: 'string' @@ -2897,9 +2832,9 @@ Project settings Laboratory settings used - fatal: False - - default values: 'Lab_and_model settings***newline***{}'.format(laboratory) + values: + + - function from self named format('laboratory'= laboratory) num type: 'string' @@ -2907,9 +2842,9 @@ Project settings Simulation_settings used - fatal: False - - default values: 'Simulation settings***newline***{}'.format(simulation) + values: + + - function from self named format('laboratory'= simulation) num type: 'string' @@ -2917,9 +2852,9 @@ Project settings Year used for the dr2xml's launch - fatal: False - - default values: 'Year processed {}'.format(internal[year]) + values: + + - function from self named format('year'= internal[year]) num type: 'string' @@ -2929,9 +2864,9 @@ Project settings Id of the context - fatal: False - - default values: internal[context] + values: + + - internal[context] num type: 'string' @@ -2944,29 +2879,29 @@ Project settings Id of the domain. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' ni_glo - Number of points on i dimension. + Number of point in i dimension. - fatal: False - - default values: [] + values: + + - attrs[ni_glo] num type: 'string' nj_glo - Number of points on j dimension. + Number of points in j dimension. - fatal: False - - default values: [] + values: + + - attrs[nj_glo] num type: 'string' @@ -2974,9 +2909,9 @@ Project settings Type of the domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -2984,9 +2919,9 @@ Project settings Precision of the domain. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -2994,9 +2929,9 @@ Project settings Latitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lat_name] num type: 'string' @@ -3004,9 +2939,9 @@ Project settings Longitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lon_name] num type: 'string' @@ -3014,9 +2949,9 @@ Project settings Name of the i dimension. - fatal: False - - default values: [] + values: + + - attrs[dim_i_name] num type: 'string' @@ -3024,9 +2959,9 @@ Project settings Reference domain. - fatal: False - - default values: [] + values: + + - attrs[domain_ref] num type: 'string' @@ -3042,14 +2977,9 @@ Project settings Precision associated with the domain group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -3061,6 +2991,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' duplicate_scalar @@ -3075,9 +3011,9 @@ Project settings Id of the field. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -3085,9 +3021,9 @@ Project settings Id of the reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -3095,9 +3031,9 @@ Project settings Name of the field. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3105,9 +3041,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -3115,9 +3051,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -3125,9 +3061,9 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] num type: 'string' @@ -3135,9 +3071,9 @@ Project settings Long name of the field. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -3145,9 +3081,9 @@ Project settings Standard name of the field. - fatal: False - - default values: [] + values: + + - attrs[standard_name] num type: 'string' @@ -3155,9 +3091,9 @@ Project settings Unit of the field. - fatal: False - - default values: [] + values: + + - attrs[unit] num type: 'string' @@ -3165,9 +3101,9 @@ Project settings Operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3175,9 +3111,9 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: [] + values: + + - attrs[detect_missing_value] num type: 'string' @@ -3185,9 +3121,9 @@ Project settings Precision of the field. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -3203,9 +3139,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -3213,9 +3149,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -3223,14 +3159,28 @@ Project settings XIOS field beacon (only for output fields) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: field_ref Reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -3238,9 +3188,10 @@ Project settings Name of the field. - fatal: False - - default values: variable.mipVarLabel + values: + + - attrs[name] + - common_tag[variable][mipVarLabel] num type: 'string' @@ -3248,11 +3199,11 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] - skip values: + forbidden values: - '' - 'None' @@ -3264,11 +3215,11 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] - skip values: + forbidden values: - '' - 'None' @@ -3280,9 +3231,10 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: 'True' + values: + + - attrs[detect_missing_value] + - 'True' num type: 'string' @@ -3292,12 +3244,11 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '0' - - '1.e+20' + - attrs[default_value] + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3308,6 +3259,11 @@ Project settings - 'integer': '0' - 'int': '0' + authorized values: + + - '0' + - '1.e+20' + num type: 'string' prec @@ -3316,13 +3272,10 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3333,15 +3286,22 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' cell_methods Cell method associated with the field. - fatal: False - - default values: variable.cell_methods + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] corrections: @@ -3353,9 +3313,10 @@ Project settings Mode associated with the cell method of the field. - fatal: False - - default values: 'overwrite' + values: + + - attrs[cell_methods_mode] + - 'overwrite' num type: 'string' @@ -3363,9 +3324,9 @@ Project settings Operation performed on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3373,11 +3334,11 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] - skip values: + forbidden values: - '' - 'None' @@ -3389,11 +3350,11 @@ Project settings Expression used to compute the field. - fatal: False - - default values: [] + values: + + - attrs[expr] - skip values: + forbidden values: - '' - 'None' @@ -3407,14 +3368,13 @@ Project settings Comment associated with the field. - fatal: False - - default values: + values: - - simulation[comments][variable.label] - - laboratory[comments][variable.label] + - attrs[comment] + - simulation[comments][common_tag[variable][label]] + - laboratory[comments][common_tag[variable][label]] - skip values: + forbidden values: - '' - 'None' @@ -3426,11 +3386,12 @@ Project settings Standard name of the field. - fatal: False - - default values: variable.stdname + values: + + - attrs[standard_name] + - common_tag[variable][stdname] - skip values: + forbidden values: - '' - 'None' @@ -3442,14 +3403,13 @@ Project settings Description associated with the field. - fatal: False - - default values: + values: - - variable.description + - attrs[description] + - common_tag[variable][description] - 'None' - skip values: '' + forbidden values: '' num type: 'string' @@ -3457,9 +3417,10 @@ Project settings Long name of the field. - fatal: False - - default values: variable.long_name + values: + + - attrs[long_name] + - common_tag[variable][long_name] num type: 'string' @@ -3467,9 +3428,10 @@ Project settings History associated with the field. - fatal: False - - default values: common[history] + values: + + - attrs[history] + - common[history] num type: 'string' @@ -3477,11 +3439,12 @@ Project settings Units associated with the field. - fatal: False - - default values: variable.units + values: + + - attrs[units] + - common_tag[variable][units] - skip values: + forbidden values: - '' - 'None' @@ -3491,33 +3454,35 @@ Project settings cell_methods - Cell method associated with the field. + Cell methods associated with the field. - fatal: False + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] - default values: variable.cell_methods + corrections: + + - 'area: time: mean': 'time: mean' - skip values: + forbidden values: - '' - 'None' - None - corrections: - - - 'area: time: mean': 'time: mean' - num type: 'string' cell_measures Cell measures associated with the field. - fatal: False - - default values: variable.cell_measures + values: + + - attrs[cell_measures] + - common_tag[variable][cell_measures] - skip values: + forbidden values: - '' - 'None' @@ -3529,11 +3494,12 @@ Project settings Flag meanings associated with the field. - fatal: False - - default values: variable.flag_meanings + values: + + - attrs[flag_meanings] + - common_tag[variable][flag_meanings] - skip values: + forbidden values: - '' - 'None' @@ -3545,11 +3511,12 @@ Project settings Flag values associated with the field. - fatal: False - - default values: variable.flag_values + values: + + - attrs[flag_values] + - common_tag[variable][flag_values] - skip values: + forbidden values: - '' - 'None' @@ -3561,19 +3528,21 @@ Project settings Grid mapping associated with the file. - fatal: False - - default values: 'Lambert_Conformal' - - conditions: - Condition: + values: - check value: internal[context] - - check to do: 'eq' - - reference values: 'surfex' - + - Condition: + - + - value to check: internal[context] + - + - check to perform: 'eq' + - + - reference values: 'surfex' + - + - values: + - + - - attrs[grid_mapping] + - - 'Lambert_Conformal' + - num type: 'string' @@ -3586,9 +3555,9 @@ Project settings Id of the file. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -3596,9 +3565,9 @@ Project settings File name. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3606,9 +3575,9 @@ Project settings Mode in which the file will be open. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -3616,9 +3585,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3626,9 +3595,9 @@ Project settings Should the file be considered by XIOS. - fatal: False - - default values: [] + values: + + - attrs[enabled] num type: 'string' @@ -3641,9 +3610,10 @@ Project settings Type of file to be produced - fatal: False - - default values: 'one_file' + values: + + - attrs[type] + - 'one_file' num type: 'string' @@ -3651,9 +3621,10 @@ Project settings Should the file_definition be considered by XIOS - fatal: False - - default values: 'true' + values: + + - attrs[enabled] + - 'true' num type: 'string' @@ -3661,14 +3632,31 @@ Project settings XIOS file beacon (only for output files) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: id Id of the output file - fatal: False + fatal: True - default values: '{}_{}_{}'.format(variable.label, dict[table_id], dict[grid_label]) + values: + + - attrs[id] + - function from self named format('grid'= attrs[grid_label], 'table'= attrs[table_id], 'variable'= common_tag[variable][label]) num type: 'string' @@ -3678,7 +3666,9 @@ Project settings fatal: True - default values: build_filename('frequency'= variable.frequency, 'prefix'= common[prefix], 'source_id'= internal[source_id], 'expid_in_filename'= common[expid_in_filename], 'date_range'= common[date_range], 'var_type'= variable.type, 'list_perso_dev_file'= common[list_perso_dev_file], 'label'= variable.label, 'mipVarLabel'= variable.mipVarLabel, 'use_cmorvar'= internal[use_cmorvar_label_in_filename], 'CORDEX_domain'= common[CORDEX_domain], 'driving_model_id'= common[driving_model_id], 'driving_model_ensemble_member'= common[driving_model_ensemble_member], 'rcm_version_id'= common[rcm_version_id]) + values: + + - function from functions_file named build_filename('frequency'= variable.frequency, 'prefix'= common[prefix], 'source_id'= internal[source_id], 'expid_in_filename'= common[expid_in_filename], 'date_range'= common[date_range], 'var_type'= variable.type, 'list_perso_dev_file'= common[list_perso_dev_file], 'label'= variable.label, 'mipVarLabel'= variable.mipVarLabel, 'use_cmorvar'= internal[use_cmorvar_label_in_filename], 'CORDEX_domain'= common[CORDEX_domain], 'driving_model_id'= common[driving_model_id], 'driving_model_ensemble_member'= common[driving_model_ensemble_member], 'rcm_version_id'= common[rcm_version_id]) num type: 'string' @@ -3686,9 +3676,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3696,9 +3686,10 @@ Project settings Should the data be append to the file? - fatal: False - - default values: 'true' + values: + + - attrs[append] + - 'true' num type: 'string' @@ -3706,11 +3697,12 @@ Project settings Output level of the file. - fatal: False - - default values: common[output_level] + values: + + - attrs[output_level] + - common[output_level] - skip values: + forbidden values: - 'None' - '' @@ -3722,11 +3714,12 @@ Project settings Compression level of the file. - fatal: False - - default values: common[compression_level] + values: + + - attrs[compression_level] + - common[compression_level] - skip values: + forbidden values: - 'None' - '' @@ -3738,143 +3731,139 @@ Project settings Splitting frequency of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_freq_format Splitting frequency format of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq_format] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_start_offset Splitting start offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_start_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_end_offset Splitting end offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_end_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_last_date Splitting last date of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_last_date] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' time_units Time units of the file. - fatal: False - - default values: 'days' + values: + + - attrs[ time_units] + - 'days' num type: 'string' @@ -3882,9 +3871,10 @@ Project settings Time counter name. - fatal: False - - default values: 'time' + values: + + - attrs[time_counter_name] + - 'time' num type: 'string' @@ -3892,9 +3882,10 @@ Project settings Time counter type. - fatal: False - - default values: 'exclusive' + values: + + - attrs[time_counter] + - 'exclusive' num type: 'string' @@ -3902,9 +3893,10 @@ Project settings Time stamp name. - fatal: False - - default values: 'creation_date' + values: + + - attrs[time_stamp_name] + - 'creation_date' num type: 'string' @@ -3912,9 +3904,10 @@ Project settings Time stamp format. - fatal: False - - default values: '%Y-%m-%dT%H:%M:%SZ' + values: + + - attrs[time_stamp_format] + - '%Y-%m-%dT%H:%M:%SZ' num type: 'string' @@ -3922,9 +3915,10 @@ Project settings Unique identifier of the file name. - fatal: False - - default values: 'tracking_id' + values: + + - attrs[uuid_name] + - 'tracking_id' num type: 'string' @@ -3932,11 +3926,13 @@ Project settings Unique identifier of the file format. - fatal: False - - default values: 'hdl:{}/%uuid%'.format(common[HDL]) + values: + + - attrs[uuid_format] + - attrs[uuid_format] + - function from self named format('hdl'= common[HDL]) - skip values: + forbidden values: - 'None' - '' @@ -3948,21 +3944,23 @@ Project settings Convention used for the file. - fatal: False - - default values: common[convention_str] + values: + + - attrs[convention_str] + - common[convention_str] num type: 'string' synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. + Frequency at which the synchronisation between buffer and filesystem is done. - fatal: False - - default values: internal[synchronisation_frequency] + values: + + - attrs[synchronisation_frequency] + - internal[synchronisation_frequency] - skip values: + forbidden values: - 'None' - '' @@ -3976,9 +3974,10 @@ Project settings Activity id associated with the simulation. - fatal: False - - default values: common[activity_id] + values: + + - attrs[activity_id] + - common[activity_id] num type: 'string' @@ -3986,11 +3985,12 @@ Project settings Contact email. - fatal: False - - default values: common[contact] + values: + + - attrs[contact] + - common[contact] - skip values: + forbidden values: - 'None' - '' @@ -4002,9 +4002,10 @@ Project settings Version of the Data Request used. - fatal: False - - default values: common[data_specs_version] + values: + + - attrs[data_specs_version] + - common[data_specs_version] num type: 'string' @@ -4012,9 +4013,10 @@ Project settings Version of dr2xml used. - fatal: False - - default values: common[dr2xml_version] + values: + + - attrs[dr2xml_version] + - common[dr2xml_version] num type: 'string' @@ -4024,9 +4026,10 @@ Project settings output key: 'experiment_id' - fatal: False - - default values: common[expid_in_filename] + values: + + - attrs[expid_in_filename] + - common[expid_in_filename] num type: 'string' @@ -4034,11 +4037,12 @@ Project settings External variables associated with the file. - fatal: False - - default values: variable.cell_measuresbuild_external_variables() + values: + + - attrs[external_variables] + - function from functions_file named build_external_variables('cell_measures'= common_tag[variable][cell_measures]) - skip values: '' + forbidden values: '' num type: 'string' @@ -4046,9 +4050,10 @@ Project settings Frequency associated with the file. - fatal: False - - default values: variable.frequency + values: + + - attrs[frequency] + - common_tag[variable][frequency] num type: 'string' @@ -4056,9 +4061,9 @@ Project settings Id of the grid used in the file. - fatal: False - - default values: [] + values: + + - attrs[grid] num type: 'string' @@ -4066,9 +4071,9 @@ Project settings Label of the grid used in the file. - fatal: False - - default values: [] + values: + + - attrs[grid_label] num type: 'string' @@ -4076,9 +4081,9 @@ Project settings Nominal resolution of the grid used in the file. - fatal: False - - default values: [] + values: + + - attrs[nominal_resolution] num type: 'string' @@ -4086,97 +4091,12 @@ Project settings Comment associated with the file. - fatal: False - - default values: [] - - skip values: '' - - cases: - Case: - - conditions: - Condition: - - check value: variable.comments - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}{}'.format(common[comment_lab], common[comment_sim], variable.comments) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}'.format(common[comment_lab], common[comment_sim]) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_sim] - - Case: - - conditions: - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_lab] - + values: + + - attrs[comment] + - function from self named format('var'= , , Condition:, , value to check: common_tag[variable][comments], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common_tag[variable][comments], , 'lset'= , , Condition:, , value to check: common[comment_lset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_lset], , 'sset'= , , Condition:, , value to check: common[comment_sset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_sset], ) + + forbidden values: '' num type: 'string' @@ -4184,9 +4104,10 @@ Project settings History associated with the file. - fatal: False - - default values: common[history] + values: + + - attrs[history] + - common[history] num type: 'string' @@ -4198,7 +4119,10 @@ Project settings fatal: True - default values: internal[institution_id] + values: + + - attrs[institution_id] + - init[institution_id] num type: 'string' @@ -4206,9 +4130,10 @@ Project settings Dictionary which contains, for each context, the associated CORDEX domain. - fatal: False - - default values: common[CORDEX_domain] + values: + + - attrs[CORDEX_domain] + - common[CORDEX_domain] num type: 'string' @@ -4218,7 +4143,10 @@ Project settings fatal: True - default values: common[driving_model_id] + values: + + - attrs[driving_model_id] + - common[driving_model_id] num type: 'string' @@ -4228,7 +4156,10 @@ Project settings fatal: True - default values: common[driving_model_ensemble_member] + values: + + - attrs[driving_model_ensemble_member] + - common[driving_model_ensemble_member] num type: 'string' @@ -4238,7 +4169,10 @@ Project settings fatal: True - default values: common[driving_experiment_name] + values: + + - attrs[driving_experiment_name] + - common[driving_experiment_name] num type: 'string' @@ -4248,7 +4182,10 @@ Project settings fatal: True - default values: common[driving_experiment] + values: + + - attrs[driving_experiment] + - common[driving_experiment] num type: 'string' @@ -4256,78 +4193,84 @@ Project settings Longitude of central meridian of the Lambert conformal projection. - fatal: False - - default values: common[Lambert_conformal_longitude_of_central_meridian] - - skip values: + values: + + - Condition: + - + - value to check: internal[context] + - + - check to perform: 'eq' + - + - reference values: 'surfex' + - + - values: + - + - - attrs[Lambert_conformal_longitude_of_central_meridian] + - - common[Lambert_conformal_longitude_of_central_meridian] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[context] - - check to do: 'eq' - - reference values: 'surfex' - - num type: 'string' Lambert_conformal_standard_parallel Standard parallel of the Lambert conformal projection. - fatal: False - - default values: common[Lambert_conformal_standard_parallel] - - skip values: + values: + + - Condition: + - + - value to check: internal[context] + - + - check to perform: 'eq' + - + - reference values: 'surfex' + - + - values: + - + - - attrs[Lambert_conformal_standard_parallel] + - - common[Lambert_conformal_standard_parallel] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[context] - - check to do: 'eq' - - reference values: 'surfex' - - num type: 'string' Lambert_conformal_latitude_of_projection_origin Latitude of central meridian of the Lambert conformal projection. - fatal: False - - default values: common[Lambert_conformal_latitude_of_projection_origin] - - skip values: + values: + + - Condition: + - + - value to check: internal[context] + - + - check to perform: 'eq' + - + - reference values: 'surfex' + - + - values: + - + - - attrs[Lambert_conformal_latitude_of_projection_origin] + - - common[Lambert_conformal_latitude_of_projection_origin] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[context] - - check to do: 'eq' - - reference values: 'surfex' - - num type: 'string' institution @@ -4336,7 +4279,10 @@ Project settings fatal: True - default values: common[institution] + values: + + - attrs[institution] + - common[institution] num type: 'string' @@ -4344,23 +4290,25 @@ Project settings Parent experiment id associated with the simulation. - fatal: False - - default values: common[parent_experiment_id] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_experiment_id] + - - common[parent_experiment_id] + - num type: 'string' @@ -4368,27 +4316,27 @@ Project settings MIP associated with the parent experiment. - fatal: False - - default values: + values: - - common[parent_mip_era] - - common[mip_era] - - variable.mip_era - - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_mip_era] + - - common[parent_mip_era] + - - common[mip_era] + - - common_tag[variable][mip_era] + - num type: 'string' @@ -4396,23 +4344,25 @@ Project settings Activity id associated with the parent experiment. - fatal: False - - default values: common[parent_activity_id] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_activity_id] + - - common[parent_activity_id] + - num type: 'string' @@ -4420,26 +4370,26 @@ Project settings Model id of the parent experiment. - fatal: False - - default values: - - - common[parent_source_id] - - internal[source_id] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_source_id] + - - common[parent_source_id] + - - internal[source_id] + - num type: 'string' @@ -4447,26 +4397,26 @@ Project settings Time units of the parent experiment. - fatal: False - - default values: - - - common[parent_time_units] - - 'days since {}-01-01 00:00:00'.format(common[parent_time_ref_year]) - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_time_units] + - - common[parent_time_units] + - - 'days since {}-01-01 00:00:00'.format(common[parent_time_ref_year]) + - num type: 'string' @@ -4474,26 +4424,26 @@ Project settings Variant label of the parent experiment. - fatal: False - - default values: + values: - - common[parent_variant_label] - - common[variant_label] - - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_variant_label] + - - common[parent_variant_label] + - - common[variant_label] + - num type: 'string' @@ -4501,75 +4451,78 @@ Project settings Branch time of the simulation in the parent's one. - fatal: False - - default values: + values: - - compute_nb_days('year_ref'= common[parent_time_ref_year], 'year_branch'= common[branch_year_in_parent], 'month_branch'= common[branch_month_in_parent]) - - simulation[branch_time_in_parent] - - skip values: + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_time_in_parent] + - - function from functions_file named compute_nb_days('year_ref'= common[parent_time_ref_year], 'year_branch'= common[branch_year_in_parent], 'month_branch'= common[branch_month_in_parent]) + - - simulation[branch_time_in_parent] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - num type: 'double' branch_time_in_child Branch time of the simulation in the child's one. - fatal: False - - default values: + values: - - compute_nb_days('year_ref'= simulation[child_time_ref_year], 'year_branch'= simulation[branch_year_in_child]) - - simulation[branch_time_in_child] - - skip values: + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_time_in_child] + - - function from functions_file named compute_nb_days('year_ref'= simulation[child_time_ref_year], 'year_branch'= simulation[branch_year_in_child]) + - - simulation[branch_time_in_child] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - num type: 'double' product - Type of content of the file. + Id of the driving model. - fatal: False + fatal: True - default values: 'output' + values: + + - attrs[product] + - 'output' num type: 'string' @@ -4577,9 +4530,10 @@ Project settings Realization index associated with the simulation. - fatal: False - - default values: internal[realization_index] + values: + + - attrs[realization_index] + - internal[realization_index] num type: 'int' @@ -4587,9 +4541,9 @@ Project settings Realm associated with the file. - fatal: False - - default values: variable.modeling_realm() + values: + + - common_tag[variable][modeling_realm] formatted with function from self named join({}) num type: 'string' @@ -4597,9 +4551,10 @@ Project settings References associated with the simulation. - fatal: False - - default values: common[references] + values: + + - attrs[references] + - common[references] num type: 'string' @@ -4611,7 +4566,10 @@ Project settings fatal: True - default values: common[source] + values: + + - attrs[source] + - common[source] num type: 'string' @@ -4621,9 +4579,10 @@ Project settings output key: 'model_id' - fatal: False - - default values: internal[source_id] + values: + + - attrs[source_id] + - internal[source_id] num type: 'string' @@ -4631,9 +4590,9 @@ Project settings Id of the table associated with the file. - fatal: False - - default values: [] + values: + + - attrs[table_id] num type: 'string' @@ -4641,12 +4600,10 @@ Project settings Title of the file. - fatal: False - - default values: + values: - - '{} model output prepared for {} and {} / {} simulation'.format(internal[source_id], CMIP6, common[activity_id], simulation[expid_in_filename]) - - '{} model output prepared for {} / {} {}'.format(internal[source_id], CMIP6, common[activity_id], internal[experiment_id]) + - function from self named format('source'= internal[source_id], 'project'= 'CMIP6', 'activity'= common[activity_id], 'expid'= simulation[expid_in_filename]) + - function from self named format('source'= internal[source_id], 'project'= 'CMIP6', 'activity'= common[activity_id], 'expid'= internal[experiment_id]) num type: 'string' @@ -4654,9 +4611,10 @@ Project settings Id of the variable contained in the file. - fatal: False - - default values: variable.mipVarLabel + values: + + - attrs[variable_id] + - variable.mipVarLabel num type: 'string' @@ -4672,9 +4630,9 @@ Project settings Id of the grid. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4683,16 +4641,16 @@ Project settings XIOS grid_definition beacon interpolate_axis - XIOS interpolate_axis beacon + TODO Attributes: type Type of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4700,9 +4658,9 @@ Project settings Order of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4710,9 +4668,9 @@ Project settings Coordinate of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4725,9 +4683,9 @@ Project settings Type of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4735,9 +4693,9 @@ Project settings Order of the interpolation. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4745,9 +4703,9 @@ Project settings Should the interpolated domain be renormalized? - fatal: False - - default values: [] + values: + + - attrs[renormalize] num type: 'string' @@ -4755,9 +4713,9 @@ Project settings Mode used for the interpolation. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -4765,9 +4723,9 @@ Project settings Should interpolation weights be written? - fatal: False - - default values: [] + values: + + - attrs[write_weight] num type: 'string' @@ -4775,9 +4733,9 @@ Project settings Coordinate of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4790,9 +4748,9 @@ Project settings Id of the scalar. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4800,9 +4758,9 @@ Project settings Reference scalar. - fatal: False - - default values: [] + values: + + - attrs[scalar_ref] num type: 'string' @@ -4810,9 +4768,9 @@ Project settings Name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -4820,11 +4778,11 @@ Project settings Standard name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' @@ -4836,9 +4794,9 @@ Project settings Long name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -4846,11 +4804,11 @@ Project settings Label of the scalar. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -4862,21 +4820,9 @@ Project settings Precision of the scalar. - fatal: False - - default values: [] - - skip values: - - - '' - - 'None' - - None - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -4887,17 +4833,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' value Value of the scalar. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -4909,11 +4867,11 @@ Project settings Bounds of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -4925,11 +4883,11 @@ Project settings Bounds name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds_name] - skip values: + forbidden values: - '' - 'None' @@ -4941,11 +4899,11 @@ Project settings Axis type of the scalar. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -4957,11 +4915,11 @@ Project settings Orientation of the scalar. - fatal: False - - default values: [] + values: + + - attrs[positive] - skip values: + forbidden values: - '' - 'None' @@ -4973,11 +4931,11 @@ Project settings Unit of the scalar. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -5000,9 +4958,11 @@ Project settings Content of the variable - fatal: False + fatal: True - default values: [] + values: + + - attrs[name] num type: 'string' @@ -5010,9 +4970,11 @@ Project settings Encoding type of the variable's content. - fatal: False + fatal: True - default values: [] + values: + + - attrs[type] num type: 'string' @@ -5025,9 +4987,9 @@ Project settings Index of the zoomed axis. - fatal: False - - default values: [] + values: + + - attrs[index] num type: 'string' \ No newline at end of file diff --git a/sphinx/source/userguide/projects/basics.rst b/sphinx/source/userguide/projects/basics.rst index 72b0ef29..d80a9a70 100644 --- a/sphinx/source/userguide/projects/basics.rst +++ b/sphinx/source/userguide/projects/basics.rst @@ -1,6 +1,144 @@ Parameters available for project basics ======================================= +Init values +--------------- +.. glossary:: + :sorted: + + data_request_config + + Configuration file of the data request content to be used. + + values: + + - laboratory[data_request_config] + - '__package-root__/dr_interface/CMIP7_config' + + num type: 'string' + + data_request_content_version + + Version of the data request content to be used. + + values: + + - laboratory[data_request_content_version] + - 'latest_stable' + + num type: 'string' + + data_request_path + + Path where the data request API used is placed. + + values: + + - laboratory[data_request_path] + - None + + num type: 'string' + + data_request_used + + The Data Request infrastructure type which should be used. + + values: + + - laboratory[data_request_used] + - 'CMIP6' + + num type: 'string' + + institution_id + + Institution identifier. + + fatal: True + + values: + + - laboratory[institution_id] + + num type: 'string' + + laboratory_used + + File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. + + values: + + - laboratory[laboratory_used] + - None + + num type: 'string' + + project + + Project associated with the simulation. + + values: + + - laboratory[project] + - 'CMIP6' + + num type: 'string' + + project_settings + + Project settings definition file to be used. + + values: + + - laboratory[project_settings] + - init[project] + + num type: 'string' + + save_project_settings + + The path of the file where the complete project settings will be written, if needed. + + values: + + - laboratory[save_project_settings] + - None + + num type: 'string' + + vocabulary_config + + Configuration file of the vocabulary to be used. + + values: + + - laboratory[vocabulary_config] + - '__package-root__/vocabulary/vocabulary.json' + + num type: 'string' + + vocabulary_project + + The vocabulary project which should be used. + + values: + + - laboratory[vocabulary_project] formatted with function from self named lower({}) + - init[project] formatted with function from self named lower({}) + + num type: 'string' + + vocabulary_used + + The vocabulary infrastructure type which should be used. + + values: + + - laboratory[vocabulary_used] + - None + + num type: 'string' + Internal values --------------- .. glossary:: @@ -10,9 +148,7 @@ Internal values CFMIP has an elaborated requirement for defining subhr frequency; by default, dr2xml uses 1 time step. - fatal: False - - default values: + values: - laboratory[CFsubhr_frequency] - '1ts' @@ -23,9 +159,7 @@ Internal values DR01.00.21 does not include Gibraltar strait, which is requested by OMIP. Can include it, if model provides it as last value of array. - fatal: False - - default values: + values: - laboratory[add_Gibraltar] - False @@ -38,9 +172,9 @@ Internal values fatal: True - default values: + values: - - laboratory[additional_allowed_model_components][internal[source_id]] + - laboratory[additional_allowed_components][internal[source_id]] - [] num type: 'string' @@ -49,9 +183,7 @@ Internal values Some scenario experiment in DR 01.00.21 do not request tos on 1 degree grid, while other do. If you use grid_policy=adhoc and had not changed the mapping of function. grids.lab_adhoc_grid_policy to grids.CNRM_grid_policy, next setting can force any tos request to also produce tos on a 1 degree grid. - fatal: False - - default values: + values: - laboratory[adhoc_policy_do_add_1deg_grid_for_tos] - False @@ -62,9 +194,7 @@ Internal values Should we allow for duplicate vars: two vars with same frequency, shape and realm, which differ only by the table. In DR01.00.21, this actually applies to very few fields (ps-Aermon, tas-ImonAnt, areacellg-IfxAnt). - fatal: False - - default values: + values: - laboratory[allow_duplicates] - True @@ -77,7 +207,7 @@ Internal values fatal: True - default values: + values: - laboratory[allow_duplicates_in_same_table] - False @@ -88,9 +218,7 @@ Internal values DR has sn attributes for MIP variables. They can be real,CF-compliant, standard_names or pseudo_standard_names, i.e. not yet approved labels. Default is to use only CF ones. - fatal: False - - default values: + values: - laboratory[allow_pseudo_standard_names] - False @@ -101,9 +229,7 @@ Internal values When using select='no', Xios may enter an endless loop, which is solved if next setting is False. - fatal: False - - default values: + values: - laboratory[allow_tos_3hr_1deg] - True @@ -114,19 +240,17 @@ Internal values In some instances, the experiment start year is not explicit or is doubtful in DR. See file doc/some_experiments_starty_in_DR01.00.21. You should then specify it, using next setting in order that requestItems analysis work in all cases. In some other cases, DR requestItems which apply to the experiment form its start does not cover its whole duration and have a wrong duration (computed based on a wrong start year); They necessitate to fix the start year. - fatal: False - - default values: simulation[branch_year_in_child] + values: + + - simulation[branch_year_in_child] num type: 'string' branching - Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. - - fatal: False + Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. - default values: + values: - laboratory[branching][internal[source_id]] - {} @@ -137,9 +261,7 @@ Internal values If the CMIP6 Controlled Vocabulary doesn't allow all the components you activate, you can set next toggle to True - fatal: False - - default values: + values: - laboratory[bypass_CV_components] - False @@ -150,9 +272,7 @@ Internal values Estimate of number of bytes per floating value, given the chosen :term:`compression_level`. - fatal: False - - default values: + values: - laboratory[bytes_per_float] - 2 @@ -165,7 +285,9 @@ Internal values fatal: True - default values: simulation[configuration] + values: + + - simulation[configuration] num type: 'string' @@ -175,98 +297,68 @@ Internal values fatal: True - default values: dict[context] - - num type: 'string' - - data_request_config - - Configuration file of the data request content to be used - - fatal: False - - default values: - - - laboratory[data_request_config] - - '/home/rigoudyg/dev/DR2XML/dr2xml_source/dr2xml/dr_interface/CMIP7_config' - - num type: 'string' - - data_request_content_version - - Version of the data request content to be used - - fatal: False - - default values: + values: - - laboratory[data_request_content_version] - - 'latest_stable' + - dict[context] num type: 'string' - data_request_path - - Path where the data request API used is placed. + debug_parsing - fatal: False + In order to identify which xml files generates a problem, you can use this flag. - default values: + values: - - laboratory[data_request_path] - - None + - laboratory[debug_parsing] + - False num type: 'string' - data_request_used - - The Data Request infrastructure type which should be used. + dr2xml_manages_enddate - fatal: False + A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. - default values: + values: - - laboratory[data_request_used] - - 'CMIP6' + - laboratory[dr2xml_manages_enddate] + - True num type: 'string' - debug_parsing - - In order to identify which xml files generates a problem, you can use this flag. + end_year - fatal: False + If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value - default values: + values: - - laboratory[debug_parsing] + - simulation[end_year] - False num type: 'string' - dr2xml_manages_enddate - - A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. + excluded_expgroups_lset - fatal: True + List of the experiments groups that will be excluded from outputs from laboratory settings. - default values: + values: - - laboratory[dr2xml_manages_enddate] - - True + - laboratory[excluded_expgroups] + - [] - num type: 'string' + target type: 'list' - end_year + num type: 'string' - If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value + excluded_expgroups_sset - fatal: False + List of the experiments groups that will be excluded from outputs from simulation settings. - default values: + values: - - simulation[end_year] - - False + - simulation[excluded_expgroups] + - [] + + target type: 'list' num type: 'string' @@ -274,169 +366,169 @@ Internal values List of the opportunities that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_opportunities_sset List of the opportunities that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_pairs_lset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_pairs_sset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_request_links List of links un data request that should not been followed (those request are not taken into account). - fatal: False - - default values: + values: - laboratory[excluded_request_links] - [] + target type: 'list' + num type: 'string' excluded_spshapes_lset The list of shapes that should be excluded (all variables in those shapes will be excluded from outputs). - fatal: False - - default values: + values: - laboratory[excluded_spshapes] - [] + target type: 'list' + num type: 'string' excluded_tables_lset List of the tables that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_tables_sset List of the tables that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_vargroups_lset List of the variables groups that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vargroups_sset List of the variables groups that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vars_lset List of CMOR variables to exclude from the result based on previous Data Request extraction from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vars] - [] + target type: 'list' + num type: 'string' excluded_vars_per_config A dictionary which keys are configurations and values the list of variables that must be excluded for each configuration. - fatal: False - - default values: + values: - laboratory[excluded_vars_per_config][internal[configuration]] - [] + target type: 'list' + num type: 'string' excluded_vars_sset List of CMOR variables to exclude from the result based on previous Data Request extraction from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vars] - [] + target type: 'list' + num type: 'string' experiment_for_requests @@ -445,7 +537,7 @@ Internal values fatal: True - default values: + values: - simulation[experiment_for_requests] - internal[experiment_id] @@ -454,11 +546,13 @@ Internal values experiment_id - Root experiment identifier. + Root experiment identifier fatal: True - default values: simulation[experiment_id] + values: + + - simulation[experiment_id] num type: 'string' @@ -466,9 +560,7 @@ Internal values If you want to produce the same variables set for all members, set this parameter to False. - fatal: False - - default values: + values: - simulation[filter_on_realization] - laboratory[filter_on_realization] @@ -480,9 +572,7 @@ Internal values You may provide some variables already horizontally remapped to some grid (i.e. Xios domain) in external files. The varname in file must match the referenced id in pingfile. Tested only for fixed fields. A dictionary with variable id as key and a dictionary as value: the key must be the grid id, the value a dictionary with the file for each resolution. - fatal: False - - default values: + values: - laboratory[fx_from_file] - [] @@ -495,7 +585,9 @@ Internal values fatal: True - default values: laboratory[grid_choice][internal[source_id]] + values: + + - laboratory[grid_choice][internal[source_id]] num type: 'string' @@ -505,7 +597,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_policy] - False @@ -518,7 +610,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_prefix] - internal[ping_variables_prefix] @@ -527,11 +619,13 @@ Internal values grids - Grids : per model resolution and per context :- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)- Xios id for the production grid (if it is not the native grid),- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)- resolution of the production grid (using CMIP6 conventions),- grid description + Grids : per model resolution and per context :\n- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)\n- Xios id for the production grid (if it is not the native grid)\n- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)\n- resolution of the production grid (using CMIP6 conventions)\n- grid description fatal: True - default values: laboratory[grids] + values: + + - laboratory[grids] num type: 'string' @@ -541,7 +635,7 @@ Internal values fatal: True - default values: + values: - laboratory[grids_dev] - {} @@ -552,9 +646,7 @@ Internal values Variables to be grouped in the same output file (provided additional conditions are filled). - fatal: False - - default values: + values: - simulation[grouped_vars_per_file] - laboratory[grouped_vars_per_file] @@ -562,143 +654,146 @@ Internal values num type: 'string' + included_expgroups + + List of experiments groups that will be processed (all others will not). + + values: + + - simulation[included_expgroups] + - internal[included_expgroups_lset] + + target type: 'list' + + num type: 'string' + + included_expgroups_lset + + List of experiments groups that will be processed (all others will not) from laboratory settings. + + values: + + - laboratory[included_expgroups] + - [] + + target type: 'list' + + num type: 'string' + included_opportunities List of opportunities that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_opportunities] - internal[included_opportunities_lset] + target type: 'list' + num type: 'string' included_opportunities_lset List of opportunities that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_opportunities] - [] + target type: 'list' + num type: 'string' included_request_links List of the request links that will be processed (all others will not). - fatal: False - - default values: + values: - laboratory[included_request_links] - [] + target type: 'list' + num type: 'string' included_tables List of tables that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_tables] - internal[included_tables_lset] + target type: 'list' + num type: 'string' included_tables_lset List of tables that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_tables] - [] + target type: 'list' + num type: 'string' included_vargroups List of variables groups that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_vargroups] - internal[included_vargroups_lset] + target type: 'list' + num type: 'string' included_vargroups_lset List of variables groups that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vargroups] - [] + target type: 'list' + num type: 'string' included_vars Variables to be considered from the Data Request (all others will not) - fatal: False - - default values: + values: - simulation[included_vars] - internal[included_vars_lset] + target type: 'list' + num type: 'string' included_vars_lset Variables to be considered from the Data Request (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vars] - [] - num type: 'string' - - institution_id - - Institution identifier. - - fatal: True - - default values: laboratory[institution_id] - - num type: 'string' - - laboratory_used - - File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. - - fatal: False - - default values: - - - laboratory[laboratory_used] - - None + target type: 'list' num type: 'string' @@ -706,9 +801,7 @@ Internal values Full path to the file which contains the list of home variables to be taken into account, in addition to the Data Request. - fatal: False - - default values: + values: - simulation[listof_home_vars] - laboratory[listof_home_vars] @@ -720,9 +813,7 @@ Internal values The maximum size of generated files in number of floating values. - fatal: False - - default values: + values: - laboratory[max_file_size_in_floats] - 500000000.0 @@ -735,7 +826,7 @@ Internal values fatal: True - default values: + values: - simulation[max_priority] - internal[max_priority_lset] @@ -748,7 +839,9 @@ Internal values fatal: True - default values: laboratory[max_priority] + values: + + - laboratory[max_priority] num type: 'string' @@ -756,9 +849,7 @@ Internal values The maximum number of years that should be putted in a single file. - fatal: True - - default values: + values: - simulation[max_split_freq] - laboratory[max_split_freq] @@ -772,7 +863,9 @@ Internal values fatal: True - default values: laboratory[mips] + values: + + - laboratory[mips] num type: 'string' @@ -782,7 +875,7 @@ Internal values fatal: True - default values: + values: - laboratory[nemo_sources_management_policy_master_of_the_world] - False @@ -791,11 +884,9 @@ Internal values non_standard_attributes - You may add a series of NetCDF attributes in all files for this simulation - - fatal: False + You may add a series of NetCDF attributes in all files for this simulation. - default values: + values: - laboratory[non_standard_attributes] - {} @@ -806,9 +897,7 @@ Internal values If your model has some axis which does not have all its attributes as in DR, and you want dr2xml to fix that it, give here the correspondence from model axis id to DR dim/grid id. For label dimensions you should provide the list of labels, ordered as in your model, as second element of a pair. Label-type axes will be processed even if not quoted. Scalar dimensions are not concerned by this feature. A dictionary with (axis_id, axis_correct_id) or (axis_id, tuple of labels) as key, values. - fatal: False - - default values: + values: - laboratory[non_standard_axes] - {} @@ -819,9 +908,7 @@ Internal values Name of the orography field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[orography_field_name] - 'orog' @@ -830,11 +917,13 @@ Internal values orphan_variables - A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context) + A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context). fatal: True - default values: laboratory[orphan_variables] + values: + + - laboratory[orphan_variables] num type: 'string' @@ -842,9 +931,7 @@ Internal values Full path of the directory which contains extra tables. - fatal: False - - default values: + values: - simulation[path_extra_tables] - laboratory[path_extra_tables] @@ -856,9 +943,7 @@ Internal values The path of the directory which, at run time, contains the root XML file (iodef.xml). - fatal: False - - default values: + values: - laboratory[path_to_parse] - './' @@ -869,9 +954,7 @@ Internal values A dictionary containing, for each perso or dev variables with a XY-perso shape, and for each vertical coordinate associated, the main attributes of the dimension. - fatal: False - - default values: + values: - simulation[perso_sdims_description] - {} @@ -884,7 +967,9 @@ Internal values fatal: True - default values: laboratory[ping_variables_prefix] + values: + + - laboratory[ping_variables_prefix] num type: 'string' @@ -892,9 +977,9 @@ Internal values Name of the orography field name to be used to compute height over orog fields prefixed with :term:`ping_variable_prefix`. - fatal: False - - default values: '{}{}'.format(internal[ping_variables_prefix], internal[orography_field_name]) + values: + + - function from self named format('prefix'= internal[ping_variables_prefix], 'variable'= internal[orography_field_name]) num type: 'string' @@ -902,9 +987,7 @@ Internal values For an extended printout of selected CMOR variables, grouped by variable label. - fatal: False - - default values: + values: - laboratory[print_stats_per_var_label] - False @@ -915,48 +998,18 @@ Internal values If the value is a list, only the file/field variables listed here will be put in output files. If boolean, tell if the file/field variables should be put in output files. - fatal: False - - default values: + values: - laboratory[print_variables] - True num type: 'string' - project - - Project associated with the simulation. - - fatal: False - - default values: - - - laboratory[project] - - 'CMIP6' - - num type: 'string' - - project_settings - - Project settings definition file to be used. - - fatal: False - - default values: - - - laboratory[project_settings] - - internal[project] - - num type: 'string' - realization_index Realization number. - fatal: False - - default values: + values: - simulation[realization_index] - '1' @@ -965,11 +1018,13 @@ Internal values realms_per_context - A dictionary which keys are context names and values the lists of realms associated with each context + A dictionary which keys are context names and values the lists of realms associated with each context. fatal: True - default values: laboratory[realms_per_context][internal[context]] + values: + + - laboratory[realms_per_context][internal[context]] num type: 'string' @@ -979,7 +1034,7 @@ Internal values fatal: True - default values: + values: - laboratory[required_model_components][internal[source_id]] - [] @@ -992,20 +1047,10 @@ Internal values fatal: True - default values: laboratory[sampling_timestep] - - num type: 'string' - - save_project_settings - - The path of the file where the complete project settings will be written, if needed. - - fatal: False - - default values: + values: - - laboratory[save_project_settings] - - None + - laboratory[sampling_timestep] + - 2 num type: 'string' @@ -1013,9 +1058,9 @@ Internal values List of the sectors to be considered. - fatal: False - - default values: laboratory[sectors] + values: + + - laboratory[sectors] num type: 'string' @@ -1025,7 +1070,9 @@ Internal values fatal: True - default values: dict[select] + values: + + - dict[select] authorized values: @@ -1035,43 +1082,65 @@ Internal values num type: 'string' + select_excluded_expgroups + + Excluded experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_expgroups_lset] + - + + num type: 'string' + select_excluded_opportunities Excluded opportunities for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_opportunities_lset]', 'internal[excluded_opportunities_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_opportunities_lset] + - num type: 'string' @@ -1081,37 +1150,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_pairs_lset]', 'internal[excluded_pairs_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_pairs_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_pairs_lset] + - num type: 'string' @@ -1121,37 +1181,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[excluded_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[excluded_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1161,37 +1212,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_tables_lset]', 'internal[excluded_tables_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_tables_lset] + - num type: 'string' @@ -1201,37 +1243,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vargroups_lset]', 'internal[excluded_vargroups_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vargroups_lset] + - num type: 'string' @@ -1241,37 +1274,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vars_lset]', 'internal[excluded_vars_sset]', 'internal[excluded_vars_per_config]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vars_lset] + - num type: 'string' @@ -1281,37 +1305,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[grid_choice] - - Case: + values: - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: 'LR' - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[grid_choice] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: 'LR' + - + + num type: 'string' + + select_included_expgroups + + Included experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_expgroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_expgroups_lset] + - num type: 'string' @@ -1321,37 +1367,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_opportunities] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_opportunities] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_opportunities_lset] + - num type: 'string' @@ -1361,37 +1398,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1401,77 +1429,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_tables] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_tables] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_tables_lset] + - num type: 'string' select_included_vargroups - Included variables groups for variable selection. + Included variable groups for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vargroups] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vargroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vargroups_lset] + - num type: 'string' @@ -1481,37 +1491,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vars] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vars] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vars_lset] + - num type: 'string' @@ -1521,37 +1522,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[max_priority] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[max_priority_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[max_priority] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[max_priority_lset] + - num type: 'string' @@ -1561,37 +1553,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[mips][internal[select_grid_choice]]sort_mips() - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[mips]sort_mips() - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: function from functions_file named sort_mips('mips'= internal[mips][internal[select_grid_choice]]) + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: function from functions_file named sort_mips('mips'= internal[mips]) + - num type: 'string' @@ -1601,40 +1584,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'on_expt_and_year' - - 'on_expt' - - - value: True - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'no' - - - value: False - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt_and_year' + - - 'on_expt' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'no' + - + - values: False + - num type: 'string' @@ -1644,40 +1618,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'on_expt_and_year' - - - value: internal[year] - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'no' - - 'on_expt' - - - value: None - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'on_expt_and_year' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt' + - - 'no' + - + - values: False + - num type: 'string' @@ -1687,37 +1652,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[sizes] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[sizes] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1727,47 +1683,38 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[tierMax] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[tierMax_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[tierMax] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[tierMax_lset] + - num type: 'string' simple_domain_grid_regexp - If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: 1) it must be a grid which has only a domain 2) the domain name must be extractable from the grid_id using a regexp and a group number Example: using a pattern that returns full id except for a '_grid' suffix - - fatal: False + If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: \n1) it must be a grid which has only a domain \n2) the domain name must be extractable from the grid_id using a regexp and a group number \nExample: using a pattern that returns full id except for a '_grid' suffix - default values: laboratory[simple_domain_grid_regexp] + values: + + - laboratory[simple_domain_grid_regexp] num type: 'string' @@ -1777,7 +1724,9 @@ Internal values fatal: True - default values: laboratory[sizes][internal[grid_choice]]format_sizes() + values: + + - function from functions_file named format_sizes('sizes'= laboratory[sizes][internal[grid_choice]]) num type: 'string' @@ -1787,7 +1736,7 @@ Internal values fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][0] - simulation[source_id] @@ -1796,11 +1745,11 @@ Internal values source_type - If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote "AGCM AER". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit + If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote \"AGCM AER\". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][1] - simulation[source_type] @@ -1812,9 +1761,7 @@ Internal values This variable is used when some variables are computed with a period which is not the basic timestep. A dictionary which keys are non standard timestep and values the list of variables which are computed at this timestep. - fatal: False - - default values: + values: - laboratory[special_timestep_vars] - [] @@ -1825,9 +1772,7 @@ Internal values Path to the split frequencies file to be used. - fatal: False - - default values: + values: - simulation[split_frequencies] - laboratory[split_frequencies] @@ -1837,11 +1782,13 @@ Internal values synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. + Frequency at which the synchronisation between buffer and filesystem is done. - fatal: False - - default values: [] + values: + + - simulation[synchronisation_frequency] + - laboratory[synchronisation_frequency] + - None num type: 'string' @@ -1851,7 +1798,7 @@ Internal values fatal: True - default values: + values: - simulation[tierMax] - internal[tierMax_lset] @@ -1864,7 +1811,9 @@ Internal values fatal: True - default values: laboratory[tierMax] + values: + + - laboratory[tierMax] num type: 'string' @@ -1874,7 +1823,7 @@ Internal values fatal: True - default values: + values: - laboratory[too_long_periods] - [] @@ -1885,9 +1834,7 @@ Internal values Should xml output files use the `@` symbol for definitions for instant variables? - fatal: False - - default values: + values: - laboratory[useAtForInstant] - False @@ -1900,7 +1847,7 @@ Internal values fatal: True - default values: + values: - laboratory[use_cmorvar_label_in_filename] - False @@ -1911,9 +1858,7 @@ Internal values Say if you want to use XIOS union/zoom axis to optimize vertical interpolation requested by the DR. - fatal: False - - default values: + values: - laboratory[use_union_zoom] - False @@ -1924,9 +1869,7 @@ Internal values Operation done for vertical interpolation. - fatal: False - - default values: + values: - laboratory[vertical_interpolation_operation] - 'instant' @@ -1937,9 +1880,9 @@ Internal values Time frequency of vertical interpolation. - fatal: False - - default values: laboratory[vertical_interpolation_sample_freq] + values: + + - laboratory[vertical_interpolation_sample_freq] num type: 'string' @@ -1947,9 +1890,7 @@ Internal values Version of XIOS used. - fatal: False - - default values: + values: - laboratory[xios_version] - 2 @@ -1962,7 +1903,9 @@ Internal values fatal: True - default values: dict[year] + values: + + - dict[year] num type: 'string' @@ -1970,9 +1913,7 @@ Internal values Name of the geopotential height field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[zg_field_name] - 'zg' @@ -1988,9 +1929,7 @@ Common values HDL associated with the project. - fatal: False - - default values: + values: - simulation[HDL] - laboratory[HDL] @@ -2001,9 +1940,7 @@ Common values MIP(s) name(s). - fatal: False - - default values: + values: - simulation[activity_id] - laboratory[activity_id] @@ -2014,9 +1951,7 @@ Common values Branching procedure. - fatal: False - - default values: + values: - simulation[branch_method] - 'standard' @@ -2027,9 +1962,7 @@ Common values Branch month in parent simulation with respect to its time axis. - fatal: False - - default values: + values: - simulation[branch_month_in_parent] - '1' @@ -2040,77 +1973,54 @@ Common values Branch year in parent simulation with respect to its time axis. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: simulation[branch_year_in_parent] + - + - check to perform: 'eq' + - + - reference values: internal[branching][internal[experiment_id]][1] + - + - values: simulation[branch_year_in_parent] + - + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'neq' + - + - reference values: internal[branching] + - + - values: simulation[branch_year_in_parent] + - + + forbidden values: - None - 'None' - '' - 'N/A' - cases: - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: internal[branching] - - Condition: - - check value: simulation[branch_year_in_parent] - - check to do: 'eq' - - reference values: internal[branching][internal[experiment_id]][1] - - - value: simulation[branch_year_in_parent] - - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'neq' - - reference values: internal[branching] - - - value: simulation[branch_year_in_parent] - - num type: 'string' - comment_lab + comment_lset A character string containing additional information about the models from laboratory settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - laboratory[comment] - '' num type: 'string' - comment_sim + comment_sset A character string containing additional information about the models from simulation settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - simulation[comment] - '' @@ -2119,11 +2029,9 @@ Common values compression_level - The compression level to be applied to NetCDF output files. - - fatal: False + The compression level to be applied to NetCDF output files." - default values: + values: - laboratory[compression_level] - '0' @@ -2134,9 +2042,7 @@ Common values Email address of the data producer. - fatal: False - - default values: + values: - simulation[contact] - laboratory[contact] @@ -2148,9 +2054,9 @@ Common values Version of the conventions used. - fatal: False - - default values: dr2xml.config.conventions + values: + + - config.conventions num type: 'string' @@ -2160,7 +2066,9 @@ Common values fatal: True - default values: data_request.get_version() + values: + + - function from data_request named get_version({}) num type: 'string' @@ -2168,9 +2076,9 @@ Common values Date range format to be used in file definition names. - fatal: False - - default values: '%start_date%-%end_date%' + values: + + - '%start_date%-%end_date%' num type: 'string' @@ -2178,12 +2086,10 @@ Common values Description of the simulation. - fatal: False - - default values: + values: - - simulation[description] - laboratory[description] + - simulation[description] num type: 'string' @@ -2191,9 +2097,9 @@ Common values Version of dr2xml used. - fatal: False - - default values: dr2xml.config.version + values: + + - config.version num type: 'string' @@ -2201,9 +2107,9 @@ Common values Name of the experiment. - fatal: False - - default values: simulation[experiment] + values: + + - simulation[experiment] num type: 'string' @@ -2211,9 +2117,7 @@ Common values Experiment label to use in file names and attribute. - fatal: False - - default values: + values: - simulation[expid_in_filename] - internal[experiment_id] @@ -2226,9 +2130,7 @@ Common values Index for variant of forcing. - fatal: False - - default values: + values: - simulation[forcing_index] - '1' @@ -2239,9 +2141,7 @@ Common values In case of replacement of previously produced data, description of any changes in the production chain. - fatal: False - - default values: + values: - simulation[history] - 'none' @@ -2252,9 +2152,9 @@ Common values Location of documentation. - fatal: False - - default values: laboratory[info_url] + values: + + - laboratory[info_url] num type: 'string' @@ -2262,9 +2162,7 @@ Common values Index for variant of initialization method. - fatal: False - - default values: + values: - simulation[initialization_index] - '1' @@ -2275,9 +2173,9 @@ Common values Full name of the institution of the data producer. - fatal: False - - default values: laboratory[institution] + values: + + - laboratory[institution] num type: 'string' @@ -2285,9 +2183,9 @@ Common values Name of the file which will contain the list of the patterns of perso and dev output file definition. - fatal: False - - default values: 'dr2xml_list_perso_and_dev_file_names' + values: + + - 'dr2xml_list_perso_and_dev_file_names' num type: 'string' @@ -2295,12 +2193,34 @@ Common values MIP associated with the simulation. - fatal: False + values: + + - common[mip_era_sset] + - common[mip_era_lset] + + forbidden values: None - default values: + num type: 'string' + + mip_era_lset + + MIP associated with the simulation from laboratory settings. + + values: - - simulation[mip_era] - laboratory[mip_era] + - None + + num type: 'string' + + mip_era_sset + + MIP associated with the simulation from simulation settings. + + values: + + - simulation[mip_era] + - None num type: 'string' @@ -2308,9 +2228,7 @@ Common values We can control the max output level set for all output files. - fatal: False - - default values: + values: - laboratory[output_level] - '10' @@ -2321,9 +2239,7 @@ Common values Description of sub-experiment. - fatal: False - - default values: + values: - simulation[parent_activity_id] - simulation[activity_id] @@ -2336,9 +2252,7 @@ Common values Parent experiment identifier. - fatal: False - - default values: + values: - simulation[parent_experiment_id] - laboratory[parent_experiment_id] @@ -2349,9 +2263,9 @@ Common values Parent’s associated MIP cycle. - fatal: False - - default values: simulation[parent_mip_era] + values: + + - simulation[parent_mip_era] num type: 'string' @@ -2359,9 +2273,9 @@ Common values Parent model identifier. - fatal: False - - default values: simulation[parent_source_id] + values: + + - simulation[parent_source_id] num type: 'string' @@ -2369,9 +2283,7 @@ Common values Reference year in parent simulation. - fatal: False - - default values: + values: - simulation[parent_time_ref_year] - '1850' @@ -2382,9 +2294,9 @@ Common values Time units used in parent. - fatal: False - - default values: simulation[parent_time_units] + values: + + - simulation[parent_time_units] num type: 'string' @@ -2392,9 +2304,9 @@ Common values Parent variant label. - fatal: False - - default values: simulation[parent_variant_label] + values: + + - simulation[parent_variant_label] num type: 'string' @@ -2402,9 +2314,7 @@ Common values Index for model physics variant. - fatal: False - - default values: + values: - simulation[physics_index] - '1' @@ -2417,7 +2327,9 @@ Common values fatal: True - default values: dict[prefix] + values: + + - dict[prefix] num type: 'string' @@ -2425,9 +2337,9 @@ Common values References associated with the simulation. - fatal: False - - default values: laboratory[references] + values: + + - laboratory[references] num type: 'string' @@ -2435,9 +2347,9 @@ Common values Name of the model. - fatal: False - - default values: laboratory[source] + values: + + - laboratory[source] num type: 'string' @@ -2445,9 +2357,7 @@ Common values Sub-experiment name. - fatal: False - - default values: + values: - simulation[sub_experiment] - 'none' @@ -2458,9 +2368,7 @@ Common values Sub-experiment identifier. - fatal: False - - default values: + values: - simulation[sub_experiment_id] - 'none' @@ -2471,11 +2379,11 @@ Common values It is recommended that some description be included to help identify major differences among variants, but care should be taken to record correct information. dr2xml will add in all cases: 'Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.' - fatal: False - - default values: simulation[variant_info] + values: + + - simulation[variant_info] - skip values: '' + forbidden values: '' num type: 'string' @@ -2493,19 +2401,19 @@ Project settings Id of the axis. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' positive - How is the axis oriented? + Hox is the axis oriented? - fatal: False - - default values: [] + values: + + - attrs[positive] num type: 'string' @@ -2513,9 +2421,9 @@ Project settings Number of values of this axis. - fatal: False - - default values: [] + values: + + - attrs[n_glo] num type: 'string' @@ -2523,11 +2431,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2539,9 +2447,9 @@ Project settings Reference axis. - fatal: False - - default values: [] + values: + + - attrs[axis_ref] num type: 'string' @@ -2549,9 +2457,9 @@ Project settings Name of this axis. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -2559,27 +2467,25 @@ Project settings Standard name of the axis. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' - None - authorized types: - num type: 'string' long_name Long name of this axis. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -2587,21 +2493,9 @@ Project settings Precision of the axis. - fatal: False - - default values: [] - - skip values: - - - '' - - 'None' - - None - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -2612,17 +2506,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' unit Unit of the axis. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -2634,11 +2540,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2650,11 +2556,11 @@ Project settings Bounds of the axis. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -2666,11 +2572,11 @@ Project settings Name dimension of the axis. - fatal: False - - default values: [] + values: + + - attrs[dim_name] - skip values: + forbidden values: - '' - 'None' @@ -2682,11 +2588,11 @@ Project settings Label of the axis. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -2698,11 +2604,11 @@ Project settings Axis type. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -2722,14 +2628,9 @@ Project settings Precision associated with the axis group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -2741,6 +2642,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' context @@ -2752,9 +2659,9 @@ Project settings Version of the Data Request used - fatal: False - - default values: '{} Data Request version {}'.format(internal[data_request_used], common[data_specs_version]) + values: + + - function from self named format('data_request_used'= init[data_request_used], 'data_specs_version'= common[data_specs_version]) num type: 'string' @@ -2762,9 +2669,9 @@ Project settings Version of dr2xml used - fatal: False - - default values: 'dr2xml version {}'.format(common[dr2xml_version]) + values: + + - function from self named format('dr2xml_version'= common[dr2xml_version]) num type: 'string' @@ -2772,9 +2679,9 @@ Project settings Laboratory settings used - fatal: False - - default values: 'Lab_and_model settings***newline***{}'.format(laboratory) + values: + + - function from self named format('laboratory'= laboratory) num type: 'string' @@ -2782,9 +2689,9 @@ Project settings Simulation_settings used - fatal: False - - default values: 'Simulation settings***newline***{}'.format(simulation) + values: + + - function from self named format('laboratory'= simulation) num type: 'string' @@ -2792,9 +2699,9 @@ Project settings Year used for the dr2xml's launch - fatal: False - - default values: 'Year processed {}'.format(internal[year]) + values: + + - function from self named format('year'= internal[year]) num type: 'string' @@ -2804,9 +2711,9 @@ Project settings Id of the context - fatal: False - - default values: internal[context] + values: + + - internal[context] num type: 'string' @@ -2819,29 +2726,29 @@ Project settings Id of the domain. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' ni_glo - Number of points on i dimension. + Number of point in i dimension. - fatal: False - - default values: [] + values: + + - attrs[ni_glo] num type: 'string' nj_glo - Number of points on j dimension. + Number of points in j dimension. - fatal: False - - default values: [] + values: + + - attrs[nj_glo] num type: 'string' @@ -2849,9 +2756,9 @@ Project settings Type of the domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -2859,9 +2766,9 @@ Project settings Precision of the domain. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -2869,9 +2776,9 @@ Project settings Latitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lat_name] num type: 'string' @@ -2879,9 +2786,9 @@ Project settings Longitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lon_name] num type: 'string' @@ -2889,9 +2796,9 @@ Project settings Name of the i dimension. - fatal: False - - default values: [] + values: + + - attrs[dim_i_name] num type: 'string' @@ -2899,9 +2806,9 @@ Project settings Reference domain. - fatal: False - - default values: [] + values: + + - attrs[domain_ref] num type: 'string' @@ -2917,14 +2824,9 @@ Project settings Precision associated with the domain group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -2936,6 +2838,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' duplicate_scalar @@ -2950,9 +2858,9 @@ Project settings Id of the field. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -2960,9 +2868,9 @@ Project settings Id of the reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -2970,9 +2878,9 @@ Project settings Name of the field. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -2980,9 +2888,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -2990,9 +2898,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -3000,9 +2908,9 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] num type: 'string' @@ -3010,9 +2918,9 @@ Project settings Long name of the field. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -3020,9 +2928,9 @@ Project settings Standard name of the field. - fatal: False - - default values: [] + values: + + - attrs[standard_name] num type: 'string' @@ -3030,9 +2938,9 @@ Project settings Unit of the field. - fatal: False - - default values: [] + values: + + - attrs[unit] num type: 'string' @@ -3040,9 +2948,9 @@ Project settings Operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3050,9 +2958,9 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: [] + values: + + - attrs[detect_missing_value] num type: 'string' @@ -3060,9 +2968,9 @@ Project settings Precision of the field. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -3078,9 +2986,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -3088,9 +2996,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -3098,14 +3006,28 @@ Project settings XIOS field beacon (only for output fields) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: field_ref Reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -3113,9 +3035,10 @@ Project settings Name of the field. - fatal: False - - default values: variable.mipVarLabel + values: + + - attrs[name] + - common_tag[variable][mipVarLabel] num type: 'string' @@ -3123,11 +3046,11 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] - skip values: + forbidden values: - '' - 'None' @@ -3139,11 +3062,11 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] - skip values: + forbidden values: - '' - 'None' @@ -3155,9 +3078,10 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: 'True' + values: + + - attrs[detect_missing_value] + - 'True' num type: 'string' @@ -3167,12 +3091,11 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '0' - - '1.e+20' + - attrs[default_value] + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3183,6 +3106,11 @@ Project settings - 'integer': '0' - 'int': '0' + authorized values: + + - '0' + - '1.e+20' + num type: 'string' prec @@ -3191,13 +3119,10 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3208,15 +3133,22 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' cell_methods Cell method associated with the field. - fatal: False - - default values: variable.cell_methods + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] num type: 'string' @@ -3224,9 +3156,10 @@ Project settings Mode associated with the cell method of the field. - fatal: False - - default values: 'overwrite' + values: + + - attrs[cell_methods_mode] + - 'overwrite' num type: 'string' @@ -3234,9 +3167,9 @@ Project settings Operation performed on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3244,11 +3177,11 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] - skip values: + forbidden values: - '' - 'None' @@ -3260,11 +3193,11 @@ Project settings Expression used to compute the field. - fatal: False - - default values: [] + values: + + - attrs[expr] - skip values: + forbidden values: - '' - 'None' @@ -3278,14 +3211,13 @@ Project settings Comment associated with the field. - fatal: False - - default values: + values: - - simulation[comments][variable.label] - - laboratory[comments][variable.label] + - attrs[comment] + - simulation[comments][common_tag[variable][label]] + - laboratory[comments][common_tag[variable][label]] - skip values: + forbidden values: - '' - 'None' @@ -3297,11 +3229,12 @@ Project settings Standard name of the field. - fatal: False - - default values: variable.stdname + values: + + - attrs[standard_name] + - common_tag[variable][stdname] - skip values: + forbidden values: - '' - 'None' @@ -3313,14 +3246,13 @@ Project settings Description associated with the field. - fatal: False - - default values: + values: - - variable.description + - attrs[description] + - common_tag[variable][description] - 'None' - skip values: '' + forbidden values: '' num type: 'string' @@ -3328,9 +3260,10 @@ Project settings Long name of the field. - fatal: False - - default values: variable.long_name + values: + + - attrs[long_name] + - common_tag[variable][long_name] num type: 'string' @@ -3338,11 +3271,12 @@ Project settings Way the field should be interpreted. - fatal: False - - default values: variable.positive + values: + + - attrs[positive] + - common_tag[variable][positive] - skip values: + forbidden values: - '' - 'None' @@ -3354,9 +3288,10 @@ Project settings History associated with the field. - fatal: False - - default values: common[history] + values: + + - attrs[history] + - common[history] num type: 'string' @@ -3364,11 +3299,12 @@ Project settings Units associated with the field. - fatal: False - - default values: variable.units + values: + + - attrs[units] + - common_tag[variable][units] - skip values: + forbidden values: - '' - 'None' @@ -3378,13 +3314,14 @@ Project settings cell_methods - Cell method associated with the field. - - fatal: False + Cell methods associated with the field. - default values: variable.cell_methods + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] - skip values: + forbidden values: - '' - 'None' @@ -3396,11 +3333,12 @@ Project settings Cell measures associated with the field. - fatal: False - - default values: variable.cell_measures + values: + + - attrs[cell_measures] + - common_tag[variable][cell_measures] - skip values: + forbidden values: - '' - 'None' @@ -3412,11 +3350,12 @@ Project settings Flag meanings associated with the field. - fatal: False - - default values: variable.flag_meanings + values: + + - attrs[flag_meanings] + - common_tag[variable][flag_meanings] - skip values: + forbidden values: - '' - 'None' @@ -3428,11 +3367,12 @@ Project settings Flag values associated with the field. - fatal: False - - default values: variable.flag_values + values: + + - attrs[flag_values] + - common_tag[variable][flag_values] - skip values: + forbidden values: - '' - 'None' @@ -3444,19 +3384,18 @@ Project settings Interval associated with the operation done on the field. - fatal: False - - default values: [] - - conditions: - Condition: + values: - check value: dict[operation] - - check to do: 'neq' - - reference values: 'once' - + - Condition: + - + - value to check: attrs[operation] + - + - check to perform: 'neq' + - + - reference values: 'once' + - + - values: attrs[interval_operation] + - num type: 'string' @@ -3469,9 +3408,9 @@ Project settings Id of the file. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -3479,9 +3418,9 @@ Project settings File name. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3489,9 +3428,9 @@ Project settings Mode in which the file will be open. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -3499,9 +3438,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3509,9 +3448,9 @@ Project settings Should the file be considered by XIOS. - fatal: False - - default values: [] + values: + + - attrs[enabled] num type: 'string' @@ -3524,9 +3463,10 @@ Project settings Type of file to be produced - fatal: False - - default values: 'one_file' + values: + + - attrs[type] + - 'one_file' num type: 'string' @@ -3534,9 +3474,10 @@ Project settings Should the file_definition be considered by XIOS - fatal: False - - default values: 'true' + values: + + - attrs[enabled] + - 'true' num type: 'string' @@ -3544,14 +3485,31 @@ Project settings XIOS file beacon (only for output files) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: id Id of the output file - fatal: False + fatal: True - default values: '{}_{}_{}'.format(variable.label, dict[table_id], dict[grid_label]) + values: + + - attrs[id] + - function from self named format('grid'= attrs[grid_label], 'table'= attrs[table_id], 'variable'= common_tag[variable][label]) num type: 'string' @@ -3559,9 +3517,11 @@ Project settings File name. - fatal: False + fatal: True - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3569,9 +3529,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3579,9 +3539,10 @@ Project settings Should the data be append to the file? - fatal: False - - default values: 'true' + values: + + - attrs[append] + - 'true' num type: 'string' @@ -3589,11 +3550,12 @@ Project settings Output level of the file. - fatal: False - - default values: common[output_level] + values: + + - attrs[output_level] + - common[output_level] - skip values: + forbidden values: - 'None' - '' @@ -3605,11 +3567,12 @@ Project settings Compression level of the file. - fatal: False - - default values: common[compression_level] + values: + + - attrs[compression_level] + - common[compression_level] - skip values: + forbidden values: - 'None' - '' @@ -3621,143 +3584,139 @@ Project settings Splitting frequency of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_freq_format Splitting frequency format of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq_format] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_start_offset Splitting start offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_start_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_end_offset Splitting end offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_end_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_last_date Splitting last date of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_last_date] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' time_units Time units of the file. - fatal: False - - default values: 'days' + values: + + - attrs[ time_units] + - 'days' num type: 'string' @@ -3765,9 +3724,10 @@ Project settings Time counter name. - fatal: False - - default values: 'time' + values: + + - attrs[time_counter_name] + - 'time' num type: 'string' @@ -3775,9 +3735,10 @@ Project settings Time counter type. - fatal: False - - default values: 'exclusive' + values: + + - attrs[time_counter] + - 'exclusive' num type: 'string' @@ -3785,9 +3746,10 @@ Project settings Time stamp name. - fatal: False - - default values: 'creation_date' + values: + + - attrs[time_stamp_name] + - 'creation_date' num type: 'string' @@ -3795,9 +3757,10 @@ Project settings Time stamp format. - fatal: False - - default values: '%Y-%m-%dT%H:%M:%SZ' + values: + + - attrs[time_stamp_format] + - '%Y-%m-%dT%H:%M:%SZ' num type: 'string' @@ -3805,9 +3768,10 @@ Project settings Unique identifier of the file name. - fatal: False - - default values: 'tracking_id' + values: + + - attrs[uuid_name] + - 'tracking_id' num type: 'string' @@ -3815,11 +3779,13 @@ Project settings Unique identifier of the file format. - fatal: False - - default values: 'hdl:{}/%uuid%'.format(common[HDL]) + values: + + - attrs[uuid_format] + - attrs[uuid_format] + - function from self named format('hdl'= common[HDL]) - skip values: + forbidden values: - 'None' - '' @@ -3831,21 +3797,23 @@ Project settings Convention used for the file. - fatal: False - - default values: common[convention_str] + values: + + - attrs[convention_str] + - common[convention_str] num type: 'string' synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. - - fatal: False + Frequency at which the synchronisation between buffer and filesystem is done. - default values: internal[synchronisation_frequency] + values: + + - attrs[synchronisation_frequency] + - internal[synchronisation_frequency] - skip values: + forbidden values: - 'None' - '' @@ -3859,9 +3827,10 @@ Project settings Activity id associated with the simulation. - fatal: False - - default values: common[activity_id] + values: + + - attrs[activity_id] + - common[activity_id] num type: 'string' @@ -3869,11 +3838,12 @@ Project settings Contact email. - fatal: False - - default values: common[contact] + values: + + - attrs[contact] + - common[contact] - skip values: + forbidden values: - 'None' - '' @@ -3885,9 +3855,10 @@ Project settings Version of the Data Request used. - fatal: False - - default values: common[data_specs_version] + values: + + - attrs[data_specs_version] + - common[data_specs_version] num type: 'string' @@ -3895,9 +3866,10 @@ Project settings Version of dr2xml used. - fatal: False - - default values: common[dr2xml_version] + values: + + - attrs[dr2xml_version] + - common[dr2xml_version] num type: 'string' @@ -3907,9 +3879,10 @@ Project settings output key: 'experiment_id' - fatal: False - - default values: common[expid_in_filename] + values: + + - attrs[expid_in_filename] + - common[expid_in_filename] num type: 'string' @@ -3917,26 +3890,28 @@ Project settings Description of the file. - fatal: False - - default values: common[description] - - skip values: + values: + + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[description] + - - common[description] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: common[expid_in_filename] - - num type: 'string' title_desc @@ -3945,63 +3920,68 @@ Project settings output key: 'title' - fatal: False - - default values: common[description] - - skip values: + values: + + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[description] + - - common[description] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: common[expid_in_filename] - - num type: 'string' experiment Experiment associated with the simulation. - fatal: False - - default values: common[experiment] - - skip values: + values: + + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[experiment] + - - common[experiment] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: common[expid_in_filename] - - num type: 'string' external_variables External variables associated with the file. - fatal: False - - default values: variable.cell_measuresbuild_external_variables() + values: + + - attrs[external_variables] + - function from functions_file named build_external_variables('cell_measures'= common_tag[variable][cell_measures]) - skip values: '' + forbidden values: '' num type: 'string' @@ -4009,9 +3989,10 @@ Project settings Forcing index associated with the simulation. - fatal: False - - default values: common[forcing_index] + values: + + - attrs[forcing_index] + - common[forcing_index] num type: 'int' @@ -4019,9 +4000,10 @@ Project settings Frequency associated with the file. - fatal: False - - default values: variable.frequency + values: + + - attrs[frequency] + - common_tag[variable][frequency] num type: 'string' @@ -4029,11 +4011,11 @@ Project settings Url to obtain further information associated with the simulation. - fatal: False - - default values: [] + values: + + - attrs[further_info_url] - skip values: + forbidden values: - '' - 'None' @@ -4045,9 +4027,9 @@ Project settings Id of the grid used in the file. - fatal: False - - default values: [] + values: + + - attrs[grid] num type: 'string' @@ -4055,9 +4037,9 @@ Project settings Label of the grid used in the file. - fatal: False - - default values: [] + values: + + - attrs[grid_label] num type: 'string' @@ -4065,9 +4047,9 @@ Project settings Nominal resolution of the grid used in the file. - fatal: False - - default values: [] + values: + + - attrs[nominal_resolution] num type: 'string' @@ -4075,97 +4057,12 @@ Project settings Comment associated with the file. - fatal: False - - default values: [] - - skip values: '' - - cases: - Case: - - conditions: - Condition: - - check value: variable.comments - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}{}'.format(common[comment_lab], common[comment_sim], variable.comments) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}'.format(common[comment_lab], common[comment_sim]) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_sim] - - Case: - - conditions: - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_lab] - + values: + + - attrs[comment] + - function from self named format('var'= , , Condition:, , value to check: common_tag[variable][comments], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common_tag[variable][comments], , 'lset'= , , Condition:, , value to check: common[comment_lset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_lset], , 'sset'= , , Condition:, , value to check: common[comment_sset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_sset], ) + + forbidden values: '' num type: 'string' @@ -4173,9 +4070,10 @@ Project settings History associated with the file. - fatal: False - - default values: common[history] + values: + + - attrs[history] + - common[history] num type: 'string' @@ -4183,9 +4081,10 @@ Project settings Initialization index associated with the simulation. - fatal: False - - default values: common[initialization_index] + values: + + - attrs[initialization_index] + - common[initialization_index] num type: 'int' @@ -4195,7 +4094,10 @@ Project settings fatal: True - default values: internal[institution_id] + values: + + - attrs[institution_id] + - init[institution_id] num type: 'string' @@ -4205,7 +4107,10 @@ Project settings fatal: True - default values: common[institution] + values: + + - attrs[institution] + - common[institution] num type: 'string' @@ -4213,9 +4118,9 @@ Project settings License associated with the file. - fatal: False - - default values: [] + values: + + - attrs[license] num type: 'string' @@ -4223,12 +4128,11 @@ Project settings MIP associated with the simulation. - fatal: False - - default values: + values: + - attrs[mip_era] - common[mip_era] - - variable.mip_era + - common_tag[variable][mip_era] num type: 'string' @@ -4236,23 +4140,25 @@ Project settings Parent experiment id associated with the simulation. - fatal: False - - default values: common[parent_experiment_id] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_experiment_id] + - - common[parent_experiment_id] + - num type: 'string' @@ -4260,27 +4166,27 @@ Project settings MIP associated with the parent experiment. - fatal: False - - default values: - - - common[parent_mip_era] - - common[mip_era] - - variable.mip_era - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_mip_era] + - - common[parent_mip_era] + - - common[mip_era] + - - common_tag[variable][mip_era] + - num type: 'string' @@ -4288,23 +4194,25 @@ Project settings Activity id associated with the parent experiment. - fatal: False - - default values: common[parent_activity_id] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_activity_id] + - - common[parent_activity_id] + - num type: 'string' @@ -4312,26 +4220,26 @@ Project settings Model id of the parent experiment. - fatal: False - - default values: + values: - - common[parent_source_id] - - internal[source_id] - - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_source_id] + - - common[parent_source_id] + - - internal[source_id] + - num type: 'string' @@ -4339,26 +4247,26 @@ Project settings Time units of the parent experiment. - fatal: False - - default values: + values: - - common[parent_time_units] - - 'days since {}-01-01 00:00:00'.format(common[parent_time_ref_year]) - - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_time_units] + - - common[parent_time_units] + - - 'days since {}-01-01 00:00:00'.format(common[parent_time_ref_year]) + - num type: 'string' @@ -4366,26 +4274,26 @@ Project settings Variant label of the parent experiment. - fatal: False - - default values: - - - common[parent_variant_label] - - common[variant_label] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_variant_label] + - - common[parent_variant_label] + - - common[variant_label] + - num type: 'string' @@ -4393,35 +4301,26 @@ Project settings Branch method of the simulation. - fatal: False - - default values: [] - - cases: - Case: + values: - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - - value: common[branch_method] - - Case: - - conditions: True - - value: 'no parent' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_method] + - - common[branch_method] + - + - 'no parent' num type: 'string' @@ -4429,75 +4328,76 @@ Project settings Branch time of the simulation in the parent's one. - fatal: False - - default values: + values: - - compute_nb_days('year_ref'= common[parent_time_ref_year], 'year_branch'= common[branch_year_in_parent], 'month_branch'= common[branch_month_in_parent]) - - simulation[branch_time_in_parent] - - skip values: + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_time_in_parent] + - - function from functions_file named compute_nb_days('year_ref'= common[parent_time_ref_year], 'year_branch'= common[branch_year_in_parent], 'month_branch'= common[branch_month_in_parent]) + - - simulation[branch_time_in_parent] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - num type: 'double' branch_time_in_child Branch time of the simulation in the child's one. - fatal: False - - default values: + values: - - compute_nb_days('year_ref'= simulation[child_time_ref_year], 'year_branch'= simulation[branch_year_in_child]) - - simulation[branch_time_in_child] - - skip values: + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_time_in_child] + - - function from functions_file named compute_nb_days('year_ref'= simulation[child_time_ref_year], 'year_branch'= simulation[branch_year_in_child]) + - - simulation[branch_time_in_child] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - num type: 'double' physics_index Physics index associated with the simulation. - fatal: False - - default values: common[physics_index] + values: + + - attrs[physics_index] + - common[physics_index] num type: 'int' @@ -4505,9 +4405,10 @@ Project settings Type of content of the file. - fatal: False - - default values: 'model-output' + values: + + - attrs[product] + - 'model-output' num type: 'string' @@ -4515,9 +4416,10 @@ Project settings Realization index associated with the simulation. - fatal: False - - default values: internal[realization_index] + values: + + - attrs[realization_index] + - internal[realization_index] num type: 'int' @@ -4525,9 +4427,9 @@ Project settings Realm associated with the file. - fatal: False - - default values: variable.modeling_realm() + values: + + - common_tag[variable][modeling_realm] formatted with function from self named join({}) num type: 'string' @@ -4535,9 +4437,10 @@ Project settings References associated with the simulation. - fatal: False - - default values: common[references] + values: + + - attrs[references] + - common[references] num type: 'string' @@ -4545,9 +4448,10 @@ Project settings Model associated with the simulation. - fatal: False - - default values: common[source] + values: + + - attrs[source] + - common[source] num type: 'string' @@ -4555,9 +4459,10 @@ Project settings Model id associated with the simulation. - fatal: False - - default values: internal[source_id] + values: + + - attrs[source_id] + - internal[source_id] num type: 'string' @@ -4565,9 +4470,10 @@ Project settings Model type associated with the simulation. - fatal: False - - default values: internal[source_type] + values: + + - attrs[source_type] + - internal[source_type] num type: 'string' @@ -4575,9 +4481,10 @@ Project settings Id of the sub experiment associated with the simulation. - fatal: False - - default values: common[sub_experiment_id] + values: + + - attrs[sub_experiment_id] + - common[sub_experiment_id] num type: 'string' @@ -4585,9 +4492,10 @@ Project settings Name of the sub experiment associated with the simulation. - fatal: False - - default values: common[sub_experiment] + values: + + - attrs[sub_experiment] + - common[sub_experiment] num type: 'string' @@ -4595,9 +4503,9 @@ Project settings Id of the table associated with the file. - fatal: False - - default values: [] + values: + + - attrs[table_id] num type: 'string' @@ -4605,12 +4513,11 @@ Project settings Title of the file. - fatal: False - - default values: + values: - - '{} model output prepared for {} and {} / {} simulation'.format(internal[source_id], internal[project], common[activity_id], simulation[expid_in_filename]) - - '{} model output prepared for {} / {} {}'.format(internal[source_id], internal[project], common[activity_id], internal[experiment_id]) + - attrs[title] + - function from self named format('activity_id'= common[activity_id] formatted with function from self named join({}), 'expid_in_filename'= simulation[expid_in_filename], 'project'= init[project], 'source_id'= internal[source_id]) + - function from self named format('activity_id'= common[activity_id] formatted with function from self named join({}), 'experiment_id'= simulation[experiment_id], 'project'= init[project], 'source_id'= internal[source_id]) num type: 'string' @@ -4618,9 +4525,9 @@ Project settings Id of the variable contained in the file. - fatal: False - - default values: [] + values: + + - attrs[variable_id] num type: 'string' @@ -4628,9 +4535,10 @@ Project settings Variant information associated with the simulation. - fatal: False - - default values: '. Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.'.format(common[variant_info]) + values: + + - attrs[variant_info] + - function from self named format('variant_info'= common[variant_info]) num type: 'string' @@ -4638,9 +4546,10 @@ Project settings Variant label associated with the simulation. - fatal: False - - default values: common[variant_label] + values: + + - common[variant_label] + - attrs[variant_label] num type: 'string' @@ -4656,9 +4565,9 @@ Project settings Id of the grid. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4667,16 +4576,16 @@ Project settings XIOS grid_definition beacon interpolate_axis - XIOS interpolate_axis beacon + TODO Attributes: type Type of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4684,9 +4593,9 @@ Project settings Order of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4694,9 +4603,9 @@ Project settings Coordinate of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4709,9 +4618,9 @@ Project settings Type of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4719,9 +4628,9 @@ Project settings Order of the interpolation. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4729,9 +4638,9 @@ Project settings Should the interpolated domain be renormalized? - fatal: False - - default values: [] + values: + + - attrs[renormalize] num type: 'string' @@ -4739,9 +4648,9 @@ Project settings Mode used for the interpolation. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -4749,9 +4658,9 @@ Project settings Should interpolation weights be written? - fatal: False - - default values: [] + values: + + - attrs[write_weight] num type: 'string' @@ -4759,9 +4668,9 @@ Project settings Coordinate of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4774,9 +4683,9 @@ Project settings Id of the scalar. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4784,9 +4693,9 @@ Project settings Reference scalar. - fatal: False - - default values: [] + values: + + - attrs[scalar_ref] num type: 'string' @@ -4794,9 +4703,9 @@ Project settings Name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -4804,11 +4713,11 @@ Project settings Standard name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' @@ -4820,9 +4729,9 @@ Project settings Long name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -4830,11 +4739,11 @@ Project settings Label of the scalar. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -4846,21 +4755,9 @@ Project settings Precision of the scalar. - fatal: False - - default values: [] - - skip values: - - - '' - - 'None' - - None - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -4871,17 +4768,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' value Value of the scalar. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -4893,11 +4802,11 @@ Project settings Bounds of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -4909,11 +4818,11 @@ Project settings Bounds name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds_name] - skip values: + forbidden values: - '' - 'None' @@ -4925,11 +4834,11 @@ Project settings Axis type of the scalar. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -4941,11 +4850,11 @@ Project settings Orientation of the scalar. - fatal: False - - default values: [] + values: + + - attrs[positive] - skip values: + forbidden values: - '' - 'None' @@ -4957,11 +4866,11 @@ Project settings Unit of the scalar. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -4984,9 +4893,11 @@ Project settings Content of the variable - fatal: False + fatal: True - default values: [] + values: + + - attrs[name] num type: 'string' @@ -4994,9 +4905,11 @@ Project settings Encoding type of the variable's content. - fatal: False + fatal: True - default values: [] + values: + + - attrs[type] num type: 'string' @@ -5009,9 +4922,9 @@ Project settings Index of the zoomed axis. - fatal: False - - default values: [] + values: + + - attrs[index] num type: 'string' \ No newline at end of file diff --git a/sphinx/source/userguide/projects/dr2xml.rst b/sphinx/source/userguide/projects/dr2xml.rst index 7342d52a..a8f1ac6b 100644 --- a/sphinx/source/userguide/projects/dr2xml.rst +++ b/sphinx/source/userguide/projects/dr2xml.rst @@ -1,6 +1,144 @@ Parameters available for project dr2xml ======================================= +Init values +--------------- +.. glossary:: + :sorted: + + data_request_config + + Configuration file of the data request content to be used. + + values: + + - laboratory[data_request_config] + - '__package-root__/dr_interface/CMIP7_config' + + num type: 'string' + + data_request_content_version + + Version of the data request content to be used. + + values: + + - laboratory[data_request_content_version] + - 'latest_stable' + + num type: 'string' + + data_request_path + + Path where the data request API used is placed. + + values: + + - laboratory[data_request_path] + - None + + num type: 'string' + + data_request_used + + The Data Request infrastructure type which should be used. + + values: + + - laboratory[data_request_used] + - 'CMIP6' + + num type: 'string' + + institution_id + + Institution identifier. + + fatal: True + + values: + + - laboratory[institution_id] + + num type: 'string' + + laboratory_used + + File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. + + values: + + - laboratory[laboratory_used] + - None + + num type: 'string' + + project + + Project associated with the simulation. + + values: + + - laboratory[project] + - 'CMIP6' + + num type: 'string' + + project_settings + + Project settings definition file to be used. + + values: + + - laboratory[project_settings] + - init[project] + + num type: 'string' + + save_project_settings + + The path of the file where the complete project settings will be written, if needed. + + values: + + - laboratory[save_project_settings] + - None + + num type: 'string' + + vocabulary_config + + Configuration file of the vocabulary to be used. + + values: + + - laboratory[vocabulary_config] + - '__package-root__/vocabulary/vocabulary.json' + + num type: 'string' + + vocabulary_project + + The vocabulary project which should be used. + + values: + + - laboratory[vocabulary_project] formatted with function from self named lower({}) + - init[project] formatted with function from self named lower({}) + + num type: 'string' + + vocabulary_used + + The vocabulary infrastructure type which should be used. + + values: + + - laboratory[vocabulary_used] + - None + + num type: 'string' + Internal values --------------- .. glossary:: @@ -10,9 +148,7 @@ Internal values CFMIP has an elaborated requirement for defining subhr frequency; by default, dr2xml uses 1 time step. - fatal: False - - default values: + values: - laboratory[CFsubhr_frequency] - '1ts' @@ -23,9 +159,7 @@ Internal values DR01.00.21 does not include Gibraltar strait, which is requested by OMIP. Can include it, if model provides it as last value of array. - fatal: False - - default values: + values: - laboratory[add_Gibraltar] - False @@ -38,9 +172,9 @@ Internal values fatal: True - default values: + values: - - laboratory[additional_allowed_model_components][internal[source_id]] + - laboratory[additional_allowed_components][internal[source_id]] - [] num type: 'string' @@ -49,9 +183,7 @@ Internal values Some scenario experiment in DR 01.00.21 do not request tos on 1 degree grid, while other do. If you use grid_policy=adhoc and had not changed the mapping of function. grids.lab_adhoc_grid_policy to grids.CNRM_grid_policy, next setting can force any tos request to also produce tos on a 1 degree grid. - fatal: False - - default values: + values: - laboratory[adhoc_policy_do_add_1deg_grid_for_tos] - False @@ -62,9 +194,7 @@ Internal values Should we allow for duplicate vars: two vars with same frequency, shape and realm, which differ only by the table. In DR01.00.21, this actually applies to very few fields (ps-Aermon, tas-ImonAnt, areacellg-IfxAnt). - fatal: False - - default values: + values: - laboratory[allow_duplicates] - True @@ -77,7 +207,7 @@ Internal values fatal: True - default values: + values: - laboratory[allow_duplicates_in_same_table] - False @@ -88,9 +218,7 @@ Internal values DR has sn attributes for MIP variables. They can be real,CF-compliant, standard_names or pseudo_standard_names, i.e. not yet approved labels. Default is to use only CF ones. - fatal: False - - default values: + values: - laboratory[allow_pseudo_standard_names] - False @@ -101,9 +229,7 @@ Internal values When using select='no', Xios may enter an endless loop, which is solved if next setting is False. - fatal: False - - default values: + values: - laboratory[allow_tos_3hr_1deg] - True @@ -114,19 +240,17 @@ Internal values In some instances, the experiment start year is not explicit or is doubtful in DR. See file doc/some_experiments_starty_in_DR01.00.21. You should then specify it, using next setting in order that requestItems analysis work in all cases. In some other cases, DR requestItems which apply to the experiment form its start does not cover its whole duration and have a wrong duration (computed based on a wrong start year); They necessitate to fix the start year. - fatal: False - - default values: simulation[branch_year_in_child] + values: + + - simulation[branch_year_in_child] num type: 'string' branching - Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. - - fatal: False + Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. - default values: + values: - laboratory[branching][internal[source_id]] - {} @@ -137,9 +261,7 @@ Internal values If the CMIP6 Controlled Vocabulary doesn't allow all the components you activate, you can set next toggle to True - fatal: False - - default values: + values: - laboratory[bypass_CV_components] - False @@ -150,9 +272,7 @@ Internal values Estimate of number of bytes per floating value, given the chosen :term:`compression_level`. - fatal: False - - default values: + values: - laboratory[bytes_per_float] - 2 @@ -165,7 +285,9 @@ Internal values fatal: True - default values: simulation[configuration] + values: + + - simulation[configuration] num type: 'string' @@ -175,98 +297,68 @@ Internal values fatal: True - default values: dict[context] - - num type: 'string' - - data_request_config - - Configuration file of the data request content to be used - - fatal: False - - default values: + values: - - laboratory[data_request_config] - - '/home/rigoudyg/dev/DR2XML/dr2xml_source/dr2xml/dr_interface/CMIP7_config' + - dict[context] num type: 'string' - data_request_content_version - - Version of the data request content to be used - - fatal: False - - default values: - - - laboratory[data_request_content_version] - - 'latest_stable' - - num type: 'string' - - data_request_path - - Path where the data request API used is placed. + debug_parsing - fatal: False + In order to identify which xml files generates a problem, you can use this flag. - default values: + values: - - laboratory[data_request_path] - - None + - laboratory[debug_parsing] + - False num type: 'string' - data_request_used - - The Data Request infrastructure type which should be used. + dr2xml_manages_enddate - fatal: False + A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. - default values: + values: - - laboratory[data_request_used] - - 'CMIP6' + - laboratory[dr2xml_manages_enddate] + - True num type: 'string' - debug_parsing - - In order to identify which xml files generates a problem, you can use this flag. + end_year - fatal: False + If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value - default values: + values: - - laboratory[debug_parsing] + - simulation[end_year] - False num type: 'string' - dr2xml_manages_enddate - - A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. + excluded_expgroups_lset - fatal: True + List of the experiments groups that will be excluded from outputs from laboratory settings. - default values: + values: - - laboratory[dr2xml_manages_enddate] - - True + - laboratory[excluded_expgroups] + - [] - num type: 'string' + target type: 'list' - end_year + num type: 'string' - If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value + excluded_expgroups_sset - fatal: False + List of the experiments groups that will be excluded from outputs from simulation settings. - default values: + values: - - simulation[end_year] - - False + - simulation[excluded_expgroups] + - [] + + target type: 'list' num type: 'string' @@ -274,169 +366,169 @@ Internal values List of the opportunities that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_opportunities_sset List of the opportunities that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_pairs_lset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_pairs_sset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_request_links List of links un data request that should not been followed (those request are not taken into account). - fatal: False - - default values: + values: - laboratory[excluded_request_links] - [] + target type: 'list' + num type: 'string' excluded_spshapes_lset The list of shapes that should be excluded (all variables in those shapes will be excluded from outputs). - fatal: False - - default values: + values: - laboratory[excluded_spshapes] - [] + target type: 'list' + num type: 'string' excluded_tables_lset List of the tables that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_tables_sset List of the tables that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_vargroups_lset List of the variables groups that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vargroups_sset List of the variables groups that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vars_lset List of CMOR variables to exclude from the result based on previous Data Request extraction from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vars] - [] + target type: 'list' + num type: 'string' excluded_vars_per_config A dictionary which keys are configurations and values the list of variables that must be excluded for each configuration. - fatal: False - - default values: + values: - laboratory[excluded_vars_per_config][internal[configuration]] - [] + target type: 'list' + num type: 'string' excluded_vars_sset List of CMOR variables to exclude from the result based on previous Data Request extraction from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vars] - [] + target type: 'list' + num type: 'string' experiment_for_requests @@ -445,7 +537,7 @@ Internal values fatal: True - default values: + values: - simulation[experiment_for_requests] - internal[experiment_id] @@ -454,11 +546,13 @@ Internal values experiment_id - Root experiment identifier. + Root experiment identifier fatal: True - default values: simulation[experiment_id] + values: + + - simulation[experiment_id] num type: 'string' @@ -466,9 +560,7 @@ Internal values If you want to produce the same variables set for all members, set this parameter to False. - fatal: False - - default values: + values: - simulation[filter_on_realization] - laboratory[filter_on_realization] @@ -480,9 +572,7 @@ Internal values You may provide some variables already horizontally remapped to some grid (i.e. Xios domain) in external files. The varname in file must match the referenced id in pingfile. Tested only for fixed fields. A dictionary with variable id as key and a dictionary as value: the key must be the grid id, the value a dictionary with the file for each resolution. - fatal: False - - default values: + values: - laboratory[fx_from_file] - [] @@ -495,7 +585,9 @@ Internal values fatal: True - default values: laboratory[grid_choice][internal[source_id]] + values: + + - laboratory[grid_choice][internal[source_id]] num type: 'string' @@ -505,7 +597,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_policy] - False @@ -518,7 +610,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_prefix] - internal[ping_variables_prefix] @@ -527,11 +619,13 @@ Internal values grids - Grids : per model resolution and per context :- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)- Xios id for the production grid (if it is not the native grid),- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)- resolution of the production grid (using CMIP6 conventions),- grid description + Grids : per model resolution and per context :\n- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)\n- Xios id for the production grid (if it is not the native grid)\n- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)\n- resolution of the production grid (using CMIP6 conventions)\n- grid description fatal: True - default values: laboratory[grids] + values: + + - laboratory[grids] num type: 'string' @@ -541,7 +635,7 @@ Internal values fatal: True - default values: + values: - laboratory[grids_dev] - {} @@ -552,9 +646,7 @@ Internal values Variables to be grouped in the same output file (provided additional conditions are filled). - fatal: False - - default values: + values: - simulation[grouped_vars_per_file] - laboratory[grouped_vars_per_file] @@ -562,143 +654,146 @@ Internal values num type: 'string' + included_expgroups + + List of experiments groups that will be processed (all others will not). + + values: + + - simulation[included_expgroups] + - internal[included_expgroups_lset] + + target type: 'list' + + num type: 'string' + + included_expgroups_lset + + List of experiments groups that will be processed (all others will not) from laboratory settings. + + values: + + - laboratory[included_expgroups] + - [] + + target type: 'list' + + num type: 'string' + included_opportunities List of opportunities that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_opportunities] - internal[included_opportunities_lset] + target type: 'list' + num type: 'string' included_opportunities_lset List of opportunities that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_opportunities] - [] + target type: 'list' + num type: 'string' included_request_links List of the request links that will be processed (all others will not). - fatal: False - - default values: + values: - laboratory[included_request_links] - [] + target type: 'list' + num type: 'string' included_tables List of tables that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_tables] - internal[included_tables_lset] + target type: 'list' + num type: 'string' included_tables_lset List of tables that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_tables] - [] + target type: 'list' + num type: 'string' included_vargroups List of variables groups that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_vargroups] - internal[included_vargroups_lset] + target type: 'list' + num type: 'string' included_vargroups_lset List of variables groups that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vargroups] - [] + target type: 'list' + num type: 'string' included_vars Variables to be considered from the Data Request (all others will not) - fatal: False - - default values: + values: - simulation[included_vars] - internal[included_vars_lset] + target type: 'list' + num type: 'string' included_vars_lset Variables to be considered from the Data Request (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vars] - [] - num type: 'string' - - institution_id - - Institution identifier. - - fatal: True - - default values: laboratory[institution_id] - - num type: 'string' - - laboratory_used - - File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. - - fatal: False - - default values: - - - laboratory[laboratory_used] - - None + target type: 'list' num type: 'string' @@ -706,9 +801,7 @@ Internal values Full path to the file which contains the list of home variables to be taken into account, in addition to the Data Request. - fatal: False - - default values: + values: - simulation[listof_home_vars] - laboratory[listof_home_vars] @@ -720,9 +813,7 @@ Internal values The maximum size of generated files in number of floating values. - fatal: False - - default values: + values: - laboratory[max_file_size_in_floats] - 500000000.0 @@ -735,7 +826,7 @@ Internal values fatal: True - default values: + values: - simulation[max_priority] - internal[max_priority_lset] @@ -748,7 +839,9 @@ Internal values fatal: True - default values: laboratory[max_priority] + values: + + - laboratory[max_priority] num type: 'string' @@ -756,9 +849,7 @@ Internal values The maximum number of years that should be putted in a single file. - fatal: True - - default values: + values: - simulation[max_split_freq] - laboratory[max_split_freq] @@ -772,7 +863,9 @@ Internal values fatal: True - default values: laboratory[mips] + values: + + - laboratory[mips] num type: 'string' @@ -782,7 +875,7 @@ Internal values fatal: True - default values: + values: - laboratory[nemo_sources_management_policy_master_of_the_world] - False @@ -791,11 +884,9 @@ Internal values non_standard_attributes - You may add a series of NetCDF attributes in all files for this simulation - - fatal: False + You may add a series of NetCDF attributes in all files for this simulation. - default values: + values: - laboratory[non_standard_attributes] - {} @@ -806,9 +897,7 @@ Internal values If your model has some axis which does not have all its attributes as in DR, and you want dr2xml to fix that it, give here the correspondence from model axis id to DR dim/grid id. For label dimensions you should provide the list of labels, ordered as in your model, as second element of a pair. Label-type axes will be processed even if not quoted. Scalar dimensions are not concerned by this feature. A dictionary with (axis_id, axis_correct_id) or (axis_id, tuple of labels) as key, values. - fatal: False - - default values: + values: - laboratory[non_standard_axes] - {} @@ -819,9 +908,7 @@ Internal values Name of the orography field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[orography_field_name] - 'orog' @@ -830,11 +917,13 @@ Internal values orphan_variables - A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context) + A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context). fatal: True - default values: laboratory[orphan_variables] + values: + + - laboratory[orphan_variables] num type: 'string' @@ -842,9 +931,7 @@ Internal values Full path of the directory which contains extra tables. - fatal: False - - default values: + values: - simulation[path_extra_tables] - laboratory[path_extra_tables] @@ -856,9 +943,7 @@ Internal values The path of the directory which, at run time, contains the root XML file (iodef.xml). - fatal: False - - default values: + values: - laboratory[path_to_parse] - './' @@ -869,9 +954,7 @@ Internal values A dictionary containing, for each perso or dev variables with a XY-perso shape, and for each vertical coordinate associated, the main attributes of the dimension. - fatal: False - - default values: + values: - simulation[perso_sdims_description] - {} @@ -884,7 +967,9 @@ Internal values fatal: True - default values: laboratory[ping_variables_prefix] + values: + + - laboratory[ping_variables_prefix] num type: 'string' @@ -892,9 +977,9 @@ Internal values Name of the orography field name to be used to compute height over orog fields prefixed with :term:`ping_variable_prefix`. - fatal: False - - default values: '{}{}'.format(internal[ping_variables_prefix], internal[orography_field_name]) + values: + + - function from self named format('prefix'= internal[ping_variables_prefix], 'variable'= internal[orography_field_name]) num type: 'string' @@ -902,9 +987,7 @@ Internal values For an extended printout of selected CMOR variables, grouped by variable label. - fatal: False - - default values: + values: - laboratory[print_stats_per_var_label] - False @@ -915,48 +998,18 @@ Internal values If the value is a list, only the file/field variables listed here will be put in output files. If boolean, tell if the file/field variables should be put in output files. - fatal: False - - default values: + values: - laboratory[print_variables] - True num type: 'string' - project - - Project associated with the simulation. - - fatal: False - - default values: - - - laboratory[project] - - 'CMIP6' - - num type: 'string' - - project_settings - - Project settings definition file to be used. - - fatal: False - - default values: - - - laboratory[project_settings] - - internal[project] - - num type: 'string' - realization_index Realization number. - fatal: False - - default values: + values: - simulation[realization_index] - '1' @@ -965,11 +1018,13 @@ Internal values realms_per_context - A dictionary which keys are context names and values the lists of realms associated with each context + A dictionary which keys are context names and values the lists of realms associated with each context. fatal: True - default values: laboratory[realms_per_context][internal[context]] + values: + + - laboratory[realms_per_context][internal[context]] num type: 'string' @@ -979,7 +1034,7 @@ Internal values fatal: True - default values: + values: - laboratory[required_model_components][internal[source_id]] - [] @@ -992,20 +1047,10 @@ Internal values fatal: True - default values: laboratory[sampling_timestep] - - num type: 'string' - - save_project_settings - - The path of the file where the complete project settings will be written, if needed. - - fatal: False - - default values: + values: - - laboratory[save_project_settings] - - None + - laboratory[sampling_timestep] + - 2 num type: 'string' @@ -1013,9 +1058,9 @@ Internal values List of the sectors to be considered. - fatal: False - - default values: laboratory[sectors] + values: + + - laboratory[sectors] num type: 'string' @@ -1025,7 +1070,9 @@ Internal values fatal: True - default values: dict[select] + values: + + - dict[select] authorized values: @@ -1035,43 +1082,65 @@ Internal values num type: 'string' + select_excluded_expgroups + + Excluded experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_expgroups_lset] + - + + num type: 'string' + select_excluded_opportunities Excluded opportunities for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_opportunities_lset]', 'internal[excluded_opportunities_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_opportunities_lset] + - num type: 'string' @@ -1081,37 +1150,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_pairs_lset]', 'internal[excluded_pairs_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_pairs_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_pairs_lset] + - num type: 'string' @@ -1121,37 +1181,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[excluded_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[excluded_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1161,37 +1212,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_tables_lset]', 'internal[excluded_tables_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_tables_lset] + - num type: 'string' @@ -1201,37 +1243,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vargroups_lset]', 'internal[excluded_vargroups_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vargroups_lset] + - num type: 'string' @@ -1241,37 +1274,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vars_lset]', 'internal[excluded_vars_sset]', 'internal[excluded_vars_per_config]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vars_lset] + - num type: 'string' @@ -1281,37 +1305,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: + values: - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[grid_choice] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: 'LR' - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[grid_choice] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: 'LR' + - + + num type: 'string' + + select_included_expgroups + + Included experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_expgroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_expgroups_lset] + - num type: 'string' @@ -1321,37 +1367,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_opportunities] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_opportunities] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_opportunities_lset] + - num type: 'string' @@ -1361,37 +1398,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1401,77 +1429,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_tables] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_tables] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_tables_lset] + - num type: 'string' select_included_vargroups - Included variables groups for variable selection. + Included variable groups for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vargroups] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vargroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vargroups_lset] + - num type: 'string' @@ -1481,37 +1491,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vars] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vars] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vars_lset] + - num type: 'string' @@ -1521,37 +1522,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[max_priority] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[max_priority_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[max_priority] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[max_priority_lset] + - num type: 'string' @@ -1561,37 +1553,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[mips][internal[select_grid_choice]]sort_mips() - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[mips]sort_mips() - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: function from functions_file named sort_mips('mips'= internal[mips][internal[select_grid_choice]]) + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: function from functions_file named sort_mips('mips'= internal[mips]) + - num type: 'string' @@ -1601,40 +1584,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'on_expt_and_year' - - 'on_expt' - - - value: True - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'no' - - - value: False - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt_and_year' + - - 'on_expt' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'no' + - + - values: False + - num type: 'string' @@ -1644,40 +1618,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'on_expt_and_year' - - - value: internal[year] - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'no' - - 'on_expt' - - - value: None - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'on_expt_and_year' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt' + - - 'no' + - + - values: False + - num type: 'string' @@ -1687,37 +1652,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[sizes] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[sizes] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1727,47 +1683,38 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[tierMax] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[tierMax_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[tierMax] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[tierMax_lset] + - num type: 'string' simple_domain_grid_regexp - If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: 1) it must be a grid which has only a domain 2) the domain name must be extractable from the grid_id using a regexp and a group number Example: using a pattern that returns full id except for a '_grid' suffix - - fatal: False + If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: \n1) it must be a grid which has only a domain \n2) the domain name must be extractable from the grid_id using a regexp and a group number \nExample: using a pattern that returns full id except for a '_grid' suffix - default values: laboratory[simple_domain_grid_regexp] + values: + + - laboratory[simple_domain_grid_regexp] num type: 'string' @@ -1777,7 +1724,9 @@ Internal values fatal: True - default values: laboratory[sizes][internal[grid_choice]]format_sizes() + values: + + - function from functions_file named format_sizes('sizes'= laboratory[sizes][internal[grid_choice]]) num type: 'string' @@ -1787,7 +1736,7 @@ Internal values fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][0] - simulation[source_id] @@ -1796,11 +1745,11 @@ Internal values source_type - If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote "AGCM AER". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit + If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote \"AGCM AER\". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit fatal: True - default values: + values: - laboratory[configurations][internal[configuration]][1] - simulation[source_type] @@ -1812,9 +1761,7 @@ Internal values This variable is used when some variables are computed with a period which is not the basic timestep. A dictionary which keys are non standard timestep and values the list of variables which are computed at this timestep. - fatal: False - - default values: + values: - laboratory[special_timestep_vars] - [] @@ -1825,9 +1772,7 @@ Internal values Path to the split frequencies file to be used. - fatal: False - - default values: + values: - simulation[split_frequencies] - laboratory[split_frequencies] @@ -1837,11 +1782,13 @@ Internal values synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. - - fatal: False + Frequency at which the synchronisation between buffer and filesystem is done. - default values: [] + values: + + - simulation[synchronisation_frequency] + - laboratory[synchronisation_frequency] + - None num type: 'string' @@ -1851,7 +1798,7 @@ Internal values fatal: True - default values: + values: - simulation[tierMax] - internal[tierMax_lset] @@ -1864,7 +1811,9 @@ Internal values fatal: True - default values: laboratory[tierMax] + values: + + - laboratory[tierMax] num type: 'string' @@ -1874,7 +1823,7 @@ Internal values fatal: True - default values: + values: - laboratory[too_long_periods] - [] @@ -1885,9 +1834,7 @@ Internal values Should xml output files use the `@` symbol for definitions for instant variables? - fatal: False - - default values: + values: - laboratory[useAtForInstant] - False @@ -1900,7 +1847,7 @@ Internal values fatal: True - default values: + values: - laboratory[use_cmorvar_label_in_filename] - False @@ -1911,9 +1858,7 @@ Internal values Say if you want to use XIOS union/zoom axis to optimize vertical interpolation requested by the DR. - fatal: False - - default values: + values: - laboratory[use_union_zoom] - False @@ -1924,9 +1869,7 @@ Internal values Operation done for vertical interpolation. - fatal: False - - default values: + values: - laboratory[vertical_interpolation_operation] - 'instant' @@ -1937,9 +1880,9 @@ Internal values Time frequency of vertical interpolation. - fatal: False - - default values: laboratory[vertical_interpolation_sample_freq] + values: + + - laboratory[vertical_interpolation_sample_freq] num type: 'string' @@ -1947,9 +1890,7 @@ Internal values Version of XIOS used. - fatal: False - - default values: + values: - laboratory[xios_version] - 2 @@ -1962,7 +1903,9 @@ Internal values fatal: True - default values: dict[year] + values: + + - dict[year] num type: 'string' @@ -1970,9 +1913,7 @@ Internal values Name of the geopotential height field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[zg_field_name] - 'zg' @@ -1990,7 +1931,9 @@ Common values fatal: True - default values: dict[prefix] + values: + + - dict[prefix] num type: 'string' @@ -2055,7 +1998,7 @@ Project settings XIOS grid_definition beacon interpolate_axis - XIOS interpolate_axis beacon + TODO interpolate_domain XIOS interpolate_domain beacon @@ -2077,9 +2020,11 @@ Project settings Content of the variable - fatal: False + fatal: True - default values: [] + values: + + - attrs[name] num type: 'string' @@ -2087,9 +2032,11 @@ Project settings Encoding type of the variable's content. - fatal: False + fatal: True - default values: [] + values: + + - attrs[type] num type: 'string' diff --git a/sphinx/source/userguide/projects/ping.rst b/sphinx/source/userguide/projects/ping.rst index ab98c0ac..15500a1c 100644 --- a/sphinx/source/userguide/projects/ping.rst +++ b/sphinx/source/userguide/projects/ping.rst @@ -1,6 +1,144 @@ Parameters available for project ping ===================================== +Init values +--------------- +.. glossary:: + :sorted: + + data_request_config + + Configuration file of the data request content to be used. + + values: + + - laboratory[data_request_config] + - '__package-root__/dr_interface/CMIP7_config' + + num type: 'string' + + data_request_content_version + + Version of the data request content to be used. + + values: + + - laboratory[data_request_content_version] + - 'latest_stable' + + num type: 'string' + + data_request_path + + Path where the data request API used is placed. + + values: + + - laboratory[data_request_path] + - None + + num type: 'string' + + data_request_used + + The Data Request infrastructure type which should be used. + + values: + + - laboratory[data_request_used] + - 'CMIP6' + + num type: 'string' + + institution_id + + Institution identifier. + + fatal: True + + values: + + - laboratory[institution_id] + + num type: 'string' + + laboratory_used + + File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. + + values: + + - laboratory[laboratory_used] + - None + + num type: 'string' + + project + + Project associated with the simulation. + + values: + + - laboratory[project] + - 'CMIP6' + + num type: 'string' + + project_settings + + Project settings definition file to be used. + + values: + + - laboratory[project_settings] + - init[project] + + num type: 'string' + + save_project_settings + + The path of the file where the complete project settings will be written, if needed. + + values: + + - laboratory[save_project_settings] + - None + + num type: 'string' + + vocabulary_config + + Configuration file of the vocabulary to be used. + + values: + + - laboratory[vocabulary_config] + - '__package-root__/vocabulary/vocabulary.json' + + num type: 'string' + + vocabulary_project + + The vocabulary project which should be used. + + values: + + - laboratory[vocabulary_project] formatted with function from self named lower({}) + - init[project] formatted with function from self named lower({}) + + num type: 'string' + + vocabulary_used + + The vocabulary infrastructure type which should be used. + + values: + + - laboratory[vocabulary_used] + - None + + num type: 'string' + Internal values --------------- .. glossary:: @@ -10,9 +148,7 @@ Internal values CFMIP has an elaborated requirement for defining subhr frequency; by default, dr2xml uses 1 time step. - fatal: False - - default values: + values: - laboratory[CFsubhr_frequency] - '1ts' @@ -23,9 +159,7 @@ Internal values DR01.00.21 does not include Gibraltar strait, which is requested by OMIP. Can include it, if model provides it as last value of array. - fatal: False - - default values: + values: - laboratory[add_Gibraltar] - False @@ -38,9 +172,9 @@ Internal values fatal: True - default values: + values: - - laboratory[additional_allowed_model_components][internal[source_id]] + - laboratory[additional_allowed_components][internal[source_id]] - [] num type: 'string' @@ -49,9 +183,7 @@ Internal values Some scenario experiment in DR 01.00.21 do not request tos on 1 degree grid, while other do. If you use grid_policy=adhoc and had not changed the mapping of function. grids.lab_adhoc_grid_policy to grids.CNRM_grid_policy, next setting can force any tos request to also produce tos on a 1 degree grid. - fatal: False - - default values: + values: - laboratory[adhoc_policy_do_add_1deg_grid_for_tos] - False @@ -62,9 +194,7 @@ Internal values Should we allow for duplicate vars: two vars with same frequency, shape and realm, which differ only by the table. In DR01.00.21, this actually applies to very few fields (ps-Aermon, tas-ImonAnt, areacellg-IfxAnt). - fatal: False - - default values: + values: - laboratory[allow_duplicates] - True @@ -77,7 +207,7 @@ Internal values fatal: True - default values: + values: - laboratory[allow_duplicates_in_same_table] - False @@ -88,9 +218,7 @@ Internal values DR has sn attributes for MIP variables. They can be real,CF-compliant, standard_names or pseudo_standard_names, i.e. not yet approved labels. Default is to use only CF ones. - fatal: False - - default values: + values: - laboratory[allow_pseudo_standard_names] - False @@ -101,9 +229,7 @@ Internal values When using select='no', Xios may enter an endless loop, which is solved if next setting is False. - fatal: False - - default values: + values: - laboratory[allow_tos_3hr_1deg] - True @@ -114,19 +240,17 @@ Internal values In some instances, the experiment start year is not explicit or is doubtful in DR. See file doc/some_experiments_starty_in_DR01.00.21. You should then specify it, using next setting in order that requestItems analysis work in all cases. In some other cases, DR requestItems which apply to the experiment form its start does not cover its whole duration and have a wrong duration (computed based on a wrong start year); They necessitate to fix the start year. - fatal: False - - default values: simulation[branch_year_in_child] + values: + + - simulation[branch_year_in_child] num type: 'string' branching - Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. + Describe the branching scheme for experiments involved in some 'branchedYears type' tslice (for details, see: http://clipc-services.ceda.ac.uk/dreq/index/Slice.html ). Just put the as key the common start year in child and as value the list of start years in parent for all members.A dictionary with models name as key and dictionary containing experiment,(branch year in child, list of branch year in parent) key values. - fatal: False - - default values: + values: - laboratory[branching][internal[source_id]] - {} @@ -137,9 +261,7 @@ Internal values If the CMIP6 Controlled Vocabulary doesn't allow all the components you activate, you can set next toggle to True - fatal: False - - default values: + values: - laboratory[bypass_CV_components] - False @@ -150,9 +272,7 @@ Internal values Estimate of number of bytes per floating value, given the chosen :term:`compression_level`. - fatal: False - - default values: + values: - laboratory[bytes_per_float] - 2 @@ -165,7 +285,9 @@ Internal values fatal: True - default values: None + values: + + - None num type: 'string' @@ -175,98 +297,68 @@ Internal values fatal: True - default values: dict[context] - - num type: 'string' - - data_request_config - - Configuration file of the data request content to be used - - fatal: False - - default values: + values: - - laboratory[data_request_config] - - '/home/rigoudyg/dev/DR2XML/dr2xml_source/dr2xml/dr_interface/CMIP7_config' + - dict[context] num type: 'string' - data_request_content_version - - Version of the data request content to be used - - fatal: False - - default values: - - - laboratory[data_request_content_version] - - 'latest_stable' - - num type: 'string' - - data_request_path - - Path where the data request API used is placed. + debug_parsing - fatal: False + In order to identify which xml files generates a problem, you can use this flag. - default values: + values: - - laboratory[data_request_path] - - None + - laboratory[debug_parsing] + - False num type: 'string' - data_request_used - - The Data Request infrastructure type which should be used. + dr2xml_manages_enddate - fatal: False + A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. - default values: + values: - - laboratory[data_request_used] - - 'CMIP6' + - laboratory[dr2xml_manages_enddate] + - True num type: 'string' - debug_parsing - - In order to identify which xml files generates a problem, you can use this flag. + end_year - fatal: False + If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value - default values: + values: - - laboratory[debug_parsing] + - simulation[end_year] - False num type: 'string' - dr2xml_manages_enddate - - A smart workflow will allow you to extend a simulation during it course and to complement the output files accordingly, by managing the 'end date' part in filenames. You can then set next setting to False. + excluded_expgroups_lset - fatal: True + List of the experiments groups that will be excluded from outputs from laboratory settings. - default values: + values: - - laboratory[dr2xml_manages_enddate] - - True + - laboratory[excluded_expgroups] + - [] + + target type: 'list' num type: 'string' - end_year + excluded_expgroups_sset - If you want to carry on the experiment beyond the duration set in DR, and that all requestItems that apply to DR end year also apply later on, set 'end_year' You can also set it if you don't know if DR has a wrong value + List of the experiments groups that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - - simulation[end_year] - - False + - simulation[excluded_expgroups] + - [] + + target type: 'list' num type: 'string' @@ -274,169 +366,169 @@ Internal values List of the opportunities that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_opportunities_sset List of the opportunities that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_opportunities] - [] + target type: 'list' + num type: 'string' excluded_pairs_lset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_pairs_sset You can exclude some (variable, table) pairs from outputs. A list of tuple (variable, table) to be excluded from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_pairs] - [] + target type: 'list' + num type: 'string' excluded_request_links List of links un data request that should not been followed (those request are not taken into account). - fatal: False - - default values: + values: - laboratory[excluded_request_links] - [] + target type: 'list' + num type: 'string' excluded_spshapes_lset The list of shapes that should be excluded (all variables in those shapes will be excluded from outputs). - fatal: False - - default values: + values: - laboratory[excluded_spshapes] - [] + target type: 'list' + num type: 'string' excluded_tables_lset List of the tables that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_tables_sset List of the tables that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_tables] - [] + target type: 'list' + num type: 'string' excluded_vargroups_lset List of the variables groups that will be excluded from outputs from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vargroups_sset List of the variables groups that will be excluded from outputs from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vargroups] - [] + target type: 'list' + num type: 'string' excluded_vars_lset List of CMOR variables to exclude from the result based on previous Data Request extraction from laboratory settings. - fatal: False - - default values: + values: - laboratory[excluded_vars] - [] + target type: 'list' + num type: 'string' excluded_vars_per_config A dictionary which keys are configurations and values the list of variables that must be excluded for each configuration. - fatal: False - - default values: + values: - laboratory[excluded_vars_per_config][internal[configuration]] - [] + target type: 'list' + num type: 'string' excluded_vars_sset List of CMOR variables to exclude from the result based on previous Data Request extraction from simulation settings. - fatal: False - - default values: + values: - simulation[excluded_vars] - [] + target type: 'list' + num type: 'string' experiment_for_requests @@ -445,17 +537,21 @@ Internal values fatal: True - default values: None + values: + + - None num type: 'string' experiment_id - Root experiment identifier. + Root experiment identifier fatal: True - default values: None + values: + + - None num type: 'string' @@ -463,9 +559,7 @@ Internal values If you want to produce the same variables set for all members, set this parameter to False. - fatal: False - - default values: + values: - simulation[filter_on_realization] - laboratory[filter_on_realization] @@ -477,9 +571,7 @@ Internal values You may provide some variables already horizontally remapped to some grid (i.e. Xios domain) in external files. The varname in file must match the referenced id in pingfile. Tested only for fixed fields. A dictionary with variable id as key and a dictionary as value: the key must be the grid id, the value a dictionary with the file for each resolution. - fatal: False - - default values: + values: - laboratory[fx_from_file] - [] @@ -492,7 +584,9 @@ Internal values fatal: True - default values: None + values: + + - None num type: 'string' @@ -502,7 +596,9 @@ Internal values fatal: True - default values: None + values: + + - None num type: 'string' @@ -512,7 +608,7 @@ Internal values fatal: True - default values: + values: - laboratory[grid_prefix] - internal[ping_variables_prefix] @@ -521,11 +617,13 @@ Internal values grids - Grids : per model resolution and per context :- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)- Xios id for the production grid (if it is not the native grid),- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)- resolution of the production grid (using CMIP6 conventions),- grid description + Grids : per model resolution and per context :\n- CMIP6 qualifier (i.e. 'gn' or 'gr') for the main grid chosen (because you may choose has main production grid a regular one, when the native grid is e.g. unstructured)\n- Xios id for the production grid (if it is not the native grid)\n- Xios id for the latitude axis used for zonal means (mist match latitudes for grid above)\n- resolution of the production grid (using CMIP6 conventions)\n- grid description fatal: True - default values: None + values: + + - None num type: 'string' @@ -535,7 +633,7 @@ Internal values fatal: True - default values: + values: - laboratory[grids_dev] - {} @@ -546,9 +644,7 @@ Internal values Variables to be grouped in the same output file (provided additional conditions are filled). - fatal: False - - default values: + values: - simulation[grouped_vars_per_file] - laboratory[grouped_vars_per_file] @@ -556,143 +652,146 @@ Internal values num type: 'string' + included_expgroups + + List of experiments groups that will be processed (all others will not). + + values: + + - simulation[included_expgroups] + - internal[included_expgroups_lset] + + target type: 'list' + + num type: 'string' + + included_expgroups_lset + + List of experiments groups that will be processed (all others will not) from laboratory settings. + + values: + + - laboratory[included_expgroups] + - [] + + target type: 'list' + + num type: 'string' + included_opportunities List of opportunities that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_opportunities] - internal[included_opportunities_lset] + target type: 'list' + num type: 'string' included_opportunities_lset List of opportunities that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_opportunities] - [] + target type: 'list' + num type: 'string' included_request_links List of the request links that will be processed (all others will not). - fatal: False - - default values: + values: - laboratory[included_request_links] - [] + target type: 'list' + num type: 'string' included_tables List of tables that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_tables] - internal[included_tables_lset] + target type: 'list' + num type: 'string' included_tables_lset List of tables that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_tables] - [] + target type: 'list' + num type: 'string' included_vargroups List of variables groups that will be processed (all others will not). - fatal: False - - default values: + values: - simulation[included_vargroups] - internal[included_vargroups_lset] + target type: 'list' + num type: 'string' included_vargroups_lset List of variables groups that will be processed (all others will not) from laboratory settings. - fatal: False - - default values: + values: - laboratory[included_vargroups] - [] + target type: 'list' + num type: 'string' included_vars Variables to be considered from the Data Request (all others will not) - fatal: False - - default values: + values: - simulation[included_vars] - internal[included_vars_lset] + target type: 'list' + num type: 'string' included_vars_lset Variables to be considered from the Data Request (all others will not) from laboratory settings. - fatal: False - - default values: - - - laboratory[included_vars] - - [] - - num type: 'string' - - institution_id - - Institution identifier. - - fatal: True - - default values: laboratory[institution_id] - - num type: 'string' - - laboratory_used - - File which contains the settings to be used for a specific laboratory which is not present by default in dr2xml. Must contains at least the `lab_grid_policy` function. - - fatal: False - - default values: + values: - - laboratory[laboratory_used] - - None + - laboratory[included_vars] + - [] + + target type: 'list' num type: 'string' @@ -700,9 +799,7 @@ Internal values Full path to the file which contains the list of home variables to be taken into account, in addition to the Data Request. - fatal: False - - default values: + values: - simulation[listof_home_vars] - laboratory[listof_home_vars] @@ -714,9 +811,7 @@ Internal values The maximum size of generated files in number of floating values. - fatal: False - - default values: + values: - laboratory[max_file_size_in_floats] - 500000000.0 @@ -729,7 +824,7 @@ Internal values fatal: True - default values: + values: - simulation[max_priority] - internal[max_priority_lset] @@ -742,7 +837,9 @@ Internal values fatal: True - default values: laboratory[max_priority] + values: + + - laboratory[max_priority] num type: 'string' @@ -750,9 +847,7 @@ Internal values The maximum number of years that should be putted in a single file. - fatal: True - - default values: + values: - simulation[max_split_freq] - laboratory[max_split_freq] @@ -766,7 +861,9 @@ Internal values fatal: True - default values: laboratory[mips] + values: + + - laboratory[mips] num type: 'string' @@ -776,7 +873,7 @@ Internal values fatal: True - default values: + values: - laboratory[nemo_sources_management_policy_master_of_the_world] - False @@ -785,11 +882,9 @@ Internal values non_standard_attributes - You may add a series of NetCDF attributes in all files for this simulation - - fatal: False + You may add a series of NetCDF attributes in all files for this simulation. - default values: + values: - laboratory[non_standard_attributes] - {} @@ -800,9 +895,7 @@ Internal values If your model has some axis which does not have all its attributes as in DR, and you want dr2xml to fix that it, give here the correspondence from model axis id to DR dim/grid id. For label dimensions you should provide the list of labels, ordered as in your model, as second element of a pair. Label-type axes will be processed even if not quoted. Scalar dimensions are not concerned by this feature. A dictionary with (axis_id, axis_correct_id) or (axis_id, tuple of labels) as key, values. - fatal: False - - default values: + values: - laboratory[non_standard_axes] - {} @@ -813,9 +906,7 @@ Internal values Name of the orography field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[orography_field_name] - 'orog' @@ -824,11 +915,13 @@ Internal values orphan_variables - A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context) + A dictionary with (context name, list of variables) as (key,value) pairs, where the list indicates the variables to be re-affected to the key-context (initially affected to a realm falling in another context). fatal: True - default values: [] + values: + + - [] num type: 'string' @@ -836,9 +929,7 @@ Internal values Full path of the directory which contains extra tables. - fatal: False - - default values: + values: - simulation[path_extra_tables] - laboratory[path_extra_tables] @@ -850,9 +941,9 @@ Internal values TODO - fatal: False - - default values: laboratory[path_special_defs] + values: + + - laboratory[path_special_defs] num type: 'string' @@ -860,9 +951,7 @@ Internal values The path of the directory which, at run time, contains the root XML file (iodef.xml). - fatal: False - - default values: + values: - laboratory[path_to_parse] - './' @@ -873,9 +962,7 @@ Internal values A dictionary containing, for each perso or dev variables with a XY-perso shape, and for each vertical coordinate associated, the main attributes of the dimension. - fatal: False - - default values: + values: - simulation[perso_sdims_description] - {} @@ -888,7 +975,9 @@ Internal values fatal: True - default values: laboratory[ping_variables_prefix] + values: + + - laboratory[ping_variables_prefix] num type: 'string' @@ -896,9 +985,9 @@ Internal values Name of the orography field name to be used to compute height over orog fields prefixed with :term:`ping_variable_prefix`. - fatal: False - - default values: '{}{}'.format(internal[ping_variables_prefix], internal[orography_field_name]) + values: + + - function from self named format('prefix'= internal[ping_variables_prefix], 'variable'= internal[orography_field_name]) num type: 'string' @@ -906,9 +995,7 @@ Internal values For an extended printout of selected CMOR variables, grouped by variable label. - fatal: False - - default values: + values: - laboratory[print_stats_per_var_label] - False @@ -919,48 +1006,18 @@ Internal values If the value is a list, only the file/field variables listed here will be put in output files. If boolean, tell if the file/field variables should be put in output files. - fatal: False - - default values: + values: - laboratory[print_variables] - True num type: 'string' - project - - Project associated with the simulation. - - fatal: False - - default values: - - - laboratory[project] - - 'CMIP6' - - num type: 'string' - - project_settings - - Project settings definition file to be used. - - fatal: False - - default values: - - - laboratory[project_settings] - - internal[project] - - num type: 'string' - realization_index Realization number. - fatal: False - - default values: + values: - simulation[realization_index] - '1' @@ -969,11 +1026,13 @@ Internal values realms_per_context - A dictionary which keys are context names and values the lists of realms associated with each context + A dictionary which keys are context names and values the lists of realms associated with each context. fatal: True - default values: laboratory[realms_per_context][internal[context]] + values: + + - laboratory[realms_per_context][internal[context]] num type: 'string' @@ -983,7 +1042,7 @@ Internal values fatal: True - default values: + values: - laboratory[required_model_components][internal[source_id]] - [] @@ -996,19 +1055,8 @@ Internal values fatal: True - default values: None - - num type: 'string' - - save_project_settings - - The path of the file where the complete project settings will be written, if needed. - - fatal: False - - default values: + values: - - laboratory[save_project_settings] - None num type: 'string' @@ -1017,9 +1065,9 @@ Internal values List of the sectors to be considered. - fatal: False - - default values: laboratory[sectors] + values: + + - laboratory[sectors] num type: 'string' @@ -1029,7 +1077,9 @@ Internal values fatal: True - default values: dict[select] + values: + + - dict[select] authorized values: @@ -1039,43 +1089,65 @@ Internal values num type: 'string' + select_excluded_expgroups + + Excluded experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_expgroups_lset] + - + + num type: 'string' + select_excluded_opportunities Excluded opportunities for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_opportunities_lset]', 'internal[excluded_opportunities_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_opportunities_lset] + - num type: 'string' @@ -1085,37 +1157,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_pairs_lset]', 'internal[excluded_pairs_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_pairs_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_pairs_lset] + - num type: 'string' @@ -1125,37 +1188,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[excluded_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[excluded_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1165,37 +1219,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_tables_lset]', 'internal[excluded_tables_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_tables_lset] + - num type: 'string' @@ -1205,37 +1250,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vargroups_lset]', 'internal[excluded_vargroups_sset]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vargroups_lset] + - num type: 'string' @@ -1245,37 +1281,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: ['internal[excluded_vars_lset]', 'internal[excluded_vars_sset]', 'internal[excluded_vars_per_config]'] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[excluded_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: merge_lists() + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[excluded_vars_lset] + - num type: 'string' @@ -1285,37 +1312,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[grid_choice] - - Case: + values: - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: 'LR' - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[grid_choice] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: 'LR' + - + + num type: 'string' + + select_included_expgroups + + Included experiments groups for variable selection. + + fatal: True + + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_expgroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_expgroups_lset] + - num type: 'string' @@ -1325,37 +1374,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_opportunities] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_opportunities_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_opportunities] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_opportunities_lset] + - num type: 'string' @@ -1365,37 +1405,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_request_links] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_request_links] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1405,77 +1436,59 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_tables] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_tables_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_tables] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_tables_lset] + - num type: 'string' select_included_vargroups - Included variables groups for variable selection. + Included variable groups for variable selection. fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vargroups] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vargroups_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vargroups] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vargroups_lset] + - num type: 'string' @@ -1485,37 +1498,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[included_vars] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[included_vars_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[included_vars] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[included_vars_lset] + - num type: 'string' @@ -1525,37 +1529,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[max_priority] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[max_priority_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[max_priority] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[max_priority_lset] + - num type: 'string' @@ -1565,37 +1560,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[mips][internal[select_grid_choice]]sort_mips() - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[mips]sort_mips() - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: function from functions_file named sort_mips('mips'= internal[mips][internal[select_grid_choice]]) + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: function from functions_file named sort_mips('mips'= internal[mips]) + - num type: 'string' @@ -1605,40 +1591,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'on_expt_and_year' - - 'on_expt' - - - value: True - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'no' - - - value: False - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt_and_year' + - - 'on_expt' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'no' + - + - values: False + - num type: 'string' @@ -1648,40 +1625,31 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: 'on_expt_and_year' - - - value: internal[year] - - Case: - - conditions: - Condition: - - check value: internal[select] - - check to do: 'eq' - - reference values: - - - 'no' - - 'on_expt' - - - value: None - + values: + + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: 'on_expt_and_year' + - + - values: True + - + - Condition: + - + - value to check: internal[select] + - + - check to perform: 'eq' + - + - reference values: + - + - - 'on_expt' + - - 'no' + - + - values: False + - num type: 'string' @@ -1691,37 +1659,28 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[sizes] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: None - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[sizes] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: None + - num type: 'string' @@ -1731,47 +1690,38 @@ Internal values fatal: True - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: True - - - value: internal[tierMax] - - Case: - - conditions: - Condition: - - check value: internal[select_on_expt] - - check to do: 'eq' - - reference values: False - - - value: internal[tierMax_lset] - + values: + + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: True + - + - values: internal[tierMax] + - + - Condition: + - + - value to check: internal[select_on_expt] + - + - check to perform: 'eq' + - + - reference values: False + - + - values: internal[tierMax_lset] + - num type: 'string' simple_domain_grid_regexp - If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: 1) it must be a grid which has only a domain 2) the domain name must be extractable from the grid_id using a regexp and a group number Example: using a pattern that returns full id except for a '_grid' suffix + If some grid is not defined in xml but by API, and is referenced by a field which is considered by the DR as having a singleton dimension, then: \n1) it must be a grid which has only a domain \n2) the domain name must be extractable from the grid_id using a regexp and a group number \nExample: using a pattern that returns full id except for a '_grid' suffix - fatal: False - - default values: laboratory[simple_domain_grid_regexp] + values: + + - laboratory[simple_domain_grid_regexp] num type: 'string' @@ -1781,7 +1731,9 @@ Internal values fatal: True - default values: None + values: + + - None num type: 'string' @@ -1791,17 +1743,21 @@ Internal values fatal: True - default values: None + values: + + - None num type: 'string' source_type - If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote "AGCM AER". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit + If the default source-type value for your source (:term:`source_types` from :term:`lab_and_model_settings`) does not fit, you may change it here. This should describe the model most directly responsible for the output. Sometimes it is appropriate to list two (or more) model types here, among AER, AGCM, AOGCM, BGC, CHEM, ISM, LAND, OGCM, RAD, SLAB e.g. amip , run with CNRM-CM6-1, should quote \"AGCM AER\". Also see note 14 of https://docs.google.com/document/d/1h0r8RZr_f3-8egBMMh7aqLwy3snpD6_MrDz1q8n5XUk/edit fatal: True - default values: None + values: + + - None num type: 'string' @@ -1809,9 +1765,7 @@ Internal values This variable is used when some variables are computed with a period which is not the basic timestep. A dictionary which keys are non standard timestep and values the list of variables which are computed at this timestep. - fatal: False - - default values: + values: - laboratory[special_timestep_vars] - [] @@ -1822,9 +1776,7 @@ Internal values Path to the split frequencies file to be used. - fatal: False - - default values: + values: - simulation[split_frequencies] - laboratory[split_frequencies] @@ -1834,11 +1786,13 @@ Internal values synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. + Frequency at which the synchronisation between buffer and filesystem is done. - fatal: False - - default values: [] + values: + + - simulation[synchronisation_frequency] + - laboratory[synchronisation_frequency] + - None num type: 'string' @@ -1848,7 +1802,7 @@ Internal values fatal: True - default values: + values: - simulation[tierMax] - internal[tierMax_lset] @@ -1861,7 +1815,9 @@ Internal values fatal: True - default values: laboratory[tierMax] + values: + + - laboratory[tierMax] num type: 'string' @@ -1871,7 +1827,7 @@ Internal values fatal: True - default values: + values: - laboratory[too_long_periods] - [] @@ -1882,9 +1838,7 @@ Internal values Should xml output files use the `@` symbol for definitions for instant variables? - fatal: False - - default values: + values: - laboratory[useAtForInstant] - False @@ -1897,7 +1851,7 @@ Internal values fatal: True - default values: + values: - laboratory[use_cmorvar_label_in_filename] - False @@ -1908,9 +1862,7 @@ Internal values Say if you want to use XIOS union/zoom axis to optimize vertical interpolation requested by the DR. - fatal: False - - default values: + values: - laboratory[use_union_zoom] - False @@ -1921,9 +1873,7 @@ Internal values Operation done for vertical interpolation. - fatal: False - - default values: + values: - laboratory[vertical_interpolation_operation] - 'instant' @@ -1934,9 +1884,9 @@ Internal values Time frequency of vertical interpolation. - fatal: False - - default values: laboratory[vertical_interpolation_sample_freq] + values: + + - laboratory[vertical_interpolation_sample_freq] num type: 'string' @@ -1944,9 +1894,7 @@ Internal values Version of XIOS used. - fatal: False - - default values: + values: - laboratory[xios_version] - 2 @@ -1959,7 +1907,9 @@ Internal values fatal: True - default values: dict[year] + values: + + - dict[year] num type: 'string' @@ -1967,9 +1917,7 @@ Internal values Name of the geopotential height field name to be used to compute height over orog fields. - fatal: False - - default values: + values: - laboratory[zg_field_name] - 'zg' @@ -1985,9 +1933,7 @@ Common values HDL associated with the project. - fatal: False - - default values: + values: - simulation[HDL] - laboratory[HDL] @@ -1998,9 +1944,7 @@ Common values MIP(s) name(s). - fatal: False - - default values: + values: - simulation[activity_id] - laboratory[activity_id] @@ -2011,9 +1955,7 @@ Common values Branching procedure. - fatal: False - - default values: + values: - simulation[branch_method] - 'standard' @@ -2024,9 +1966,7 @@ Common values Branch month in parent simulation with respect to its time axis. - fatal: False - - default values: + values: - simulation[branch_month_in_parent] - '1' @@ -2037,77 +1977,54 @@ Common values Branch year in parent simulation with respect to its time axis. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: simulation[branch_year_in_parent] + - + - check to perform: 'eq' + - + - reference values: internal[branching][internal[experiment_id]][1] + - + - values: simulation[branch_year_in_parent] + - + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'neq' + - + - reference values: internal[branching] + - + - values: simulation[branch_year_in_parent] + - + + forbidden values: - None - 'None' - '' - 'N/A' - cases: - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: internal[branching] - - Condition: - - check value: simulation[branch_year_in_parent] - - check to do: 'eq' - - reference values: internal[branching][internal[experiment_id]][1] - - - value: simulation[branch_year_in_parent] - - Case: - - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'neq' - - reference values: internal[branching] - - - value: simulation[branch_year_in_parent] - - num type: 'string' - comment_lab + comment_lset A character string containing additional information about the models from laboratory settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - laboratory[comment] - '' num type: 'string' - comment_sim + comment_sset A character string containing additional information about the models from simulation settings. Will be complemented with the experiment's specific comment string. - fatal: False - - default values: + values: - simulation[comment] - '' @@ -2116,11 +2033,9 @@ Common values compression_level - The compression level to be applied to NetCDF output files. - - fatal: False + The compression level to be applied to NetCDF output files." - default values: + values: - laboratory[compression_level] - '0' @@ -2131,9 +2046,7 @@ Common values Email address of the data producer. - fatal: False - - default values: + values: - simulation[contact] - laboratory[contact] @@ -2145,9 +2058,9 @@ Common values Version of the conventions used. - fatal: False - - default values: dr2xml.config.conventions + values: + + - config.conventions num type: 'string' @@ -2157,7 +2070,9 @@ Common values fatal: True - default values: data_request.get_version() + values: + + - function from data_request named get_version({}) num type: 'string' @@ -2165,9 +2080,9 @@ Common values Date range format to be used in file definition names. - fatal: False - - default values: '%start_date%-%end_date%' + values: + + - '%start_date%-%end_date%' num type: 'string' @@ -2175,12 +2090,10 @@ Common values Description of the simulation. - fatal: False - - default values: + values: - - simulation[description] - laboratory[description] + - simulation[description] num type: 'string' @@ -2188,9 +2101,9 @@ Common values Version of dr2xml used. - fatal: False - - default values: dr2xml.config.version + values: + + - config.version num type: 'string' @@ -2198,9 +2111,9 @@ Common values Name of the experiment. - fatal: False - - default values: simulation[experiment] + values: + + - simulation[experiment] num type: 'string' @@ -2208,9 +2121,7 @@ Common values Experiment label to use in file names and attribute. - fatal: False - - default values: + values: - simulation[expid_in_filename] - internal[experiment_id] @@ -2223,9 +2134,7 @@ Common values Index for variant of forcing. - fatal: False - - default values: + values: - simulation[forcing_index] - '1' @@ -2236,9 +2145,7 @@ Common values In case of replacement of previously produced data, description of any changes in the production chain. - fatal: False - - default values: + values: - simulation[history] - 'none' @@ -2249,9 +2156,9 @@ Common values Location of documentation. - fatal: False - - default values: laboratory[info_url] + values: + + - laboratory[info_url] num type: 'string' @@ -2259,9 +2166,7 @@ Common values Index for variant of initialization method. - fatal: False - - default values: + values: - simulation[initialization_index] - '1' @@ -2272,9 +2177,9 @@ Common values Full name of the institution of the data producer. - fatal: False - - default values: laboratory[institution] + values: + + - laboratory[institution] num type: 'string' @@ -2282,9 +2187,9 @@ Common values Name of the file which will contain the list of the patterns of perso and dev output file definition. - fatal: False - - default values: 'dr2xml_list_perso_and_dev_file_names' + values: + + - 'dr2xml_list_perso_and_dev_file_names' num type: 'string' @@ -2292,12 +2197,34 @@ Common values MIP associated with the simulation. - fatal: False + values: + + - common[mip_era_sset] + - common[mip_era_lset] + + forbidden values: None + + num type: 'string' + + mip_era_lset - default values: + MIP associated with the simulation from laboratory settings. + + values: - - simulation[mip_era] - laboratory[mip_era] + - None + + num type: 'string' + + mip_era_sset + + MIP associated with the simulation from simulation settings. + + values: + + - simulation[mip_era] + - None num type: 'string' @@ -2305,9 +2232,7 @@ Common values We can control the max output level set for all output files. - fatal: False - - default values: + values: - laboratory[output_level] - '10' @@ -2318,9 +2243,7 @@ Common values Description of sub-experiment. - fatal: False - - default values: + values: - simulation[parent_activity_id] - simulation[activity_id] @@ -2333,9 +2256,7 @@ Common values Parent experiment identifier. - fatal: False - - default values: + values: - simulation[parent_experiment_id] - laboratory[parent_experiment_id] @@ -2346,9 +2267,9 @@ Common values Parent’s associated MIP cycle. - fatal: False - - default values: simulation[parent_mip_era] + values: + + - simulation[parent_mip_era] num type: 'string' @@ -2356,9 +2277,9 @@ Common values Parent model identifier. - fatal: False - - default values: simulation[parent_source_id] + values: + + - simulation[parent_source_id] num type: 'string' @@ -2366,9 +2287,7 @@ Common values Reference year in parent simulation. - fatal: False - - default values: + values: - simulation[parent_time_ref_year] - '1850' @@ -2379,9 +2298,9 @@ Common values Time units used in parent. - fatal: False - - default values: simulation[parent_time_units] + values: + + - simulation[parent_time_units] num type: 'string' @@ -2389,9 +2308,9 @@ Common values Parent variant label. - fatal: False - - default values: simulation[parent_variant_label] + values: + + - simulation[parent_variant_label] num type: 'string' @@ -2399,9 +2318,7 @@ Common values Index for model physics variant. - fatal: False - - default values: + values: - simulation[physics_index] - '1' @@ -2414,7 +2331,9 @@ Common values fatal: True - default values: dict[prefix] + values: + + - dict[prefix] num type: 'string' @@ -2422,9 +2341,9 @@ Common values References associated with the simulation. - fatal: False - - default values: laboratory[references] + values: + + - laboratory[references] num type: 'string' @@ -2432,9 +2351,9 @@ Common values Name of the model. - fatal: False - - default values: laboratory[source] + values: + + - laboratory[source] num type: 'string' @@ -2442,9 +2361,7 @@ Common values Sub-experiment name. - fatal: False - - default values: + values: - simulation[sub_experiment] - 'none' @@ -2455,9 +2372,7 @@ Common values Sub-experiment identifier. - fatal: False - - default values: + values: - simulation[sub_experiment_id] - 'none' @@ -2468,11 +2383,11 @@ Common values It is recommended that some description be included to help identify major differences among variants, but care should be taken to record correct information. dr2xml will add in all cases: 'Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.' - fatal: False - - default values: simulation[variant_info] + values: + + - simulation[variant_info] - skip values: '' + forbidden values: '' num type: 'string' @@ -2490,19 +2405,19 @@ Project settings Id of the axis. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' positive - How is the axis oriented? - - fatal: False + Hox is the axis oriented? - default values: [] + values: + + - attrs[positive] num type: 'string' @@ -2510,9 +2425,9 @@ Project settings Number of values of this axis. - fatal: False - - default values: [] + values: + + - attrs[n_glo] num type: 'string' @@ -2520,11 +2435,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2536,9 +2451,9 @@ Project settings Reference axis. - fatal: False - - default values: [] + values: + + - attrs[axis_ref] num type: 'string' @@ -2546,9 +2461,9 @@ Project settings Name of this axis. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -2556,27 +2471,25 @@ Project settings Standard name of the axis. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' - None - authorized types: - num type: 'string' long_name Long name of this axis. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -2584,21 +2497,9 @@ Project settings Precision of the axis. - fatal: False - - default values: [] - - skip values: - - - '' - - 'None' - - None - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -2609,17 +2510,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' unit Unit of the axis. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -2631,11 +2544,11 @@ Project settings Value of the axis. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -2647,11 +2560,11 @@ Project settings Bounds of the axis. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -2663,11 +2576,11 @@ Project settings Name dimension of the axis. - fatal: False - - default values: [] + values: + + - attrs[dim_name] - skip values: + forbidden values: - '' - 'None' @@ -2679,11 +2592,11 @@ Project settings Label of the axis. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -2695,11 +2608,11 @@ Project settings Axis type. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -2719,14 +2632,9 @@ Project settings Precision associated with the axis group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -2738,6 +2646,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' context @@ -2749,9 +2663,9 @@ Project settings Version of the Data Request used - fatal: False - - default values: '{} Data Request version {}'.format(internal[data_request_used], common[data_specs_version]) + values: + + - function from self named format('data_request_used'= init[data_request_used], 'data_specs_version'= common[data_specs_version]) num type: 'string' @@ -2759,9 +2673,9 @@ Project settings Version of dr2xml used - fatal: False - - default values: 'dr2xml version {}'.format(common[dr2xml_version]) + values: + + - function from self named format('dr2xml_version'= common[dr2xml_version]) num type: 'string' @@ -2769,9 +2683,9 @@ Project settings Laboratory settings used - fatal: False - - default values: 'Lab_and_model settings***newline***{}'.format(laboratory) + values: + + - function from self named format('laboratory'= laboratory) num type: 'string' @@ -2779,9 +2693,9 @@ Project settings Simulation_settings used - fatal: False - - default values: 'Simulation settings***newline***{}'.format(simulation) + values: + + - function from self named format('laboratory'= simulation) num type: 'string' @@ -2789,9 +2703,9 @@ Project settings Year used for the dr2xml's launch - fatal: False - - default values: 'Year processed {}'.format(internal[year]) + values: + + - function from self named format('year'= internal[year]) num type: 'string' @@ -2801,9 +2715,9 @@ Project settings Id of the context - fatal: False - - default values: internal[context] + values: + + - internal[context] num type: 'string' @@ -2816,29 +2730,29 @@ Project settings Id of the domain. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' ni_glo - Number of points on i dimension. - - fatal: False + Number of point in i dimension. - default values: [] + values: + + - attrs[ni_glo] num type: 'string' nj_glo - Number of points on j dimension. - - fatal: False + Number of points in j dimension. - default values: [] + values: + + - attrs[nj_glo] num type: 'string' @@ -2846,9 +2760,9 @@ Project settings Type of the domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -2856,9 +2770,9 @@ Project settings Precision of the domain. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -2866,9 +2780,9 @@ Project settings Latitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lat_name] num type: 'string' @@ -2876,9 +2790,9 @@ Project settings Longitude axis name. - fatal: False - - default values: [] + values: + + - attrs[lon_name] num type: 'string' @@ -2886,9 +2800,9 @@ Project settings Name of the i dimension. - fatal: False - - default values: [] + values: + + - attrs[dim_i_name] num type: 'string' @@ -2896,9 +2810,9 @@ Project settings Reference domain. - fatal: False - - default values: [] + values: + + - attrs[domain_ref] num type: 'string' @@ -2914,14 +2828,9 @@ Project settings Precision associated with the domain group. - fatal: False - - default values: '8' - - authorized values: + values: - - '2' - - '4' + - attrs[prec] - '8' corrections: @@ -2933,6 +2842,12 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' duplicate_scalar @@ -2947,9 +2862,9 @@ Project settings Id of the field. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -2957,9 +2872,9 @@ Project settings Id of the reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -2967,9 +2882,9 @@ Project settings Name of the field. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -2977,9 +2892,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -2987,9 +2902,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -2997,9 +2912,9 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] num type: 'string' @@ -3007,9 +2922,9 @@ Project settings Long name of the field. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -3017,9 +2932,9 @@ Project settings Standard name of the field. - fatal: False - - default values: [] + values: + + - attrs[standard_name] num type: 'string' @@ -3027,9 +2942,9 @@ Project settings Unit of the field. - fatal: False - - default values: [] + values: + + - attrs[unit] num type: 'string' @@ -3037,9 +2952,9 @@ Project settings Operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3047,9 +2962,9 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: [] + values: + + - attrs[detect_missing_value] num type: 'string' @@ -3057,9 +2972,9 @@ Project settings Precision of the field. - fatal: False - - default values: [] + values: + + - attrs[prec] num type: 'string' @@ -3075,9 +2990,9 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] num type: 'string' @@ -3085,9 +3000,9 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] num type: 'string' @@ -3095,14 +3010,28 @@ Project settings XIOS field beacon (only for output fields) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: field_ref Reference field. - fatal: False - - default values: [] + values: + + - attrs[field_ref] num type: 'string' @@ -3110,9 +3039,10 @@ Project settings Name of the field. - fatal: False - - default values: variable.mipVarLabel + values: + + - attrs[name] + - common_tag[variable][mipVarLabel] num type: 'string' @@ -3120,11 +3050,11 @@ Project settings Reference grid of the field. - fatal: False - - default values: [] + values: + + - attrs[grid_ref] - skip values: + forbidden values: - '' - 'None' @@ -3136,11 +3066,11 @@ Project settings Offset to be applied on operations on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_offset] - skip values: + forbidden values: - '' - 'None' @@ -3152,9 +3082,10 @@ Project settings Should missing values of the field be detected by XIOS. - fatal: False - - default values: 'True' + values: + + - attrs[detect_missing_value] + - 'True' num type: 'string' @@ -3164,12 +3095,11 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '0' - - '1.e+20' + - attrs[default_value] + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3180,6 +3110,11 @@ Project settings - 'integer': '0' - 'int': '0' + authorized values: + + - '0' + - '1.e+20' + num type: 'string' prec @@ -3188,13 +3123,10 @@ Project settings fatal: True - default values: variable.prec - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] + - common_tag[variable][prec] corrections: @@ -3205,15 +3137,22 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + num type: 'string' cell_methods Cell method associated with the field. - fatal: False - - default values: variable.cell_methods + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] num type: 'string' @@ -3221,9 +3160,10 @@ Project settings Mode associated with the cell method of the field. - fatal: False - - default values: 'overwrite' + values: + + - attrs[cell_methods_mode] + - 'overwrite' num type: 'string' @@ -3231,9 +3171,9 @@ Project settings Operation performed on the field. - fatal: False - - default values: [] + values: + + - attrs[operation] num type: 'string' @@ -3241,11 +3181,11 @@ Project settings Frequency of the operation done on the field. - fatal: False - - default values: [] + values: + + - attrs[freq_op] - skip values: + forbidden values: - '' - 'None' @@ -3257,11 +3197,11 @@ Project settings Expression used to compute the field. - fatal: False - - default values: [] + values: + + - attrs[expr] - skip values: + forbidden values: - '' - 'None' @@ -3275,14 +3215,13 @@ Project settings Comment associated with the field. - fatal: False - - default values: + values: - - simulation[comments][variable.label] - - laboratory[comments][variable.label] + - attrs[comment] + - simulation[comments][common_tag[variable][label]] + - laboratory[comments][common_tag[variable][label]] - skip values: + forbidden values: - '' - 'None' @@ -3294,11 +3233,12 @@ Project settings Standard name of the field. - fatal: False - - default values: variable.stdname + values: + + - attrs[standard_name] + - common_tag[variable][stdname] - skip values: + forbidden values: - '' - 'None' @@ -3310,14 +3250,13 @@ Project settings Description associated with the field. - fatal: False - - default values: + values: - - variable.description + - attrs[description] + - common_tag[variable][description] - 'None' - skip values: '' + forbidden values: '' num type: 'string' @@ -3325,9 +3264,10 @@ Project settings Long name of the field. - fatal: False - - default values: variable.long_name + values: + + - attrs[long_name] + - common_tag[variable][long_name] num type: 'string' @@ -3335,11 +3275,12 @@ Project settings Way the field should be interpreted. - fatal: False - - default values: variable.positive + values: + + - attrs[positive] + - common_tag[variable][positive] - skip values: + forbidden values: - '' - 'None' @@ -3351,9 +3292,10 @@ Project settings History associated with the field. - fatal: False - - default values: common[history] + values: + + - attrs[history] + - common[history] num type: 'string' @@ -3361,11 +3303,12 @@ Project settings Units associated with the field. - fatal: False - - default values: variable.units + values: + + - attrs[units] + - common_tag[variable][units] - skip values: + forbidden values: - '' - 'None' @@ -3375,13 +3318,14 @@ Project settings cell_methods - Cell method associated with the field. - - fatal: False + Cell methods associated with the field. - default values: variable.cell_methods + values: + + - attrs[cell_methods] + - common_tag[variable][cell_methods] - skip values: + forbidden values: - '' - 'None' @@ -3393,11 +3337,12 @@ Project settings Cell measures associated with the field. - fatal: False - - default values: variable.cell_measures + values: + + - attrs[cell_measures] + - common_tag[variable][cell_measures] - skip values: + forbidden values: - '' - 'None' @@ -3409,11 +3354,12 @@ Project settings Flag meanings associated with the field. - fatal: False - - default values: variable.flag_meanings + values: + + - attrs[flag_meanings] + - common_tag[variable][flag_meanings] - skip values: + forbidden values: - '' - 'None' @@ -3425,11 +3371,12 @@ Project settings Flag values associated with the field. - fatal: False - - default values: variable.flag_values + values: + + - attrs[flag_values] + - common_tag[variable][flag_values] - skip values: + forbidden values: - '' - 'None' @@ -3441,19 +3388,18 @@ Project settings Interval associated with the operation done on the field. - fatal: False - - default values: [] - - conditions: - Condition: + values: - check value: dict[operation] - - check to do: 'neq' - - reference values: 'once' - + - Condition: + - + - value to check: attrs[operation] + - + - check to perform: 'neq' + - + - reference values: 'once' + - + - values: attrs[interval_operation] + - num type: 'string' @@ -3466,9 +3412,9 @@ Project settings Id of the file. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -3476,9 +3422,9 @@ Project settings File name. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3486,9 +3432,9 @@ Project settings Mode in which the file will be open. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -3496,9 +3442,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3506,9 +3452,9 @@ Project settings Should the file be considered by XIOS. - fatal: False - - default values: [] + values: + + - attrs[enabled] num type: 'string' @@ -3521,9 +3467,10 @@ Project settings Type of file to be produced - fatal: False - - default values: 'one_file' + values: + + - attrs[type] + - 'one_file' num type: 'string' @@ -3531,9 +3478,10 @@ Project settings Should the file_definition be considered by XIOS - fatal: False - - default values: 'true' + values: + + - attrs[enabled] + - 'true' num type: 'string' @@ -3541,14 +3489,31 @@ Project settings XIOS file beacon (only for output files) + Common: + variable + + Variable information + + fatal: True + + values: + + - variable + + num type: 'string' + + Attributes: id Id of the output file - fatal: False + fatal: True - default values: '{}_{}_{}'.format(variable.label, dict[table_id], dict[grid_label]) + values: + + - attrs[id] + - function from self named format('grid'= attrs[grid_label], 'table'= attrs[table_id], 'variable'= common_tag[variable][label]) num type: 'string' @@ -3556,9 +3521,11 @@ Project settings File name. - fatal: False + fatal: True - default values: [] + values: + + - attrs[name] num type: 'string' @@ -3566,9 +3533,9 @@ Project settings Frequency of the outputs contained in the file. - fatal: False - - default values: [] + values: + + - attrs[output_freq] num type: 'string' @@ -3576,9 +3543,10 @@ Project settings Should the data be append to the file? - fatal: False - - default values: 'true' + values: + + - attrs[append] + - 'true' num type: 'string' @@ -3586,11 +3554,12 @@ Project settings Output level of the file. - fatal: False - - default values: common[output_level] + values: + + - attrs[output_level] + - common[output_level] - skip values: + forbidden values: - 'None' - '' @@ -3602,11 +3571,12 @@ Project settings Compression level of the file. - fatal: False - - default values: common[compression_level] + values: + + - attrs[compression_level] + - common[compression_level] - skip values: + forbidden values: - 'None' - '' @@ -3618,143 +3588,139 @@ Project settings Splitting frequency of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_freq_format Splitting frequency format of the file. - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_freq_format] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_start_offset Splitting start offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_start_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_end_offset Splitting end offset of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_end_offset] + - + + forbidden values: - '' - 'None' - - 'False' - None + - 'False' - False - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' split_last_date Splitting last date of the file - fatal: False - - default values: [] - - skip values: + values: + + - Condition: + - + - value to check: common_tag[variable][frequency] + - + - check to perform: 'nmatch' + - + - reference values: '.*fx.*' + - + - values: attrs[split_last_date] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: variable.frequency - - check to do: 'nmatch' - - reference values: '.*fx.*' - - num type: 'string' time_units Time units of the file. - fatal: False - - default values: 'days' + values: + + - attrs[ time_units] + - 'days' num type: 'string' @@ -3762,9 +3728,10 @@ Project settings Time counter name. - fatal: False - - default values: 'time' + values: + + - attrs[time_counter_name] + - 'time' num type: 'string' @@ -3772,9 +3739,10 @@ Project settings Time counter type. - fatal: False - - default values: 'exclusive' + values: + + - attrs[time_counter] + - 'exclusive' num type: 'string' @@ -3782,9 +3750,10 @@ Project settings Time stamp name. - fatal: False - - default values: 'creation_date' + values: + + - attrs[time_stamp_name] + - 'creation_date' num type: 'string' @@ -3792,9 +3761,10 @@ Project settings Time stamp format. - fatal: False - - default values: '%Y-%m-%dT%H:%M:%SZ' + values: + + - attrs[time_stamp_format] + - '%Y-%m-%dT%H:%M:%SZ' num type: 'string' @@ -3802,9 +3772,10 @@ Project settings Unique identifier of the file name. - fatal: False - - default values: 'tracking_id' + values: + + - attrs[uuid_name] + - 'tracking_id' num type: 'string' @@ -3812,11 +3783,13 @@ Project settings Unique identifier of the file format. - fatal: False - - default values: 'hdl:{}/%uuid%'.format(common[HDL]) + values: + + - attrs[uuid_format] + - attrs[uuid_format] + - function from self named format('hdl'= common[HDL]) - skip values: + forbidden values: - 'None' - '' @@ -3828,21 +3801,23 @@ Project settings Convention used for the file. - fatal: False - - default values: common[convention_str] + values: + + - attrs[convention_str] + - common[convention_str] num type: 'string' synchronisation_frequency - Frequency at which the synchornisation between buffer and filesystem is done. + Frequency at which the synchronisation between buffer and filesystem is done. - fatal: False - - default values: internal[synchronisation_frequency] + values: + + - attrs[synchronisation_frequency] + - internal[synchronisation_frequency] - skip values: + forbidden values: - 'None' - '' @@ -3856,9 +3831,10 @@ Project settings Activity id associated with the simulation. - fatal: False - - default values: common[activity_id] + values: + + - attrs[activity_id] + - common[activity_id] num type: 'string' @@ -3866,11 +3842,12 @@ Project settings Contact email. - fatal: False - - default values: common[contact] + values: + + - attrs[contact] + - common[contact] - skip values: + forbidden values: - 'None' - '' @@ -3882,9 +3859,10 @@ Project settings Version of the Data Request used. - fatal: False - - default values: common[data_specs_version] + values: + + - attrs[data_specs_version] + - common[data_specs_version] num type: 'string' @@ -3892,9 +3870,10 @@ Project settings Version of dr2xml used. - fatal: False - - default values: common[dr2xml_version] + values: + + - attrs[dr2xml_version] + - common[dr2xml_version] num type: 'string' @@ -3904,9 +3883,10 @@ Project settings output key: 'experiment_id' - fatal: False - - default values: common[expid_in_filename] + values: + + - attrs[expid_in_filename] + - common[expid_in_filename] num type: 'string' @@ -3914,26 +3894,28 @@ Project settings Description of the file. - fatal: False - - default values: common[description] - - skip values: + values: + + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[description] + - - common[description] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: common[expid_in_filename] - - num type: 'string' title_desc @@ -3942,63 +3924,68 @@ Project settings output key: 'title' - fatal: False - - default values: common[description] - - skip values: + values: + + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[description] + - - common[description] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: common[expid_in_filename] - - num type: 'string' experiment Experiment associated with the simulation. - fatal: False - - default values: common[experiment] - - skip values: + values: + + - Condition: + - + - value to check: internal[experiment_id] + - + - check to perform: 'eq' + - + - reference values: common[expid_in_filename] + - + - values: + - + - - attrs[experiment] + - - common[experiment] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: internal[experiment_id] - - check to do: 'eq' - - reference values: common[expid_in_filename] - - num type: 'string' external_variables External variables associated with the file. - fatal: False - - default values: variable.cell_measuresbuild_external_variables() + values: + + - attrs[external_variables] + - function from functions_file named build_external_variables('cell_measures'= common_tag[variable][cell_measures]) - skip values: '' + forbidden values: '' num type: 'string' @@ -4006,9 +3993,10 @@ Project settings Forcing index associated with the simulation. - fatal: False - - default values: common[forcing_index] + values: + + - attrs[forcing_index] + - common[forcing_index] num type: 'int' @@ -4016,9 +4004,10 @@ Project settings Frequency associated with the file. - fatal: False - - default values: variable.frequency + values: + + - attrs[frequency] + - common_tag[variable][frequency] num type: 'string' @@ -4026,11 +4015,11 @@ Project settings Url to obtain further information associated with the simulation. - fatal: False - - default values: [] + values: + + - attrs[further_info_url] - skip values: + forbidden values: - '' - 'None' @@ -4042,9 +4031,9 @@ Project settings Id of the grid used in the file. - fatal: False - - default values: [] + values: + + - attrs[grid] num type: 'string' @@ -4052,9 +4041,9 @@ Project settings Label of the grid used in the file. - fatal: False - - default values: [] + values: + + - attrs[grid_label] num type: 'string' @@ -4062,9 +4051,9 @@ Project settings Nominal resolution of the grid used in the file. - fatal: False - - default values: [] + values: + + - attrs[nominal_resolution] num type: 'string' @@ -4072,97 +4061,12 @@ Project settings Comment associated with the file. - fatal: False - - default values: [] - - skip values: '' - - cases: - Case: - - conditions: - Condition: - - check value: variable.comments - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}{}'.format(common[comment_lab], common[comment_sim], variable.comments) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: '{}{}'.format(common[comment_lab], common[comment_sim]) - - Case: - - conditions: - Condition: - - check value: common[comment_sim] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_sim] - - Case: - - conditions: - Condition: - - check value: common[comment_lab] - - check to do: 'neq' - - reference values: - - - '' - - 'None' - - None - - - value: common[comment_lab] - + values: + + - attrs[comment] + - function from self named format('var'= , , Condition:, , value to check: common_tag[variable][comments], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common_tag[variable][comments], , 'lset'= , , Condition:, , value to check: common[comment_lset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_lset], , 'sset'= , , Condition:, , value to check: common[comment_sset], , check to perform: 'neq', , reference values:, , - 'None', - None, , values: common[comment_sset], ) + + forbidden values: '' num type: 'string' @@ -4170,9 +4074,10 @@ Project settings History associated with the file. - fatal: False - - default values: common[history] + values: + + - attrs[history] + - common[history] num type: 'string' @@ -4180,9 +4085,10 @@ Project settings Initialization index associated with the simulation. - fatal: False - - default values: common[initialization_index] + values: + + - attrs[initialization_index] + - common[initialization_index] num type: 'int' @@ -4192,7 +4098,10 @@ Project settings fatal: True - default values: internal[institution_id] + values: + + - attrs[institution_id] + - init[institution_id] num type: 'string' @@ -4202,7 +4111,10 @@ Project settings fatal: True - default values: common[institution] + values: + + - attrs[institution] + - common[institution] num type: 'string' @@ -4210,9 +4122,9 @@ Project settings License associated with the file. - fatal: False - - default values: [] + values: + + - attrs[license] num type: 'string' @@ -4220,12 +4132,11 @@ Project settings MIP associated with the simulation. - fatal: False - - default values: + values: + - attrs[mip_era] - common[mip_era] - - variable.mip_era + - common_tag[variable][mip_era] num type: 'string' @@ -4233,23 +4144,25 @@ Project settings Parent experiment id associated with the simulation. - fatal: False - - default values: common[parent_experiment_id] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_experiment_id] + - - common[parent_experiment_id] + - num type: 'string' @@ -4257,27 +4170,27 @@ Project settings MIP associated with the parent experiment. - fatal: False - - default values: - - - common[parent_mip_era] - - common[mip_era] - - variable.mip_era - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_mip_era] + - - common[parent_mip_era] + - - common[mip_era] + - - common_tag[variable][mip_era] + - num type: 'string' @@ -4285,23 +4198,25 @@ Project settings Activity id associated with the parent experiment. - fatal: False - - default values: common[parent_activity_id] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_activity_id] + - - common[parent_activity_id] + - num type: 'string' @@ -4309,26 +4224,26 @@ Project settings Model id of the parent experiment. - fatal: False - - default values: - - - common[parent_source_id] - - internal[source_id] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_source_id] + - - common[parent_source_id] + - - internal[source_id] + - num type: 'string' @@ -4336,26 +4251,26 @@ Project settings Time units of the parent experiment. - fatal: False - - default values: - - - common[parent_time_units] - - 'days since {}-01-01 00:00:00'.format(common[parent_time_ref_year]) - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_time_units] + - - common[parent_time_units] + - - 'days since {}-01-01 00:00:00'.format(common[parent_time_ref_year]) + - num type: 'string' @@ -4363,26 +4278,26 @@ Project settings Variant label of the parent experiment. - fatal: False - - default values: - - - common[parent_variant_label] - - common[variant_label] - - conditions: - Condition: + values: - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[parent_variant_label] + - - common[parent_variant_label] + - - common[variant_label] + - num type: 'string' @@ -4390,35 +4305,26 @@ Project settings Branch method of the simulation. - fatal: False - - default values: [] - - cases: - Case: - - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - - value: common[branch_method] - - Case: + values: - conditions: True - - value: 'no parent' - + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_method] + - - common[branch_method] + - + - 'no parent' num type: 'string' @@ -4426,75 +4332,76 @@ Project settings Branch time of the simulation in the parent's one. - fatal: False - - default values: + values: - - compute_nb_days('year_ref'= common[parent_time_ref_year], 'year_branch'= common[branch_year_in_parent], 'month_branch'= common[branch_month_in_parent]) - - simulation[branch_time_in_parent] - - skip values: + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_time_in_parent] + - - function from functions_file named compute_nb_days('year_ref'= common[parent_time_ref_year], 'year_branch'= common[branch_year_in_parent], 'month_branch'= common[branch_month_in_parent]) + - - simulation[branch_time_in_parent] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - num type: 'double' branch_time_in_child Branch time of the simulation in the child's one. - fatal: False - - default values: + values: - - compute_nb_days('year_ref'= simulation[child_time_ref_year], 'year_branch'= simulation[branch_year_in_child]) - - simulation[branch_time_in_child] - - skip values: + - Condition: + - + - value to check: common[parent_experiment_id] + - + - check to perform: 'neq' + - + - reference values: + - + - - 'no parent' + - - '' + - - 'None' + - + - values: + - + - - attrs[branch_time_in_child] + - - function from functions_file named compute_nb_days('year_ref'= simulation[child_time_ref_year], 'year_branch'= simulation[branch_year_in_child]) + - - simulation[branch_time_in_child] + - + + forbidden values: - '' - 'None' - None - conditions: - Condition: - - check value: common[parent_experiment_id] - - check to do: 'neq' - - reference values: - - - 'no parent' - - '' - - 'None' - - num type: 'double' physics_index Physics index associated with the simulation. - fatal: False - - default values: common[physics_index] + values: + + - attrs[physics_index] + - common[physics_index] num type: 'int' @@ -4502,9 +4409,10 @@ Project settings Type of content of the file. - fatal: False - - default values: 'model-output' + values: + + - attrs[product] + - 'model-output' num type: 'string' @@ -4512,9 +4420,10 @@ Project settings Realization index associated with the simulation. - fatal: False - - default values: internal[realization_index] + values: + + - attrs[realization_index] + - internal[realization_index] num type: 'int' @@ -4522,9 +4431,9 @@ Project settings Realm associated with the file. - fatal: False - - default values: variable.modeling_realm() + values: + + - common_tag[variable][modeling_realm] formatted with function from self named join({}) num type: 'string' @@ -4532,9 +4441,10 @@ Project settings References associated with the simulation. - fatal: False - - default values: common[references] + values: + + - attrs[references] + - common[references] num type: 'string' @@ -4542,9 +4452,10 @@ Project settings Model associated with the simulation. - fatal: False - - default values: common[source] + values: + + - attrs[source] + - common[source] num type: 'string' @@ -4552,9 +4463,10 @@ Project settings Model id associated with the simulation. - fatal: False - - default values: internal[source_id] + values: + + - attrs[source_id] + - internal[source_id] num type: 'string' @@ -4562,9 +4474,10 @@ Project settings Model type associated with the simulation. - fatal: False - - default values: internal[source_type] + values: + + - attrs[source_type] + - internal[source_type] num type: 'string' @@ -4572,9 +4485,10 @@ Project settings Id of the sub experiment associated with the simulation. - fatal: False - - default values: common[sub_experiment_id] + values: + + - attrs[sub_experiment_id] + - common[sub_experiment_id] num type: 'string' @@ -4582,9 +4496,10 @@ Project settings Name of the sub experiment associated with the simulation. - fatal: False - - default values: common[sub_experiment] + values: + + - attrs[sub_experiment] + - common[sub_experiment] num type: 'string' @@ -4592,9 +4507,9 @@ Project settings Id of the table associated with the file. - fatal: False - - default values: [] + values: + + - attrs[table_id] num type: 'string' @@ -4602,12 +4517,11 @@ Project settings Title of the file. - fatal: False - - default values: + values: - - '{} model output prepared for {} and {} / {} simulation'.format(internal[source_id], internal[project], common[activity_id], simulation[expid_in_filename]) - - '{} model output prepared for {} / {} {}'.format(internal[source_id], internal[project], common[activity_id], internal[experiment_id]) + - attrs[title] + - function from self named format('activity_id'= common[activity_id] formatted with function from self named join({}), 'expid_in_filename'= simulation[expid_in_filename], 'project'= init[project], 'source_id'= internal[source_id]) + - function from self named format('activity_id'= common[activity_id] formatted with function from self named join({}), 'experiment_id'= simulation[experiment_id], 'project'= init[project], 'source_id'= internal[source_id]) num type: 'string' @@ -4615,9 +4529,9 @@ Project settings Id of the variable contained in the file. - fatal: False - - default values: [] + values: + + - attrs[variable_id] num type: 'string' @@ -4625,9 +4539,10 @@ Project settings Variant information associated with the simulation. - fatal: False - - default values: '. Information provided by this attribute may in some cases be flawed. Users can find more comprehensive and up-to-date documentation via the further_info_url global attribute.'.format(common[variant_info]) + values: + + - attrs[variant_info] + - function from self named format('variant_info'= common[variant_info]) num type: 'string' @@ -4635,9 +4550,10 @@ Project settings Variant label associated with the simulation. - fatal: False - - default values: common[variant_label] + values: + + - common[variant_label] + - attrs[variant_label] num type: 'string' @@ -4653,9 +4569,9 @@ Project settings Id of the grid. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4664,16 +4580,16 @@ Project settings XIOS grid_definition beacon interpolate_axis - XIOS interpolate_axis beacon + TODO Attributes: type Type of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4681,9 +4597,9 @@ Project settings Order of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4691,9 +4607,9 @@ Project settings Coordinate of the interpolated axis. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4706,9 +4622,9 @@ Project settings Type of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[type] num type: 'string' @@ -4716,9 +4632,9 @@ Project settings Order of the interpolation. - fatal: False - - default values: [] + values: + + - attrs[order] num type: 'string' @@ -4726,9 +4642,9 @@ Project settings Should the interpolated domain be renormalized? - fatal: False - - default values: [] + values: + + - attrs[renormalize] num type: 'string' @@ -4736,9 +4652,9 @@ Project settings Mode used for the interpolation. - fatal: False - - default values: [] + values: + + - attrs[mode] num type: 'string' @@ -4746,9 +4662,9 @@ Project settings Should interpolation weights be written? - fatal: False - - default values: [] + values: + + - attrs[write_weight] num type: 'string' @@ -4756,9 +4672,9 @@ Project settings Coordinate of the interpolated domain. - fatal: False - - default values: [] + values: + + - attrs[coordinate] num type: 'string' @@ -4771,9 +4687,9 @@ Project settings Id of the scalar. - fatal: False - - default values: [] + values: + + - attrs[id] num type: 'string' @@ -4781,9 +4697,9 @@ Project settings Reference scalar. - fatal: False - - default values: [] + values: + + - attrs[scalar_ref] num type: 'string' @@ -4791,9 +4707,9 @@ Project settings Name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[name] num type: 'string' @@ -4801,11 +4717,11 @@ Project settings Standard name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[standard_name] - skip values: + forbidden values: - '' - 'None' @@ -4817,9 +4733,9 @@ Project settings Long name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[long_name] num type: 'string' @@ -4827,11 +4743,11 @@ Project settings Label of the scalar. - fatal: False - - default values: [] + values: + + - attrs[label] - skip values: + forbidden values: - '' - 'None' @@ -4843,21 +4759,9 @@ Project settings Precision of the scalar. - fatal: False - - default values: [] - - skip values: - - - '' - - 'None' - - None - - authorized values: + values: - - '2' - - '4' - - '8' + - attrs[prec] corrections: @@ -4868,17 +4772,29 @@ Project settings - 'integer': '2' - 'int': '2' + authorized values: + + - '2' + - '4' + - '8' + + forbidden values: + + - '' + - 'None' + - None + num type: 'string' value Value of the scalar. - fatal: False - - default values: [] + values: + + - attrs[value] - skip values: + forbidden values: - '' - 'None' @@ -4890,11 +4806,11 @@ Project settings Bounds of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds] - skip values: + forbidden values: - '' - 'None' @@ -4906,11 +4822,11 @@ Project settings Bounds name of the scalar. - fatal: False - - default values: [] + values: + + - attrs[bounds_name] - skip values: + forbidden values: - '' - 'None' @@ -4922,11 +4838,11 @@ Project settings Axis type of the scalar. - fatal: False - - default values: [] + values: + + - attrs[axis_type] - skip values: + forbidden values: - '' - 'None' @@ -4938,11 +4854,11 @@ Project settings Orientation of the scalar. - fatal: False - - default values: [] + values: + + - attrs[positive] - skip values: + forbidden values: - '' - 'None' @@ -4954,11 +4870,11 @@ Project settings Unit of the scalar. - fatal: False - - default values: [] + values: + + - attrs[unit] - skip values: + forbidden values: - '' - 'None' @@ -4981,9 +4897,11 @@ Project settings Content of the variable - fatal: False + fatal: True - default values: [] + values: + + - attrs[name] num type: 'string' @@ -4991,9 +4909,11 @@ Project settings Encoding type of the variable's content. - fatal: False + fatal: True - default values: [] + values: + + - attrs[type] num type: 'string' @@ -5006,9 +4926,9 @@ Project settings Index of the zoomed axis. - fatal: False - - default values: [] + values: + + - attrs[index] num type: 'string' \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/CMIP6_activity_id.json b/tests/common/CMIP6_CVs_last/CMIP6_activity_id.json new file mode 100644 index 00000000..b31bdc64 --- /dev/null +++ b/tests/common/CMIP6_CVs_last/CMIP6_activity_id.json @@ -0,0 +1,38 @@ +{ + "activity_id":{ + "AerChemMIP":"Aerosols and Chemistry Model Intercomparison Project", + "C4MIP":"Coupled Climate Carbon Cycle Model Intercomparison Project", + "CDRMIP":"Carbon Dioxide Removal Model Intercomparison Project", + "CFMIP":"Cloud Feedback Model Intercomparison Project", + "CMIP":"CMIP DECK: 1pctCO2, abrupt4xCO2, amip, esm-piControl, esm-historical, historical, and piControl experiments", + "CORDEX":"Coordinated Regional Climate Downscaling Experiment", + "DAMIP":"Detection and Attribution Model Intercomparison Project", + "DCPP":"Decadal Climate Prediction Project", + "DynVarMIP":"Dynamics and Variability Model Intercomparison Project", + "FAFMIP":"Flux-Anomaly-Forced Model Intercomparison Project", + "GMMIP":"Global Monsoons Model Intercomparison Project", + "GeoMIP":"Geoengineering Model Intercomparison Project", + "HighResMIP":"High-Resolution Model Intercomparison Project", + "ISMIP6":"Ice Sheet Model Intercomparison Project for CMIP6", + "LS3MIP":"Land Surface, Snow and Soil Moisture", + "LUMIP":"Land-Use Model Intercomparison Project", + "OMIP":"Ocean Model Intercomparison Project", + "PAMIP":"Polar Amplification Model Intercomparison Project", + "PMIP":"Palaeoclimate Modelling Intercomparison Project", + "RFMIP":"Radiative Forcing Model Intercomparison Project", + "SIMIP":"Sea Ice Model Intercomparison Project", + "ScenarioMIP":"Scenario Model Intercomparison Project", + "VIACSAB":"Vulnerability, Impacts, Adaptation and Climate Services Advisory Board", + "VolMIP":"Volcanic Forcings Model Intercomparison Project" + }, + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "activity_id_CV_modified":"Mon Mar 5 16:39:09 2018 -0800", + "activity_id_CV_note":"Update activity_id to include CDRMIP and PAMIP", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/CMIP6_experiment_id.json b/tests/common/CMIP6_CVs_last/CMIP6_experiment_id.json new file mode 100644 index 00000000..1611b57f --- /dev/null +++ b/tests/common/CMIP6_CVs_last/CMIP6_experiment_id.json @@ -0,0 +1,9468 @@ +{ + "experiment_id":{ + "1pctCO2":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"DECK: 1pctCO2", + "end_year":"", + "experiment":"1 percent per year increase in CO2", + "experiment_id":"1pctCO2", + "min_number_yrs_per_sim":"150", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "1pctCO2-4xext":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"branched from 1pctCO2 run at year 140 and run with CO2 fixed at 4x pre-industrial concentration", + "end_year":"", + "experiment":"extension from year 140 of 1pctCO2 with 4xCO2", + "experiment_id":"1pctCO2-4xext", + "min_number_yrs_per_sim":"210", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "1pctCO2" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "1pctCO2-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Biogeochemically-coupled specified concentration simulation in which CO2 increases at a rate of 1% per year until quadrupling", + "end_year":"", + "experiment":"biogeochemically-coupled version of 1 percent per year increasing CO2 experiment", + "experiment_id":"1pctCO2-bgc", + "min_number_yrs_per_sim":"150", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "1pctCO2-cdr":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"1 percent per year decrease in CO2 (immediately after reaching 4xCO2 in the 1pctCO2 simulation); then held constant at pre-industrial level (part of the CDR-reversibility experiment)", + "end_year":"", + "experiment":"1 percent per year decrease in CO2 from 4xCO2", + "experiment_id":"1pctCO2-cdr", + "min_number_yrs_per_sim":"200", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "1pctCO2" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "1pctCO2-rad":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Radiatively-coupled specified concentration simulation in which CO2 increases at a rate of 1% per year until quadrupling", + "end_year":"", + "experiment":"radiatively-coupled version of 1 percent per year increasing CO2 experiment", + "experiment_id":"1pctCO2-rad", + "min_number_yrs_per_sim":"150", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "1pctCO2Ndep":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Fully-coupled specified concentration simulation in which CO2 increases at a rate of 1% per year until quadrupling, plus an additional scenario of anthropogenic nitrogen deposition", + "end_year":"", + "experiment":"1 percent per year increasing CO2 experiment with increasing N-deposition", + "experiment_id":"1pctCO2Ndep", + "min_number_yrs_per_sim":"150", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "1pctCO2Ndep-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Biogeochemically-coupled specified concentration simulation in which CO2 increases at a rate of 1% per year until quadrupling, plus an additional scenario of anthropogenic nitrogen deposition", + "end_year":"", + "experiment":"biogeochemically-coupled version of 1 percent per year increasing CO2 experiment with increasing N-deposition", + "experiment_id":"1pctCO2Ndep-bgc", + "min_number_yrs_per_sim":"150", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "1pctCO2to4x-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Idealized 1%/yr CO2 increase to 4xC02 over 140yrs and kept constant at 4xCO2 for an additional 200 to 400 yrs simulation that includes interactive ice sheets", + "end_year":"", + "experiment":"simulation with interactive ice sheet forced by 1 percent per year increase in CO2 to 4xCO2 (subsequently held fixed)", + "experiment_id":"1pctCO2to4x-withism", + "min_number_yrs_per_sim":"350", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "piControl-withism" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "G1":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Beginning from a preindustrial control run, simultaneously quadruple the CO2 concentration and reduce the solar constant such that the TOA radiative flux remains within +/m0.1 W/m2", + "end_year":"", + "experiment":"abrupt quadrupling of CO2 plus reduction in total solar irradiance", + "experiment_id":"G1", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "G6SST1":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Time slice at 2020 (ScenarioMIP Tier 1 high forcing scenario)", + "end_year":"", + "experiment":"SSTs, forcings, and other prescribed conditions from year 2020 of SSP5-8.5", + "experiment_id":"G6SST1", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "G6SST2-solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Time slice at 2100 (G6solar)", + "end_year":"", + "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6solar", + "experiment_id":"G6SST2-solar", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "GeoMIP" + ], + "parent_experiment_id":[ + "G6solar" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "G6SST2-sulfur":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Time slice at 2100 (G6sulfur)", + "end_year":"", + "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6sulfur", + "experiment_id":"G6SST2-sulfur", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "GeoMIP" + ], + "parent_experiment_id":[ + "G6sulfur" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "G6solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Using solar irradiance reduction, return the radiative forcing from a background of the ScenarioMIP high forcing to the ScenarioMIP middle forcing", + "end_year":"2100", + "experiment":"total solar irradiance reduction to reduce net forcing from SSP585 to SSP245", + "experiment_id":"G6solar", + "min_number_yrs_per_sim":"81", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2020", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "G6sulfur":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Using equatorial SO2 injection, return the radiative forcing from a background of the ScenarioMIP high forcing to the ScenarioMIP middle forcing", + "end_year":"2100", + "experiment":"stratospheric sulfate aerosol injection to reduce net forcing from SSP585 to SSP245", + "experiment_id":"G6sulfur", + "min_number_yrs_per_sim":"81", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2020", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "G7SST1-cirrus":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Time slice at 2020 (ScenarioMIP Tier 1 high forcing scenario and cirrus thinning according to G7cirrus)", + "end_year":"", + "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2020 of SSP5-8.5 and cirrus thinning", + "experiment_id":"G7SST1-cirrus", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "G7SST2-cirrus":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Time slice at 2100 (ScenarioMIP Tier 1 high forcing scenario and cirrus thinning according to G7cirrus)", + "end_year":"", + "experiment":"SSTs from year 2100 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G7cirrus", + "experiment_id":"G7SST2-cirrus", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "GeoMIP" + ], + "parent_experiment_id":[ + "G7cirrus" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "G7cirrus":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Against a background of the ScenarioMIP high forcing, reduce cirrus cloud optical depth by a constant amount", + "end_year":"2100", + "experiment":"increase cirrus ice crystal fall speed to reduce net forcing in SSP585 by 1 W m-2", + "experiment_id":"G7cirrus", + "min_number_yrs_per_sim":"81", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2020", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "a4SST":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"As piSST, but with monthly-varying SSTs taken from years 111-140 of each model's own abrupt-4xCO2 experiment instead of from piControl. Sea-ice is unchanged from piSST", + "end_year":"", + "experiment":"as piSST but with SSTs from abrupt-4xCO2", + "experiment_id":"a4SST", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "a4SSTice":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"As piSST, but with monthly-varying SSTs and sea-ice taken from years 111-140 of each model's own abrupt-4xCO2 experiment instead of from piControl", + "end_year":"", + "experiment":"as piSST but with SSTs and sea ice from abrupt-4xCO2", + "experiment_id":"a4SSTice", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "a4SSTice-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"As a4SSTice, but CO2 is quadrupled, and the increase in CO2 is seen by both the radiation scheme and vegetation", + "end_year":"", + "experiment":"as piSST but with SSTs and sea ice from abrupt-4xCO2, and 4xCO2 seen by radiation and vegetation", + "experiment_id":"a4SSTice-4xCO2", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "abrupt-0p5xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Identical to the DECK abrupt-4xCO2, but at 0.5xCO2", + "end_year":"", + "experiment":"abrupt halving of CO2", + "experiment_id":"abrupt-0p5xCO2", + "min_number_yrs_per_sim":"150", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "abrupt-2xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Identical to the DECK abrupt-4xCO2, but at 2xCO2", + "end_year":"", + "experiment":"abrupt doubling of CO2", + "experiment_id":"abrupt-2xCO2", + "min_number_yrs_per_sim":"150", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "abrupt-4xCO2":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"DECK: abrupt-4xCO2", + "end_year":"", + "experiment":"abrupt quadrupling of CO2", + "experiment_id":"abrupt-4xCO2", + "min_number_yrs_per_sim":"150", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "abrupt-solm4p":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Conceptually similar to abrupt 4xCO2 DECK experiment, except that the solar constant rather than CO2 is abruptly reduced by 4%", + "end_year":"", + "experiment":"abrupt 4% decrease in solar constant", + "experiment_id":"abrupt-solm4p", + "min_number_yrs_per_sim":"150", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "abrupt-solp4p":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Conceptually similar to abrupt 4xCO2 DECK experiment, except that the solar constant rather than CO2 is abruptly increased by 4%", + "end_year":"", + "experiment":"abrupt 4% increase in solar constant", + "experiment_id":"abrupt-solp4p", + "min_number_yrs_per_sim":"150", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "amip":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"DECK: AMIP", + "end_year":"2014", + "experiment":"AMIP", + "experiment_id":"amip", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "amip-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"As CMIP5/CFMIP-2 amip4xCO2 experiment. AMIP experiment where SSTs are held at control values and the CO2 seen by the radiation scheme is quadrupled", + "end_year":"2014", + "experiment":"AMIP SSTs with 4xCO2", + "experiment_id":"amip-4xCO2", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "amip-TIP":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"The topography of the TIP is modified by setting surface elevations to 500m; to understand the combined thermal and mechanical forcing of the TIP. Same model as DECK", + "end_year":"2014", + "experiment":"same as \"amip\" run, but surface elevations of the Tibetan-Iranian Plateau and Himalayas reduced to 500m", + "experiment_id":"amip-TIP", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "amip-TIP-nosh":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Surface sensible heat released at the elevation above 500m over the TIP is not allowed to heat the atmosphere. Same model as DECK", + "end_year":"2014", + "experiment":"same as \"amip\" run, but sensible heat not allowed for elevations of the Tibetan-Iranian Plateau and Himalayas above 500m", + "experiment_id":"amip-TIP-nosh", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "amip-a4SST-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Same as amip, but a patterned SST anomaly is applied on top of the monthly-varying amip SSTs. This anomaly is a monthly climatology, taken from each model's own abrupt-4xCO2 run minus piControl (using the mean of years 111-140 of abrupt-4xCO2, and the parallel 30-year section of piControl). CO2 is quadrupled, and the increase in CO2 is seen by both the radiation scheme and vegetation", + "end_year":"2014", + "experiment":"as AMIP but with warming pattern from abrupt-4xCO2 added to SSTs and 4xCO2 seen by radiation and vegetation", + "experiment_id":"amip-a4SST-4xCO2", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "amip-climSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA5.2: investigate role of transient SST in recent climate change", + "end_year":"2014", + "experiment":"AMIP with climatological SIC", + "experiment_id":"amip-climSIC", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "amip-climSST":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA5.1: investigate role of transient sea ice in recent climate change", + "end_year":"2014", + "experiment":"AMIP with climatological SST", + "experiment_id":"amip-climSST", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "amip-future4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"As CMIP5/CFMIP-2 amipFuture experiment. AMIP experiment where SSTs are subject to a composite SST warming pattern derived from coupled models, scaled to an ice-free ocean mean of 4K", + "end_year":"2014", + "experiment":"AMIP with patterned 4K SST increase", + "experiment_id":"amip-future4K", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "amip-hist":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Extended AMIP run that covers 1870-2014. All natural and anthropogenic historical forcings as used in CMIP6 Historical Simulation will be included. AGCM resolution as CMIP6 Historical Simulation. The HadISST data will be used", + "end_year":"2014", + "experiment":"AMIP-style simulation covering the period 1870-2014", + "experiment_id":"amip-hist", + "min_number_yrs_per_sim":"145", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1870", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "amip-hld":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"The topography of the highlands in Africa, N. America and S. America TP is modified by setting surface elevations to a certain height (500m). Same model as DECK", + "end_year":"2014", + "experiment":"same as \"amip\" run, but surface elevations of the East African Highlands in Africa, Sierra Madre in N. America and Andes in S. America reduced to 500m", + "experiment_id":"amip-hld", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "amip-lfmip-pObs":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Land-hist land conditions; AMIP SSTs", + "end_year":"2014", + "experiment":"prescribed land (from pseudo-observations) and AMIP SSTs", + "experiment_id":"amip-lfmip-pObs", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "amip-lfmip-pdLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Scenario forced experiment with prescribed land surface climatology derived from modern conditions from the first historical ensemble member (1980-2014). SST and sea-ice from the first ensemble members of the historical and ssp585 experiments", + "end_year":"2014", + "experiment":"prescribed modern land surface climatology from historical, prescribed SST and sea-ice from historical plus scenario runs", + "experiment_id":"amip-lfmip-pdLC", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "amip-lfmip-rmLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Scenario forced experiment with prescribed land surface climatology derived from 30yr running mean from the first ensemble members of the historical and ssp585 experiments. SST and sea-ice from the first ensemble members of the historical and ssp585 experiments", + "end_year":"2014", + "experiment":"prescribed land surface climatology from historical plus scenario 30yr running mean, prescribed SST and sea-ice from historical plus scenario runs", + "experiment_id":"amip-lfmip-rmLC", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "amip-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"As amip experiment, but with cloud-radiative effects switched off in the LW radiation code", + "end_year":"2014", + "experiment":"AMIP experiment with longwave cloud-radiative effects off", + "experiment_id":"amip-lwoff", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "amip-m4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"As amip experiment but SSTs are subject to a uniform cooling of 4K", + "end_year":"2014", + "experiment":"AMIP with uniform 4K SST decrease", + "experiment_id":"amip-m4K", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "amip-p4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"As CMIP5/CFMIP-2 amip4K experiment. AMIP experiment where SSTs are subject to a uniform warming of 4K", + "end_year":"2014", + "experiment":"AMIP with uniform 4K SST increase", + "experiment_id":"amip-p4K", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "amip-p4K-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"As amip-p4K experiment, but with cloud-radiative effects switched off in the LW radiation code", + "end_year":"2014", + "experiment":"AMIP experiment with uniform 4K SST increase and with longwave cloud radiative effects off", + "experiment_id":"amip-p4K-lwoff", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "amip-piForcing":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Identical to standard AMIP experiment but from 1870-present with constant pre-industrial forcing levels (anthropogenic and natural)", + "end_year":"2014", + "experiment":"AMIP SSTs with pre-industrial anthropogenic and natural forcing", + "experiment_id":"amip-piForcing", + "min_number_yrs_per_sim":"145", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1870", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "aqua-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Extended version of CMIP5/CFMIP-2 aqua4xCO2 experiment. Aquaplanet experiment where SSTs are held at control values and the CO2 seen by the radiation scheme is quadrupled", + "end_year":"", + "experiment":"aquaplanet with control SST and 4xCO2", + "experiment_id":"aqua-4xCO2", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "aqua-control":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Extended version of CMIP5/CFMIP-2 aquaControl experiment. Aquaplanet (no land) experiment with no seasonal cycle forced with specified zonally symmetric SSTs", + "end_year":"", + "experiment":"aquaplanet control", + "experiment_id":"aqua-control", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "aqua-control-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"As aqua-control experiment, but with cloud-radiative effects switched off in the LW radiation code", + "end_year":"", + "experiment":"aquaplanet control with longwave cloud radiative effects off", + "experiment_id":"aqua-control-lwoff", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "aqua-p4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Extended version of CMIP5/CFMIP-2 aqua4K experiment. Aquaplanet experiment where SSTs are subject to a uniform warming of 4K", + "end_year":"", + "experiment":"aquaplanet with uniform 4K SST increase", + "experiment_id":"aqua-p4K", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "aqua-p4K-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"As aqua-p4K experiment, but with cloud-radiative effects switched off in the LW radiation code", + "end_year":"", + "experiment":"aquaplanet with uniform 4K SST increase and with longwave cloud radiative effects off", + "experiment_id":"aqua-p4K-lwoff", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "control-1950":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "description":"Coupled integrations with constant 1950\"s forcing", + "end_year":"", + "experiment":"coupled control with fixed 1950's forcing (HighResMIP equivalent of pre-industrial control)", + "experiment_id":"control-1950", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "spinup-1950" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "control-slab":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"slab control run for volc-pinatubo-slab", + "end_year":"", + "experiment":"control with slab ocean", + "experiment_id":"control-slab", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "SLAB" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "dcppA-assim":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"A2.3 Assimilation runs used to generate initial conditions for hindcasts", + "end_year":"2016", + "experiment":"Assimilation run paralleling the historical simulation, which may be used to generate hindcast initial conditions", + "experiment_id":"dcppA-assim", + "min_number_yrs_per_sim":"56", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"before 1961", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "dcppA-hindcast":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"A1 (and A2.1, A3.1, and A3.2) Decadal hindcasts begun near the end of each year from 1960 to 2019, or every other year at minimum. First full hindcast year follows start year (e.g., for s1960, first full hindcast year is 1961)", + "end_year":"5 - 10 years after start year", + "experiment":"hindcast initialized based on observations and using historical forcing", + "experiment_id":"dcppA-hindcast", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"a year in the range 1960-2019", + "sub_experiment_id":[ + "s1960", + "s1961", + "s1962", + "s1963", + "s1964", + "s1965", + "s1966", + "s1967", + "s1968", + "s1969", + "s1970", + "s1971", + "s1972", + "s1973", + "s1974", + "s1975", + "s1976", + "s1977", + "s1978", + "s1979", + "s1980", + "s1981", + "s1982", + "s1983", + "s1984", + "s1985", + "s1986", + "s1987", + "s1988", + "s1989", + "s1990", + "s1991", + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999", + "s2000", + "s2001", + "s2002", + "s2003", + "s2004", + "s2005", + "s2006", + "s2007", + "s2008", + "s2009", + "s2010", + "s2011", + "s2012", + "s2013", + "s2014", + "s2015", + "s2016", + "s2017", + "s2018", + "s2019" + ], + "tier":"1" + }, + "dcppA-hindcast-niff":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"A4.1 Decadal hindcasts begun near the end of each year from 1960 to 2019, or every other year at minimum, but with no information from the future. First full hindcast year follows start year (e.g., for s1960, first full hindcast year is 1961)", + "end_year":"5 - 10 years after start year", + "experiment":"hindcast initialized based on observations but without using knowledge of subsequent historical forcing", + "experiment_id":"dcppA-hindcast-niff", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"a year in the range 1960-2019", + "sub_experiment_id":[ + "s1960", + "s1961", + "s1962", + "s1963", + "s1964", + "s1965", + "s1966", + "s1967", + "s1968", + "s1969", + "s1970", + "s1971", + "s1972", + "s1973", + "s1974", + "s1975", + "s1976", + "s1977", + "s1978", + "s1979", + "s1980", + "s1981", + "s1982", + "s1983", + "s1984", + "s1985", + "s1986", + "s1987", + "s1988", + "s1989", + "s1990", + "s1991", + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999", + "s2000", + "s2001", + "s2002", + "s2003", + "s2004", + "s2005", + "s2006", + "s2007", + "s2008", + "s2009", + "s2010", + "s2011", + "s2012", + "s2013", + "s2014", + "s2015", + "s2016", + "s2017", + "s2018", + "s2019" + ], + "tier":"4" + }, + "dcppA-historical-niff":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"A4.2 Hindcasts initialized from historical climate simulations as in DCPP-A2.2, but with no information from the future. First full hindcast year follows start year (e.g., for s1960, first full hindcast year is 1961)", + "end_year":"5 - 10 years after start year", + "experiment":"hindcast initialized from historical climate simulation but without using knowledge of subsequent historical forcing", + "experiment_id":"dcppA-historical-niff", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"a year in the range 1960-2019", + "sub_experiment_id":[ + "s1960", + "s1961", + "s1962", + "s1963", + "s1964", + "s1965", + "s1966", + "s1967", + "s1968", + "s1969", + "s1970", + "s1971", + "s1972", + "s1973", + "s1974", + "s1975", + "s1976", + "s1977", + "s1978", + "s1979", + "s1980", + "s1981", + "s1982", + "s1983", + "s1984", + "s1985", + "s1986", + "s1987", + "s1988", + "s1989", + "s1990", + "s1991", + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999", + "s2000", + "s2001", + "s2002", + "s2003", + "s2004", + "s2005", + "s2006", + "s2007", + "s2008", + "s2009", + "s2010", + "s2011", + "s2012", + "s2013", + "s2014", + "s2015", + "s2016", + "s2017", + "s2018", + "s2019" + ], + "tier":"4" + }, + "dcppB-forecast":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"B1 (and B2.1, B2.2) Ongoing decadal forecasts. First full forecast year follows start year (e.g., for s2017, first full forecast year is 2018)", + "end_year":"5 years after start year", + "experiment":"forecast initialized from observations with forcing from ssp245", + "experiment_id":"dcppB-forecast", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"a year in the range 2017-2029", + "sub_experiment_id":[ + "s2017", + "s2018", + "s2019", + "s2020", + "s2021", + "s2022", + "s2023", + "s2024", + "s2025", + "s2026", + "s2027", + "s2028", + "s2029" + ], + "tier":"1" + }, + "dcppC-amv-ExTrop-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.7 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", + "end_year":"", + "experiment":"Idealized climate impact of negative extratropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-ExTrop-neg", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "dcppC-amv-ExTrop-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.7Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", + "end_year":"", + "experiment":"Idealized climate impact of positive extratropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-ExTrop-pos", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "dcppC-amv-Trop-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.8 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", + "end_year":"", + "experiment":"Idealized climate impact of negative tropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-Trop-neg", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "dcppC-amv-Trop-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.8 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", + "end_year":"", + "experiment":"idealized positive tropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-Trop-pos", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "dcppC-amv-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.3 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", + "end_year":"", + "experiment":"Idealized climate impact of negative AMV anomaly pattern", + "experiment_id":"dcppC-amv-neg", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "dcppC-amv-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.2 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", + "end_year":"", + "experiment":"Idealized climate impact of positive AMV anomaly pattern", + "experiment_id":"dcppC-amv-pos", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "dcppC-atl-control":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.1 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", + "end_year":"", + "experiment":"Idealized Atlantic control", + "experiment_id":"dcppC-atl-control", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "dcppC-atl-pacemaker":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.11 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", + "end_year":"2014", + "experiment":"pacemaker Atlantic experiment", + "experiment_id":"dcppC-atl-pacemaker", + "min_number_yrs_per_sim":"65", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1910, 1920 or 1950", + "sub_experiment_id":[ + "s1910", + "s1920", + "s1950" + ], + "tier":"3" + }, + "dcppC-atl-spg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C2.1 (and C2.2) Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs. First full hindcast year follows start year (e.g., for s1992, first full hindcast year is 1993)", + "end_year":"5 - 10 years after start year", + "experiment":"predictability of 1990s warming of Atlantic sub-polar gyre", + "experiment_id":"dcppC-atl-spg", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"A year in the range 1992-1999", + "sub_experiment_id":[ + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999" + ], + "tier":"3" + }, + "dcppC-forecast-addAgung":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C3.4 Effects of volcanoes on decadal prediction and predictability of forced and internal variability components. First full hindcast year is 2015", + "end_year":"5 - 10 years after start year", + "experiment":"2015 forecast with added Agung forcing", + "experiment_id":"dcppC-forecast-addAgung", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2014", + "sub_experiment_id":[ + "s2014" + ], + "tier":"3" + }, + "dcppC-forecast-addElChichon":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C3.5 Effects of volcanoes on decadal prediction and predictability of forced and internal variability components. First full hindcast year is 2015", + "end_year":"5 - 10 years after start year", + "experiment":"2015 forecast with added El Chichon forcing", + "experiment_id":"dcppC-forecast-addElChichon", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2014", + "sub_experiment_id":[ + "s2014" + ], + "tier":"3" + }, + "dcppC-forecast-addPinatubo":{ + "activity_id":[ + "DCPP", + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C3.6 Effects of volcanoes on decadal prediction and predictability of forced and internal variability components. First full hindcast year is 2015", + "end_year":"5 - 10 years after start year", + "experiment":"2015 forecast with added Pinatubo forcing", + "experiment_id":"dcppC-forecast-addPinatubo", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2014", + "sub_experiment_id":[ + "s2014" + ], + "tier":"1" + }, + "dcppC-hindcast-noAgung":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C3.3 Effects of volcanoes on decadal prediction and predictability of forced and internal variability components. First full hindcast year is 1962", + "end_year":"5 - 10 years after start year", + "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", + "experiment_id":"dcppC-hindcast-noAgung", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1962", + "sub_experiment_id":[ + "s1962" + ], + "tier":"2" + }, + "dcppC-hindcast-noElChichon":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C3.2 Effects of volcanoes on decadal prediction and predictability of forced and internal variability components. First full hindcast year is 1982", + "end_year":"5 - 10 years after start year", + "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", + "experiment_id":"dcppC-hindcast-noElChichon", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1981", + "sub_experiment_id":[ + "s1981" + ], + "tier":"2" + }, + "dcppC-hindcast-noPinatubo":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C3.1 Effects of volcanoes on decadal prediction and predictability of forced and internal variability components. First full hindcast year is 1991", + "end_year":"5 - 10 years after start year", + "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", + "experiment_id":"dcppC-hindcast-noPinatubo", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1990", + "sub_experiment_id":[ + "s1990" + ], + "tier":"1" + }, + "dcppC-ipv-NexTrop-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.9 and predictability of the hiatus and of similar long timescale variations of both signs", + "end_year":"", + "experiment":"idealized negative northern extratropical IPV anomaly pattern", + "experiment_id":"dcppC-ipv-NexTrop-neg", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "dcppC-ipv-NexTrop-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.9 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", + "end_year":"", + "experiment":"idealized positive northern extratropical IPV anomaly pattern", + "experiment_id":"dcppC-ipv-NexTrop-pos", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "dcppC-ipv-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.6 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", + "end_year":"", + "experiment":"idealized negative IPV anomaly pattern", + "experiment_id":"dcppC-ipv-neg", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "dcppC-ipv-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.5 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", + "end_year":"", + "experiment":"idealized positive IPV anomaly pattern", + "experiment_id":"dcppC-ipv-pos", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "dcppC-pac-control":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.4 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", + "end_year":"", + "experiment":"idealized Pacific control", + "experiment_id":"dcppC-pac-control", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "dcppC-pac-pacemaker":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"C1.10 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs. First full hindcast year is 2015", + "end_year":"2014", + "experiment":"pacemaker Pacific experiment", + "experiment_id":"dcppC-pac-pacemaker", + "min_number_yrs_per_sim":"65", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1910, 1920 or 1950", + "sub_experiment_id":[ + "s1910", + "s1920", + "s1950" + ], + "tier":"3" + }, + "deforest-globe":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Idealized deforestation experiment, 20 million km2 forest removed linearly over a period of 50 years, with an additional 30 years with no specified change in forest cover; all other forcings held constant", + "end_year":"", + "experiment":"idealized transient global deforestation", + "experiment_id":"deforest-globe", + "min_number_yrs_per_sim":"81", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "esm-1pct-brch-1000PgC":{ + "activity_id":[ + "C4MIP", + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"A zero-emissions simulation (fully interactive CO2; emissions-driven configuration), initiated from the point in the 1pctCO2 experiment when the cumulative carbon emissions reach 1000 PgC", + "end_year":"", + "experiment":"zero emissions simulation branched from 1% run after 1000 PgC cumulative emission", + "experiment_id":"esm-1pct-brch-1000PgC", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "CMIP", + "C4MIP" + ], + "parent_experiment_id":[ + "1pctCO2", + "esm-1pctCO2" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "esm-1pct-brch-2000PgC":{ + "activity_id":[ + "C4MIP", + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"A zero-emissions simulation (fully interactive CO2; emissions-driven configuration), initiated from the point in the 1pctCO2 experiment when the cumulative carbon emissions reach 2000 PgC", + "end_year":"", + "experiment":"zero emissions simulation branched from 1% run after 2000 PgC cumulative emission", + "experiment_id":"esm-1pct-brch-2000PgC", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "CMIP", + "C4MIP" + ], + "parent_experiment_id":[ + "1pctCO2", + "esm-1pctCO2" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "esm-1pct-brch-750PgC":{ + "activity_id":[ + "C4MIP", + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"A zero-emissions simulation (fully interactive CO2; emissions-driven configuration), initiated from the point in the 1pctCO2 experiment when the cumulative carbon emissions reach 750 PgC", + "end_year":"", + "experiment":"zero emissions simulation branched from 1% run after 750 PgC cumulative emission", + "experiment_id":"esm-1pct-brch-750PgC", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "CMIP", + "C4MIP" + ], + "parent_experiment_id":[ + "1pctCO2", + "esm-1pctCO2" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "esm-1pctCO2":{ + "activity_id":[ + "C4MIP", + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"An emissions-driven simulation (fully interactive CO2), initiated from the esm-piControl using CO2 emissions diagnosed from the 1pctCO2 experiment so that the emissions-driven run replicates as closely as possible the 1pctCO2 concentration profile", + "end_year":"", + "experiment":"emissions driven 1% run", + "experiment_id":"esm-1pctCO2", + "min_number_yrs_per_sim":"150", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "esm-bell-1000PgC":{ + "activity_id":[ + "C4MIP", + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"An emissions-driven simulation (fully interactive CO2), initiated from esm-piControl using CO2 emissions, amounting to 1000 PgC, following a bell-shape curve for 100 years followed by zero-emissions for 100 years", + "end_year":"", + "experiment":"emissions driven 1000PgC bell-curve", + "experiment_id":"esm-bell-1000PgC", + "min_number_yrs_per_sim":"200", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "esm-bell-2000PgC":{ + "activity_id":[ + "C4MIP", + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"An emissions-driven simulation (fully interactive CO2), initiated from esm-piControl using CO2 emissions, amounting to 2000 PgC, following a bell-shape curve for 100 years followed by zero-emissions for 100 years", + "end_year":"", + "experiment":"emissions driven 2000PgC bell-curve", + "experiment_id":"esm-bell-2000PgC", + "min_number_yrs_per_sim":"200", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "esm-bell-750PgC":{ + "activity_id":[ + "C4MIP", + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"An emissions-driven simulation (fully interactive CO2), initiated from esm-piControl using CO2 emissions, amounting to 750 PgC, following a bell-shape curve for 100 years followed by zero-emissions for 100 years", + "end_year":"", + "experiment":"emissions driven 750PgC bell-curve", + "experiment_id":"esm-bell-750PgC", + "min_number_yrs_per_sim":"200", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "esm-hist":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"CMIP6 historical (CO2 emission-driven)", + "end_year":"2014", + "experiment":"all-forcing simulation of the recent past with atmospheric CO2 concentration calculated", + "experiment_id":"esm-hist", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "esm-hist-ext":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Extension beyond 2014 of the CMIP6 historical (CO2 emission-driven)", + "end_year":"present", + "experiment":"post-2014 all-forcing simulation with atmospheric CO2 concentration calculated", + "experiment_id":"esm-hist-ext", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-hist" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "esm-past1000":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Parallel experiment to past1000, but for model set-ups with interactive carbon cycle. Main forcings: trace gases, volcanoes, solar variability, land-use", + "end_year":"1849", + "experiment":"last millennium experiment with interactive carbon cycle", + "experiment_id":"esm-past1000", + "min_number_yrs_per_sim":"1000", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"850", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "esm-pi-CO2pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"100 Gt C instantly added (positive pulse) to a pre-industrial atmosphere (part of the CDR-pi-pulse experiment)", + "end_year":"", + "experiment":"pulse addition of 100 Gt carbon to pre-industrial atmosphere", + "experiment_id":"esm-pi-CO2pulse", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "esm-pi-cdr-pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"100 Gt C instantly removed (negative pulse) from a pre-industrial atmosphere (part of the CDR-pi-pulse experiment)", + "end_year":"", + "experiment":"pulse removal of 100 Gt carbon from pre-industrial atmosphere", + "experiment_id":"esm-pi-cdr-pulse", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "esm-piControl":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"DECK: control (emission-driven)", + "end_year":"", + "experiment":"pre-industrial control simulation with CO2 concentration calculated", + "experiment_id":"esm-piControl", + "min_number_yrs_per_sim":"500", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl-spinup" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "esm-piControl-spinup":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"DECK: spin-up portion of the control (emission-driven)", + "end_year":"", + "experiment":"pre-industrial control simulation with CO2 concentration calculated (spin-up)", + "experiment_id":"esm-piControl-spinup", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "esm-ssp534-over":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"CO2 emissions driven SSP5-3.4 overshoot scenario simulation optionally extending to year 2300 (part of the CDR-overshoot experiment)", + "end_year":"2100 or 2300", + "experiment":"emission-driven SSP5-3.4-OS scenario", + "experiment_id":"esm-ssp534-over", + "min_number_yrs_per_sim":"61", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "esm-ssp585" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2040", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "esm-ssp585":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Emissions-driven future scenario simulation", + "end_year":"2100", + "experiment":"emission-driven RCP8.5 based on SSP5", + "experiment_id":"esm-ssp585", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-hist" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "esm-ssp585-ocn-alk":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"emission driven SSP5-8.5 scenario with 0.14 Pmol/yr alkalinity added to ice free ocean surface waters from 2020 optionally extended from 2100 to 2300 (part of the CDR-ocean-alk experiment)", + "end_year":"2100 or 2300", + "experiment":"emission-driven SSP5-8.5 scenario but with ocean alkalinization from year 2020 onward", + "experiment_id":"esm-ssp585-ocn-alk", + "min_number_yrs_per_sim":"81", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "esm-ssp585" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2020", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "esm-ssp585-ocn-alk-stop":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Simulation of abrupt termination of ocean alkalinsation in 2070 during an emission driven SSP5-8.5 scenario (part of the CDR-ocean-alk experiment)", + "end_year":"2100", + "experiment":"emission-driven SSP5-8.5 scenario with alkalinization terminated in year 2070", + "experiment_id":"esm-ssp585-ocn-alk-stop", + "min_number_yrs_per_sim":"31", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-ssp585-ocn-alk" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2070", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "esm-ssp585-ssp126Lu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Additional land use policy sensitivity simulation for high radiative forcing scenario, keep all forcings the same as in C4MIP esmssp5-8.5 scenario except use SSP1-2.6 land use; emission driven", + "end_year":"2100", + "experiment":"emissions-driven SSP5-8.5 with SSP1-2.6 land use", + "experiment_id":"esm-ssp585-ssp126Lu", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-hist" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "esm-ssp585-ssp126Lu-ext":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Long term extension of CO2 emissions driven SSP5-8.5 with SSP1-2.6 land use forcing (part of the CDR-afforestation experiment)", + "end_year":"2300", + "experiment":"extension of the LUMIP emissions-driven simulation following SSP5-8.5 with SSP1-2.6 land use", + "experiment_id":"esm-ssp585-ssp126Lu-ext", + "min_number_yrs_per_sim":"200", + "parent_activity_id":[ + "LUMIP" + ], + "parent_experiment_id":[ + "esm-ssp585-ssp126Lu" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2101", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "esm-ssp585ext":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Long term extension of CO2 emissions driven SSP5-8.5 scenario (used in the CDR-afforestation and CDR-ocean-alk experiments)", + "end_year":"2300", + "experiment":"emission-driven long-term extension of the SSP5-8.5 scenario", + "experiment_id":"esm-ssp585ext", + "min_number_yrs_per_sim":"200", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "esm-ssp585" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2101", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "esm-yr2010CO2-CO2pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Upon initialization from end of year 2015 of esm-yr2010CO2-control instantaneously introduce 100 Gt C (\"positive pulse\"; part of the CDR-yr2010-pulse experiment)", + "end_year":"2115", + "experiment":"instantaneous 100 Gt C addition to an industrial era atmosphere", + "experiment_id":"esm-yr2010CO2-CO2pulse", + "min_number_yrs_per_sim":"101", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-yr2010CO2-control" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "esm-yr2010CO2-cdr-pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Upon initialization from end of year 2015 of esm-yr2010CO2-control instantaneously remove 100 Gt C (\"negative pulse\"; part of the CDR-yr2010-pulse experiment", + "end_year":"2115", + "experiment":"instantaneous 100 Gt C removal from industrial era atmosphere", + "experiment_id":"esm-yr2010CO2-cdr-pulse", + "min_number_yrs_per_sim":"101", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-yr2010CO2-control" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "esm-yr2010CO2-control":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Forced with CO2 emissions diagnosed from historical and yr2010CO2 simulations and all other forcings the same as in that simulation (part of the CDR-yr2010-pulse experiment)", + "end_year":"2115", + "experiment":"historical emissions followed by fixed 2010 emissions (both model-diagnosed)", + "experiment_id":"esm-yr2010CO2-control", + "min_number_yrs_per_sim":"266", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "esm-yr2010CO2-noemit":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Upon initialization from end of year 2015 of esm-yr2010-control CO2 emissions are fixed at zero; all other forcing fixed at 2010 level (part of the CDR-yr2010-pulse experiment)", + "end_year":"2115", + "experiment":"branches from esm-yr2010CO2-control with zero emissions", + "experiment_id":"esm-yr2010CO2-noemit", + "min_number_yrs_per_sim":"101", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-yr2010CO2-control" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "faf-all":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"1xCO2 experiment, parallel to piControl, forced over the ocean simultaneously by surface windstress (as in the wind experiment), net heat flux (as in the heat experiment) and net freshwater flux (as in the water experiment) anomalies obtained from the CMIP5 ensemble mean of 1pctCO2 experiments at the time of 2xCO2, using a passive tracer to prevent negative climate feedback on the heat flux applied", + "end_year":"", + "experiment":"control plus perturbative surface fluxes of momentum, heat and water into ocean", + "experiment_id":"faf-all", + "min_number_yrs_per_sim":"70", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "faf-antwater-stress":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"1xCO2 experiment, parallel to piControl, forced over the ocean with the momentum flux perturbation field of faf-stress and a surface freshwater flux of 0.1 Sv in total to be applied uniformly around the coast of Antarctica in whatever way is most suitable in the model", + "end_year":"", + "experiment":"control plus perturbative surface fluxes of momentum and freshwater into ocean, the latter around the coast of Antarctica only", + "experiment_id":"faf-antwater-stress", + "min_number_yrs_per_sim":"70", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "faf-heat":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"1xCO2 experiment, parallel to piControl, forced over the ocean by surface net heat flux anomalies obtained from the CMIP5 ensemble mean of 1pctCO2 experiments at the time of 2xCO2, using a passive tracer to prevent negative climate feedback on the heat flux applied", + "end_year":"", + "experiment":"control plus perturbative surface flux of heat into ocean", + "experiment_id":"faf-heat", + "min_number_yrs_per_sim":"70", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "faf-heat-NA0pct":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"1xCO2 experiment, parallel to piControl, forced over the ocean by the same method and with the same surface net heat flux perturbation field as in faf-heat, except that within part of the North Atlantic ocean the perturbation is zero", + "end_year":"", + "experiment":"control plus perturbative surface flux of heat into ocean", + "experiment_id":"faf-heat-NA0pct", + "min_number_yrs_per_sim":"70", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "faf-heat-NA50pct":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"1xCO2 experiment, parallel to piControl, forced over the ocean by the same method and with the same surface net heat flux perturbation field as in faf-heat, except that within part of the North Atlantic ocean the perturbation is multiplied by 0.5", + "end_year":"", + "experiment":"control plus perturbative surface flux of heat into ocean", + "experiment_id":"faf-heat-NA50pct", + "min_number_yrs_per_sim":"70", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "faf-passiveheat":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"1xCO2 experiment, parallel to piControl, with a flux of passive tracer added at the ocean surface at the same rate as the surface net heat flux anomaly applied in the FAFMIP heat experiment", + "end_year":"", + "experiment":"control plus surface flux of passive heat tracer into ocean", + "experiment_id":"faf-passiveheat", + "min_number_yrs_per_sim":"70", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "faf-stress":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"1xCO2 experiment, parallel to piControl, forced over the ocean by surface windstress anomalies obtained from the CMIP5 ensemble mean of 1pctCO2 experiments at the time of 2xCO2", + "end_year":"", + "experiment":"control plus perturbative surface flux of momentum into ocean", + "experiment_id":"faf-stress", + "min_number_yrs_per_sim":"70", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "faf-water":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"1xCO2 experiment, parallel to piControl, forced over the ocean by surface net freshwater flux anomalies obtained from the CMIP5 ensemble mean of 1pctCO2 experiments at the time of 2xCO2", + "end_year":"", + "experiment":"control plus perturbative surface flux of water into ocean", + "experiment_id":"faf-water", + "min_number_yrs_per_sim":"70", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "futSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA1.4: investigate role of SST in polar amplification", + "end_year":"2001", + "experiment":"Atmosphere time slice with future SST and present day SIC", + "experiment_id":"futSST-pdSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "futureSST-4xCO2-solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Time slice at year 100 of G1ext to examine radiative forcing of abrupt-4xCO2 and G1", + "end_year":"", + "experiment":"year 100 SSTs from abrupt-4xCO2 with quadrupled CO2 and solar reduction", + "experiment_id":"futureSST-4xCO2-solar", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "GeoMIP" + ], + "parent_experiment_id":[ + "G1" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "highres-future":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "description":"Coupled integrations with SSP5 forcing (nearest to CMIP5 RCP8.5 (as in highresSST-future)", + "end_year":"2050", + "experiment":"coupled future 2015-2050 using a scenario as close to CMIP5 RCP8.5 as possible within CMIP6", + "experiment_id":"highres-future", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "hist-1950" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "highresSST-4xCO2":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "description":"Similar to CFMIP amip-4xCO2, SSTs are held at highresSST-present values and the CO2 seen by the radiation scheme is quadrupled", + "end_year":"2014", + "experiment":"highresSST-present SST with 4xCO2 concentrations", + "experiment_id":"highresSST-4xCO2", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "highresSST-LAI":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "description":"Forced global atmosphere-land simulations as highresSST-present, but using an common LAI dataset across models", + "end_year":"2014", + "experiment":"common LAI dataset within the highresSST-present experiment", + "experiment_id":"highresSST-LAI", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "highresSST-future":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "description":"Extend highresSST-present to 2050 with agreed SSP5/RCP8.5 forcings (with option to extend further to 2100)", + "end_year":"2050", + "experiment":"forced atmosphere experiment for 2015-2050 using SST/sea-ice derived from CMIP5 RCP8.5 simulations and a scenario as close to RCP8.5 as possible within CMIP6", + "experiment_id":"highresSST-future", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "highresSST-p4K":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "description":"Similar to CFMIP amip-p4K, add a uniform warming of 4K to highresSST-present SSTs and run the experiment parallel to highresSST-present", + "end_year":"2014", + "experiment":"uniform 4K warming of highresSST-present SST", + "experiment_id":"highresSST-p4K", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "highresSST-present":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "description":"Forced global atmosphere-land simulations using daily 1/4 degree SST and sea-ice forcings, and aerosol optical properties (not emissions) to constrain model spread", + "end_year":"2014", + "experiment":"forced atmosphere experiment for 1950-2014", + "experiment_id":"highresSST-present", + "min_number_yrs_per_sim":"65", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1950", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "highresSST-smoothed":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "description":"Forced global atmosphere-land simulations as highresSST-present, but using smoothed SST to investigate impact of SST variability", + "end_year":"2014", + "experiment":"smoothed SST version of highresSST-present", + "experiment_id":"highresSST-smoothed", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "hist-1950":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "description":"Coupled integrations with historic external forcings (as in highresSST-present)", + "end_year":"2014", + "experiment":"coupled historical 1950-2014", + "experiment_id":"hist-1950", + "min_number_yrs_per_sim":"65", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "spinup-1950" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1950", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "hist-1950HC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Historical WMGHG concentrations and NTCF emissions, 1950 halocarbon concentrations, start 1950", + "end_year":"2014", + "experiment":"historical forcing, but with1950s halocarbon concentrations; initialized in 1950", + "experiment_id":"hist-1950HC", + "min_number_yrs_per_sim":"65", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "AER", + "CHEM" + ], + "start_year":"1950", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "hist-CO2":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Historical CO2-only run", + "end_year":"2020", + "experiment":"historical CO2-only run", + "experiment_id":"hist-CO2", + "min_number_yrs_per_sim":"171", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "hist-GHG":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Historical well-mixed GHG-only run. Models with interactive chemistry schemes should either turn off the chemistry or use a preindustrial climatology of stratospheric and tropospheric ozone in their radiation schemes. This will ensure that ozone is fixed in all these simulations, and simulated responses in models with and without coupled chemistry are comparable", + "end_year":"2020", + "experiment":"historical well-mixed GHG-only run", + "experiment_id":"hist-GHG", + "min_number_yrs_per_sim":"171", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "hist-GHG-cmip5":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"historical well-mixed GHG-only run. Models with interactive chemistry schemes should either turn off the chemistry or use a preindustrial climatology of stratospheric and tropospheric ozone in their radiation schemes. This will ensure that ozone is fixed in all these simulations, and simulated responses in models with and without coupled chemistry are comparable (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", + "end_year":"2020", + "experiment":"historical well-mixed GHG-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", + "experiment_id":"hist-GHG-cmip5", + "min_number_yrs_per_sim":"171", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "hist-aer":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"historical anthropogenic aerosols-only run", + "end_year":"2020", + "experiment":"historical anthropogenic aerosols-only run", + "experiment_id":"hist-aer", + "min_number_yrs_per_sim":"171", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "hist-aer-cmip5":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"historical anthropogenic aerosols-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", + "end_year":"2020", + "experiment":"historical anthropogenic aerosols-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", + "experiment_id":"hist-aer-cmip5", + "min_number_yrs_per_sim":"171", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "hist-all-aer2":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Historical ALL forcing run with alternate estimates of aerosol concentrations/emissions", + "end_year":"2020", + "experiment":"historical ALL-forcing run with alternate estimates of aerosol forcing", + "experiment_id":"hist-all-aer2", + "min_number_yrs_per_sim":"171", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "hist-all-nat2":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Historical ALL forcing run with alternates estimate of solar and volcanic forcing", + "end_year":"2020", + "experiment":"historical ALL-forcing run with alternate estimates of natural forcing", + "experiment_id":"hist-all-nat2", + "min_number_yrs_per_sim":"171", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "hist-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Concentration-driven historical simulation, biogeochemically-coupled", + "end_year":"2014", + "experiment":"biogeochemically-coupled version of the simulation of the recent past with CO2 concentration prescribed", + "experiment_id":"hist-bgc", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "hist-nat":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Historical natural-only run", + "end_year":"2020", + "experiment":"historical natural-only run", + "experiment_id":"hist-nat", + "min_number_yrs_per_sim":"171", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "hist-nat-cmip5":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"historical natural-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", + "end_year":"2020", + "experiment":"historical natural-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", + "experiment_id":"hist-nat-cmip5", + "min_number_yrs_per_sim":"171", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "hist-noLu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Same as CMIP6 historical but with land cover held at 1850, no human activity; concentration driven", + "end_year":"2014", + "experiment":"historical with no land-use change", + "experiment_id":"hist-noLu", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "hist-piAer":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Historical WMGHG, halocarbon concentrations and O3 precursor emissions, 1850 aerosol precursor emissions", + "end_year":"2014", + "experiment":"historical forcing, but with pre-industrial aerosol emissions", + "experiment_id":"hist-piAer", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "hist-piNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Historical WMGHG and halocarbons concentrations, 1850 NTCF emissions", + "end_year":"2014", + "experiment":"historical forcing, but with pre-industrial NTCF emissions", + "experiment_id":"hist-piNTCF", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "hist-resAMO":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Pacemaker 20th century historical run that includes all forcing as used in CMIP6 Historical Simulation, and the observational historical SST is restored in the AMO domain (0deg-70degN, 70degW-0deg)", + "end_year":"2014", + "experiment":"initialized from \"historical\" run year 1870 and SSTs in the AMO domain (0deg-70degN, 70degW-0deg) restored to AMIP SSTs with historical forcings", + "experiment_id":"hist-resAMO", + "min_number_yrs_per_sim":"145", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1870", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "hist-resIPO":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Pacemaker 20th century historical run that includes all forcing as used in CMIP6 Historical Simulation, and the observational historical SST is restored in the tropical lobe of the IPO domain (20degS-20degN, 175degE-75degW)", + "end_year":"2014", + "experiment":"initialized from \"historical\" run year 1870 and SSTs in tropical lobe of the IPO domain (20degS-20degN, 175degE-75degW) restored to AMIP SSTs with historical forcings", + "experiment_id":"hist-resIPO", + "min_number_yrs_per_sim":"145", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1870", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "hist-sol":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Historical solar-only transient simulation using settings from CMIP6 historical simulation but fixed GHG and ODS (1850 level)", + "end_year":"2020", + "experiment":"historical solar-only run", + "experiment_id":"hist-sol", + "min_number_yrs_per_sim":"171", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "hist-spAer-aer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Prescribed anthropogenic aerosol optical properties. Changes in aerosols only", + "end_year":"2014", + "experiment":"historical simulation with specified anthropogenic aerosols, no other forcings", + "experiment_id":"hist-spAer-aer", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "hist-spAer-all":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Prescribed anthropogenic aerosol optical properties. All forcings", + "end_year":"2014", + "experiment":"historical simulation with specified anthropogenic aerosols", + "experiment_id":"hist-spAer-all", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "hist-stratO3":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "BGC" + ], + "description":"Historical stratospheric ozone-only. In models with coupled chemistry, the chemistry scheme should be turned off, and the simulated ensemble mean monthly mean 3D stratospheric ozone concentrations from the CMIP6 historical simulations should be prescribed. Tropospheric ozone should be fixed at 3D long-term monthly mean piControl values, with a value of 100 ppbv ozone concentration in this piControl climatology used to separate the troposphere from the stratosphere. In models without coupled chemistry the same stratospheric ozone prescribed in the CMIP6 historical simulations should be prescribed. Stratospheric ozone concentrations will be provided by CCMI", + "end_year":"2020", + "experiment":"historical stratospheric ozone-only run", + "experiment_id":"hist-stratO3", + "min_number_yrs_per_sim":"171", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "hist-totalO3":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "BGC" + ], + "description":"Historical total ozone-only. In models with coupled chemistry, the chemistry scheme should be turned off, and the simulated ensemble mean monthly mean 3D ozone concentrations from the CMIP6 historical simulations should be prescribed through the depth of the atmosphere. In models without coupled chemistry the same ozone prescribed in the CMIP6 historical simulations should be prescribed", + "end_year":"2020", + "experiment":"historical total ozone-only run", + "experiment_id":"hist-totalO3", + "min_number_yrs_per_sim":"171", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "hist-volc":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Historical volcanic-only run", + "end_year":"2020", + "experiment":"historical volcanic-only run", + "experiment_id":"hist-volc", + "min_number_yrs_per_sim":"171", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "histSST":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Historical transient with SSTs prescribed from historical", + "end_year":"2014", + "experiment":"historical prescribed SSTs and historical forcing", + "experiment_id":"histSST", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "histSST-1950HC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Historical WMGHG concentrations and NTCF emissions, 1950 halocarbon concentrations", + "end_year":"2014", + "experiment":"historical SSTs and historical forcing, but with 1950 halocarbon concentrations. Experiment is initialized from histSST (AerChemMIP) simulation from January 1950", + "experiment_id":"histSST-1950HC", + "min_number_yrs_per_sim":"65", + "parent_activity_id":[ + "AerChemMIP" + ], + "parent_experiment_id":[ + "histSST" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"1950", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "histSST-noLu":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"An uncoupled (atmosphere and land) experiment in which sea surface temperatures (SST) and sea ice concentrations (SICONC) are taken from historical (as in existing histSST experiment). All forcing agents to follow historical except LULCC. LULCC set to 1850 (exactly following hist-noLu prescription)", + "end_year":"2014", + "experiment":"historical SSTs and historical forcing, but with pre-industrial LULCC", + "experiment_id":"histSST-noLu", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "histSST-piAer":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Historical WMGHG, halocarbon concentrations and tropospheric ozone precursors emissions, 1850 aerosol precursor emissions, prescribed SSTs", + "end_year":"2014", + "experiment":"historical SSTs and historical forcing, but with pre-industrial aerosol emissions", + "experiment_id":"histSST-piAer", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "histSST-piCH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Historical (non-CH4) WMGHG concentrations and NTCF emissions, 1850 CH4 concentrations", + "end_year":"2014", + "experiment":"historical SSTs and historical forcing, but with pre-industrial methane concentrations", + "experiment_id":"histSST-piCH4", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "histSST-piN2O":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Historical (non-N2O) WMGHG concentrations and NTCF emissions, 1850 N2O concentrations", + "end_year":"2014", + "experiment":"historical SSTs and historical forcings, but with pre-industrial N2O concentrations", + "experiment_id":"histSST-piN2O", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "histSST-piNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Historical WMGHG concentrations and halocarbons emissions, 1850 NTCF emissions, prescribed SSTs", + "end_year":"2014", + "experiment":"historical SSTs and historical forcing, but with pre-industrial NTCF emissions", + "experiment_id":"histSST-piNTCF", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "histSST-piO3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Historical WMGHG, halocarbon concentrations and aerosol precursor emissions, 1850 tropospheric ozone precursors emissions, prescribed SSTs", + "end_year":"2014", + "experiment":"historical SSTs and historical forcing, but with pre-industrial ozone precursor emissions", + "experiment_id":"histSST-piO3", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "historical":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"CMIP6 historical", + "end_year":"2014", + "experiment":"all-forcing simulation of the recent past", + "experiment_id":"historical", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP", + "PMIP" + ], + "parent_experiment_id":[ + "piControl", + "past1000", + "past2k" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "historical-cmip5":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"CMIP5 historical experiment, using CMIP5-era [1850-2005] forcing", + "end_year":"2005", + "experiment":"all-forcing simulation of the recent past (CMIP5-era [1850-2005] forcing)", + "experiment_id":"historical-cmip5", + "min_number_yrs_per_sim":"156", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "historical-ext":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Extension beyond 2014 of the CMIP6 historical", + "end_year":"present", + "experiment":"post-2014 all-forcing simulation", + "experiment_id":"historical-ext", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "historical-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Historical simulation that includes interactive ice sheets. Set up follows the historical experiment", + "end_year":"2014", + "experiment":"historical with interactive ice sheet", + "experiment_id":"historical-withism", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "piControl-withism" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ism-1pctCO2to4x-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Idealized 1%/yr CO2 increase to 4xC02 over 140yrs and kept constant at 4xCO2 for an additional 200 to 400 yrs simulation with ice sheets forced \"offline\" with DECK 1pctCO2 using forcing from its own AOGCM", + "end_year":"", + "experiment":"offline ice sheet model forced by ISM's own AOGCM 1pctCO2to4x output", + "experiment_id":"ism-1pctCO2to4x-self", + "min_number_yrs_per_sim":"350", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-piControl-self" + ], + "required_model_components":[ + "ISM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ism-1pctCO2to4x-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Idealized 1%/yr CO2 increase to 4xC02 over 140yrs and kept constant at 4xCO2 for an additional 200 to 400 yrs simulation with ice sheets forced \"offline\" with DECK 1pctCO2 using a standard forcing", + "end_year":"", + "experiment":"offline ice sheet model forced by ISMIP6-specified AOGCM 1pctCO2to4x output", + "experiment_id":"ism-1pctCO2to4x-std", + "min_number_yrs_per_sim":"350", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-pdControl-std" + ], + "required_model_components":[ + "ISM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ism-amip-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Offline ice sheet evolution for the last few decades forced by amip", + "end_year":"2014", + "experiment":"offline ice sheet forced by ISMIP6-specified AGCM AMIP output", + "experiment_id":"ism-amip-std", + "min_number_yrs_per_sim":"36", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-ctrl-std" + ], + "required_model_components":[ + "ISM" + ], + "start_year":"1979", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "ism-asmb-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Offline ice sheet simulation with synthetic atmospheric dataset to explore the uncertainty in sea level due to ice sheet initialization", + "end_year":"", + "experiment":"offline ice sheet forced by initMIP synthetic atmospheric experiment", + "experiment_id":"ism-asmb-std", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-ctrl-std" + ], + "required_model_components":[ + "ISM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ism-bsmb-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Offline ice sheet simulation with synthetic oceanic dataset to explore the uncertainty in sea level due to ice sheet initialization", + "end_year":"", + "experiment":"offline ice sheet forced by initMIP synthetic oceanic experiment", + "experiment_id":"ism-bsmb-std", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-ctrl-std" + ], + "required_model_components":[ + "ISM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ism-ctrl-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Offline ice sheet control run for the initMIP experiment that explores the uncertainty in sea level due to ice sheet initialization", + "end_year":"", + "experiment":"offline ice sheet model initMIP control", + "experiment_id":"ism-ctrl-std", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ism-historical-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Historical simulation using \"offline\" ice sheet models. Forcing for ice sheet model is from its own AOGCM", + "end_year":"2014", + "experiment":"offline ice sheet forced by ISM's own AOGCM historical output", + "experiment_id":"ism-historical-self", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-piControl-self" + ], + "required_model_components":[ + "ISM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ism-historical-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Historical simulation using \"offline\" ice sheet models. Forcing for ice sheet model is the standard dataset based on CMIP6 AOGCM historical", + "end_year":"2014", + "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM historical output", + "experiment_id":"ism-historical-std", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-pdControl-std" + ], + "required_model_components":[ + "ISM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ism-lig127k-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Last interglacial simulation of ice sheet evolution driven by PMIP lig127k", + "end_year":"", + "experiment":"offline ice sheet forced by ISMIP6-specified AGCM last interglacial output", + "experiment_id":"ism-lig127k-std", + "min_number_yrs_per_sim":"20000", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "ism-pdControl-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Present-day control simulation for \"offline\" ice sheets", + "end_year":"", + "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM pdControl output", + "experiment_id":"ism-pdControl-std", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ism-piControl-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Pre-industrial control simulation for \"offline\" ice sheets", + "end_year":"", + "experiment":"offline ice sheet forced by ISM's own AOGCM piControl output", + "experiment_id":"ism-piControl-self", + "min_number_yrs_per_sim":"500", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ism-ssp585-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Future climate ScenarioMIP SSP5-8.5 simulation using \"offline\" ice sheet models. Forcing for ice sheet model is from its own AOGCM", + "end_year":"2100 or 2300", + "experiment":"offline ice sheet forced by ISM's own AOGCM ssp585 output", + "experiment_id":"ism-ssp585-self", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-historical-self" + ], + "required_model_components":[ + "ISM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ism-ssp585-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Future climate ScenarioMIP SSP5-8.5 simulation using \"offline\" ice sheet models. Forcing for ice sheet model is the standard dataset based on ScenarioMIP ssp585", + "end_year":"2100 or 2300", + "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM ssp585 output", + "experiment_id":"ism-ssp585-std", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-historical-std" + ], + "required_model_components":[ + "ISM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-cCO2":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Same as land-hist except with CO2 held constant", + "end_year":"2014", + "experiment":"historical land-only constant CO2", + "experiment_id":"land-cCO2", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-cClim":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Same as land-hist except with climate held constant", + "end_year":"2014", + "experiment":"historical land-only constant climate", + "experiment_id":"land-cClim", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-crop-grass":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Same as land-hist but with all new crop and pastureland treated as unmanaged grassland", + "end_year":"2014", + "experiment":"historical land-only with cropland as natural grassland", + "experiment_id":"land-crop-grass", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-crop-noFert":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Same as land-hist but with fertilization rates and area held at 1850 levels/distribution", + "end_year":"2014", + "experiment":"historical land-only with no fertilizer", + "experiment_id":"land-crop-noFert", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-crop-noIrrig":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Same as land-hist but with irrigated area held at 1850 levels", + "end_year":"2014", + "experiment":"historical land-only with no irrigation", + "experiment_id":"land-crop-noIrrig", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-crop-noIrrigFert":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Same as land-hist except with plants in cropland area utilizing at least some form of crop management (e.g., planting and harvesting) rather than simulating cropland vegetation as a natural grassland. Irrigated area and fertilizer area/use should be held constant", + "end_year":"2014", + "experiment":"historical land-only with managed crops but with irrigation and fertilization held constant", + "experiment_id":"land-crop-noIrrigFert", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-hist":{ + "activity_id":[ + "LS3MIP", + "LUMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Land only simulations", + "end_year":"2014", + "experiment":"historical land-only", + "experiment_id":"land-hist", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "land-hist-altLu1":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Land only simulations", + "end_year":"2014", + "experiment":"historical land-only alternate land-use history", + "experiment_id":"land-hist-altLu1", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-hist-altLu2":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Land only simulations", + "end_year":"2014", + "experiment":"historical land-only alternate land use history", + "experiment_id":"land-hist-altLu2", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-hist-altStartYear":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Same as land-hist except starting from either 1700 (for models that typically start in 1850) or 1850 (for models that typically start in 1700)", + "end_year":"2014", + "experiment":"historical land-only alternate start year", + "experiment_id":"land-hist-altStartYear", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "land-hist-cruNcep":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Land only simulations", + "end_year":"2014", + "experiment":"as land-hist with CRU-NCEP forcings", + "experiment_id":"land-hist-cruNcep", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-hist-princeton":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Land only simulations", + "end_year":"2014", + "experiment":"as land-hist with Princeton forcings", + "experiment_id":"land-hist-princeton", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-hist-wfdei":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Land only simulations", + "end_year":"2014", + "experiment":"as land-hist with WFDEI forcings", + "experiment_id":"land-hist-wfdei", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-noFire":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Same as land-hist but with anthropogenic ignition and suppression held to 1850 levels", + "end_year":"2014", + "experiment":"historical land-only with no human fire management", + "experiment_id":"land-noFire", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-noLu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Same as land-hist except no land-use change", + "end_year":"2014", + "experiment":"historical land-only with no land-use change", + "experiment_id":"land-noLu", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "land-noPasture":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Same as land-hist but with grazing and other management on pastureland held at 1850 levels/distribution, i.e. all new pastureland is treated as unmanaged grassland (as in land-crop-grass)", + "end_year":"2014", + "experiment":"historical land-only with constant pastureland", + "experiment_id":"land-noPasture", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-noShiftCultivate":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Same as land-hist except shifting cultivation turned off. An additional LUC transitions dataset will be provided as a data layer within LUMIP LUH2 dataset with shifting cultivation deactivated", + "end_year":"2014", + "experiment":"historical land-only with shifting cultivation turned off", + "experiment_id":"land-noShiftCultivate", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-noWoodHarv":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Same as land-hist but with wood harvest maintained at 1850 amounts/areas", + "end_year":"2014", + "experiment":"historical land-only with no wood harvest", + "experiment_id":"land-noWoodHarv", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "start_year":"1850 or 1700", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-ssp126":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"land only simulation for ssp1-2.6", + "end_year":"2100", + "experiment":"future ssp1-2.6 land only", + "experiment_id":"land-ssp126", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "land-ssp434":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"land only simulation for ssp4-3.4", + "end_year":"2100", + "experiment":"future ssp4-3.4 land only", + "experiment_id":"land-ssp434", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "land-ssp585":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"land only simulation for ssp5-8.5", + "end_year":"2100", + "experiment":"future ssp5-8.5 land only", + "experiment_id":"land-ssp585", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "lfmip-initLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Initialized pseudo-observations land", + "end_year":"2014", + "experiment":"initialized from \"historical\" run year 1980, but with land conditions initialized from pseudo-observations", + "experiment_id":"lfmip-initLC", + "min_number_yrs_per_sim":"35", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1980", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "lfmip-pdLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Prescribed land conditions 1980-2014 climate", + "end_year":"2100", + "experiment":"prescribed land conditions (from current climate climatology) and initialized from \"historical\" run year 1980", + "experiment_id":"lfmip-pdLC", + "min_number_yrs_per_sim":"121", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1980", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "lfmip-pdLC-cruNcep":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Prescribed land conditions 1980-2014 climate with Land-Hist-cruNcep", + "end_year":"2100", + "experiment":"as LFMIP-pdLC with Land-Hist-cruNcep", + "experiment_id":"lfmip-pdLC-cruNcep", + "min_number_yrs_per_sim":"121", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1980", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "lfmip-pdLC-princeton":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Prescribed land conditions 1980-2014 climate with Land-Hist-princeton", + "end_year":"2100", + "experiment":"as LFMIP-pdLC with Land-Hist-princeton", + "experiment_id":"lfmip-pdLC-princeton", + "min_number_yrs_per_sim":"121", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1980", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "lfmip-pdLC-wfdei":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Prescribed land conditions 1980-2014 climate with Land-Hist-wfdei", + "end_year":"2100", + "experiment":"as LFMIP-pdLC with Land-Hist-wfdei", + "experiment_id":"lfmip-pdLC-wfdei", + "min_number_yrs_per_sim":"121", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1980", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "lfmip-rmLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Prescribed land conditions 30yr running mean", + "end_year":"2100", + "experiment":"prescribed land conditions (from running mean climatology) and initialized from \"historical\" run year 1980", + "experiment_id":"lfmip-rmLC", + "min_number_yrs_per_sim":"121", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1980", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "lfmip-rmLC-cruNcep":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Prescribed land conditions 30yr running mean with Land-Hist-cruNcep", + "end_year":"2100", + "experiment":"as LFMIP-rmLC with Land-Hist-cruNcep", + "experiment_id":"lfmip-rmLC-cruNcep", + "min_number_yrs_per_sim":"121", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1980", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "lfmip-rmLC-princeton":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Prescribed land conditions 30yr running mean with Land-Hist-princeton", + "end_year":"2100", + "experiment":"as LFMIP-rmLC with Land-Hist-princeton", + "experiment_id":"lfmip-rmLC-princeton", + "min_number_yrs_per_sim":"121", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1980", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "lfmip-rmLC-wfdei":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Prescribed land conditions 30yr running mean with Land-Hist-wfdei", + "end_year":"2100", + "experiment":"as LFMIP-rmLC with Land-Hist-wfdei", + "experiment_id":"lfmip-rmLC-wfdei", + "min_number_yrs_per_sim":"121", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1980", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "lgm":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"main forcings: ice-sheet; trace gases, astronomical parameters, dust (forcing, or feedback if dust cycle represented in model)", + "end_year":"", + "experiment":"last glacial maximum", + "experiment_id":"lgm", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "lig127k":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"main forcings: astronomical parameters, trace gases, dust (forcing, or feedback if dust cycle represented in model)", + "end_year":"", + "experiment":"last interglacial (127k)", + "experiment_id":"lig127k", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "midHolocene":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"main forcings: trace gases, orbital parameters, dust (forcing, or feedback if dust cycle represented in model)", + "end_year":"", + "experiment":"mid-Holocene", + "experiment_id":"midHolocene", + "min_number_yrs_per_sim":"200", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "midPliocene-eoi400":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"main forcings: trace gases, orography, ice-sheet", + "end_year":"", + "experiment":"mid-Pliocene warm period", + "experiment_id":"midPliocene-eoi400", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "modelSST-futArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA4.2: investigate role of background state in response to Arctic sea ice", + "end_year":"2001", + "experiment":"Atmosphere time slice with present day coupled model SST and future Arctic SIC", + "experiment_id":"modelSST-futArcSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "modelSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA4.1: atmosphere only model present day control with coupled model SST", + "end_year":"2001", + "experiment":"Atmosphere time slice present day control with coupled model SST", + "experiment_id":"modelSST-pdSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "omip1":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Global ocean - sea-ice coupled experiment forced with the Coordinated Ocean - ice Reference Experiments inter-annually varying atmospheric and river data sets for years 1948-2009. Initial ocean tracer fields are based on observations. Simulation length for at least 5 cycles of the 62-year forcing is required. The 5-cycle length is recommended to facilitate intercomparison within the experiment by using a common simulation length, but a longer simulation length is also accepted. For each simulation, set the beginning of the simulation (e.g., 1700 and 1638 for the 5-cycle and 6-cycle simulation, respectively) as the 'base time' of the time axis. Simulations with different simulation lengths by a single model are treated as members of an ensemble. Thus, different 'realization' indexes (e.g., r1, r2, r3, ...) should be used in a global attribute named 'variant_index' (e.g., r1i1p1f1). It is requested that information relevant to understanding the differences in members of an ensemble of simulations is reported in a global attribute named 'variant_info'. This information should also be recorded in the ES-DOC documentation of each experiment performed by a model and be made available via the 'further_info_url' attribute. All Priority=1 OMIP diagnostics (Omon, Oyr) are requested for all cycles of the 62-year forcing to quantify drift. All OMIP diagnostics (Priority=1,2,3) are requested for the last cycle", + "end_year":"", + "experiment":"OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized with observed physical and biogeochemical ocean data", + "experiment_id":"omip1", + "min_number_yrs_per_sim":"310", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "omip1-spunup":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[], + "description":"Same as the omip1 experiment except that it is not initialized with observed climatologies; rather it is initialized with results from at least a 2000-year spin up of the coupled physical-biogeochemical models. The spin up simulations may be made with the classic online or offline approach, or with tracer-acceleration techniques or fast solvers. If an online approach is used, at the end of the 5th cycle of CORE-II forcing, the model's physical fields should be reinitialized to the values at the start of the 3rd cycle in order to avoid long-term drift in those fields and to assure that they will not diverge greatly from physical fields in the omip1 simulation. The spin up also includes radiocarbon to evaluate deep-ocean circulation", + "end_year":"", + "experiment":"OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model", + "experiment_id":"omip1-spunup", + "min_number_yrs_per_sim":"310", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "omip2":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Global ocean - sea-ice coupled experiment forced with the JRA55-do inter-annually varying atmospheric and river data sets for years 1958-2018. Initial ocean tracer fields are based on observations. Simulation length for at least 6 cycles of the 61-year forcing is required. The 6-cycle length is recommended to facilitate intercomparison within the experiment by using a common simulation length, but a longer simulation length is also accepted. In each simulation, set the beginning of the simulation (e.g., 1653 for the 6-cycle simulation) as the 'base time' of the time axis. Simulations with different simulation lengths by a single model are treated as members of an ensemble. Thus, different 'realization' indexes (e.g., r1, r2, r3, ...) should be used in a global attribute named 'variant_index' (e.g., r1i1p1f1). It is requested that information relevant to understanding the differences in members of an ensemble of simulations is reported in a global attribute named 'variant_info'. This information should also be recorded in the ES-DOC documentation of each experiment performed by a model and be made available via the 'further_info_url' attribute. All Priority=1 OMIP diagnostics (Omon, Oyr) are requested for all cycles of the 61-year forcing to quantify drift. All OMIP diagnostics (Priority=1,2,3) are requested for the last cycle", + "end_year":"", + "experiment":"OMIP experiment forced by JRA55-do atmospheric data set and initialized with observed physical and biogeochemical ocean data", + "experiment_id":"omip2", + "min_number_yrs_per_sim":"366", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "omip2-spunup":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[], + "description":"Same as the omip2 experiment except that it is not initialized with observed climatologies; rather it is initialized with results from at least a 2000-year spin up of the coupled physical-biogeochemical models. The spin up simulations may be made with the classic online or offline approach, or with tracer-acceleration techniques or fast solvers. If an online approach is used, at the end of the 6th cycle of the JRA55-do forcing, the model's physical fields should be reinitialized to the values at the start of the 4th cycle in order to avoid long-term drift in those fields and to assure that they will not diverge greatly from physical fields in the omip2 simulation. The spin up also includes radiocarbon to evaluate deep-ocean circulation", + "end_year":"", + "experiment":"OMIP experiment forced by JRA55-do atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model", + "experiment_id":"omip2-spunup", + "min_number_yrs_per_sim":"366", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM", + "BGC" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "pa-futAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA2.5: investigate response to Antarctic sea ice in coupled model", + "end_year":"2001", + "experiment":"Partially-coupled time slice constrained by future Antarctic SIC", + "experiment_id":"pa-futAntSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "pa-futAntSIC-ext":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA6.3: investigate decadal and longer timescale response to Antarctic sea ice", + "end_year":"2099", + "experiment":"Partially-coupled extended simulation with future Antarctic SIC", + "experiment_id":"pa-futAntSIC-ext", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "pa-futArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA2.3: investigate response to Arctic sea ice in coupled model", + "end_year":"2001", + "experiment":"Partially-coupled time slice constrained by future Arctic SIC", + "experiment_id":"pa-futArcSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "pa-futArcSIC-ext":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA6.2: investigate decadal and longer timescale response to Arctic sea ice", + "end_year":"2099", + "experiment":"Partially-coupled extended simulation with future Arctic SIC", + "experiment_id":"pa-futArcSIC-ext", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "pa-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA2.1: coupled model present day control constrained by oberved sea ice", + "end_year":"2001", + "experiment":"Partially-coupled time slice contrained by present day SIC", + "experiment_id":"pa-pdSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "pa-pdSIC-ext":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA6.1: centennial coupled model present day control constrained by oberved sea ice", + "end_year":"2099", + "experiment":"Partially-coupled extended simulation constrained by present day SIC", + "experiment_id":"pa-pdSIC-ext", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "pa-piAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA2.4: investigate response to Antarctic sea ice in coupled model", + "end_year":"2001", + "experiment":"Partially-coupled time slice with pre-industrial Antarctic SIC", + "experiment_id":"pa-piAntSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "pa-piArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA2.2: investigate response to Arctic sea ice in coupled model", + "end_year":"2001", + "experiment":"Partially-coupled time slice constrained by pre-industrial Arctic SIC", + "experiment_id":"pa-piArcSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "past1000":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"main forcings: trace gases, volcanoes, solar variability, land use", + "end_year":"1849", + "experiment":"last millennium", + "experiment_id":"past1000", + "min_number_yrs_per_sim":"1000", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "past1000-solaronly":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Parallel experiment to past1000. Instead of the complete forcing set, only solar (TSI, SSI) forcing is considered", + "end_year":"1849", + "experiment":"last millennium experiment using only solar forcing", + "experiment_id":"past1000-solaronly", + "min_number_yrs_per_sim":"1000", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "past1000-volconly":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Parallel experiment to past1000. Instead of the complete forcing set, only volcanic forcing is considered", + "end_year":"1849", + "experiment":"last millennium experiment using only volcanic forcing", + "experiment_id":"past1000-volconly", + "min_number_yrs_per_sim":"1000", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "past2k":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Experiment extending the past1000 simulation back in time to include the first millennium CE. Main forcings: trace gases, volcanoes, solar variability, land-use. past1000 forcings data sets include the first millennium, except for land-use. For the latter, a linear ramp-up to 850CE values is recommended", + "end_year":"1849", + "experiment":"last two millennia experiment", + "experiment_id":"past2k", + "min_number_yrs_per_sim":"1849", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "pdSST-futAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA1.8: investigate response to Antarctic sea ice and its role in polar amplification", + "end_year":"2001", + "experiment":"Atmosphere time slice with present day SST and future Antarctic SIC", + "experiment_id":"pdSST-futAntSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "pdSST-futArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA1.6: investigate response to Arctic sea ice and its role in polar amplification", + "end_year":"2001", + "experiment":"Atmosphere time slice with present day SST and future Arctic SIC", + "experiment_id":"pdSST-futArcSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "pdSST-futArcSICSIT":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA1.10: investigate role of sea ice thickness in response to Arctic sea ice", + "end_year":"2001", + "experiment":"Atmosphere time slice with present day SST and future Arctic SIC and sea ice thickness", + "experiment_id":"pdSST-futArcSICSIT", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "pdSST-futBKSeasSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA3.2: investigate response to sea ice in Barents and Kara Seas", + "end_year":"2001", + "experiment":"Atmosphere time slice with present day SST and future Barents and Kara Seas SIC", + "experiment_id":"pdSST-futBKSeasSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "pdSST-futOkhotskSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA3.1: investigate response to sea ice in Sea of Okhotsk", + "end_year":"2001", + "experiment":"Atmosphere time slice with present day SST and future Sea of Okhotsk SIC", + "experiment_id":"pdSST-futOkhotskSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "pdSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA1.1: atmosphere only model present day control", + "end_year":"2001", + "experiment":"Atmosphere time slice with present day SST and SIC", + "experiment_id":"pdSST-pdSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "pdSST-pdSICSIT":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA1.9: atmosphere only model present day control with sea ice thickness", + "end_year":"2001", + "experiment":"Atmosphere time slice constrained by present day conditions including sea ice thickness", + "experiment_id":"pdSST-pdSICSIT", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "pdSST-piAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA1.7: investigate response to Antarctic sea ice and its role in polar amplification", + "end_year":"2001", + "experiment":"Atmosphere time slice with present day SST and pre-industrial Antarctic SIC", + "experiment_id":"pdSST-piAntSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "pdSST-piArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA1.5: investigate response to Arctic sea ice and its role in polar amplification", + "end_year":"2001", + "experiment":"Atmosphere time slice with present day SST and pre-industrial Arctic SIC", + "experiment_id":"pdSST-piArcSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "piClim-2xDMS":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"1850 control with doubled emissions of DMS", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of DMS", + "experiment_id":"piClim-2xDMS", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "piClim-2xNOx":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"1850 control with doubled emissions of lightning NOx", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled production of NOx due to lightning", + "experiment_id":"piClim-2xNOx", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "piClim-2xVOC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"1850 control with doubled emissions of biogenic VOCs", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of biogenic VOCs", + "experiment_id":"piClim-2xVOC", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "piClim-2xdust":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"1850 control with doubled dust emissions", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of dust", + "experiment_id":"piClim-2xdust", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piClim-2xfire":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"1850 control with doubled emissions of fires", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions from fires", + "experiment_id":"piClim-2xfire", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "piClim-2xss":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"1850 control with doubled sea salt emissions", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of sea salt", + "experiment_id":"piClim-2xss", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piClim-4xCO2":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"As in piClim-control but with 4xCO2", + "end_year":"", + "experiment":"effective radiative forcing by 4xCO2", + "experiment_id":"piClim-4xCO2", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "piClim-BC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Perturbation from 1850 control using 2014 BC emissions", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 black carbon emissions", + "experiment_id":"piClim-BC", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piClim-CH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Perturbation from 1850 control using 2014 CH4 concentrations", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 methane concentrations (including chemistry)", + "experiment_id":"piClim-CH4", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "piClim-HC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Perturbation from 1850 control using 2014 halocarbon concentrations", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 halocarbon concentrations (including chemistry)", + "experiment_id":"piClim-HC", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "piClim-N2O":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Perturbation from 1850 control using 2014 N2O concentrations", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 N2O concentrations (including chemistry)", + "experiment_id":"piClim-N2O", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piClim-NH3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Perturbation from 1850 control using 2014 NH3 emissions", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 ammonia emissions", + "experiment_id":"piClim-NH3", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "piClim-NOx":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Perturbation from 1850 control using 2014 NOx emissions", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 NOx emissions", + "experiment_id":"piClim-NOx", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "piClim-NTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Perturbation from 1850 control using 2014 aerosol and ozone precursor emissions", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 NTCF emissions", + "experiment_id":"piClim-NTCF", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "piClim-O3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Perturbation from 1850 control using 2014 ozone precursor emissions", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 ozone precursor emissions", + "experiment_id":"piClim-O3", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piClim-OC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Perturbation from 1850 control using 2014 OC emissions", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 organic carbon emissions", + "experiment_id":"piClim-OC", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "piClim-SO2":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Perturbation from 1850 control using 2014 SO2 emissions", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 SO2 emissions", + "experiment_id":"piClim-SO2", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "piClim-VOC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Perturbation from 1850 control using 2014 CO/VOC emissions", + "end_year":"", + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 VOC emissions", + "experiment_id":"piClim-VOC", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "piClim-aer":{ + "activity_id":[ + "RFMIP", + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"As in piClim-control but with with present-day aerosols. Note that this experiment is considered to be tier 1 by RFMIP but tier 2 by AerChemMIP", + "end_year":"", + "experiment":"effective radiative forcing by present-day aerosols", + "experiment_id":"piClim-aer", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "piClim-anthro":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"As in piClim-control but with present-day anthropogenic forcing (greenhouse gases, ozone, aerosols and land-use)", + "end_year":"", + "experiment":"effective radiative forcing by present day anthropogenic agents", + "experiment_id":"piClim-anthro", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "piClim-control":{ + "activity_id":[ + "RFMIP", + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"30-year atmosphere only integration using preindustrial sea-surface temperature and sea-ice climatology. Interactive vegetation", + "end_year":"", + "experiment":"Control simulation providing baseline for evaluating effective radiative forcing (ERF)", + "experiment_id":"piClim-control", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "piClim-ghg":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"As in piClim-control but with present-day non-ozone greenhouse gases", + "end_year":"", + "experiment":"effective radiative forcing by present-day greenhouse gases", + "experiment_id":"piClim-ghg", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "piClim-histaer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Time-varying forcing by aerosols. SST and sea ice fixed at preindustrial control. Interactive vegetation", + "end_year":"2100", + "experiment":"transient effective radiative forcing by aerosols", + "experiment_id":"piClim-histaer", + "min_number_yrs_per_sim":"251", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piClim-histall":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Time-varying forcing. SST and sea ice fixed at preindustrial control. Interactive vegetation", + "end_year":"2100", + "experiment":"transient effective radiative forcing", + "experiment_id":"piClim-histall", + "min_number_yrs_per_sim":"251", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piClim-histghg":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Time-varying forcing by non-ozone GHGs. SST and sea ice fixed at preindustrial control. Interactive vegetation", + "end_year":"2100", + "experiment":"transient effective radiative forcing by greenhouse gases", + "experiment_id":"piClim-histghg", + "min_number_yrs_per_sim":"251", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piClim-histnat":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Time-varying forcing from volcanos, solar variability, etc. SST and sea ice fixed at preindustrial control. Interactive vegetation", + "end_year":"2100", + "experiment":"transient effective radiative forcing by natural perturbations", + "experiment_id":"piClim-histnat", + "min_number_yrs_per_sim":"251", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piClim-lu":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"As in piClim-control but with present-day land use", + "end_year":"", + "experiment":"effective radiative forcing by present-day land use", + "experiment_id":"piClim-lu", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "piClim-spAer-aer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Prescribed anthropogenic aerosol optical properties. Aerosol forcings", + "end_year":"", + "experiment":"effective radiative forcing at present day with specified anthropogenic aerosol optical properties, all forcings", + "experiment_id":"piClim-spAer-aer", + "min_number_yrs_per_sim":"", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piClim-spAer-anthro":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Prescribed anthropogenic aerosol optical properties. Anthropogenic forcings", + "end_year":"", + "experiment":"effective radiative forcing at present day with specified anthropogenic aerosol optical properties, anthropogenic forcings", + "experiment_id":"piClim-spAer-anthro", + "min_number_yrs_per_sim":"", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piClim-spAer-histaer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Prescribed anthropogenic aerosol optical properties. Aerosol forcings", + "end_year":"2014", + "experiment":"transient effective radiative forcing with specified anthropogenic aerosol optical properties, aerosol forcing", + "experiment_id":"piClim-spAer-histaer", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piClim-spAer-histall":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Prescribed anthropogenic aerosol optical properties. All anthropogenic and natural forcings", + "end_year":"2014", + "experiment":"transient effective radiative forcing with specified anthropogenic aerosol optical properties, all forcings", + "experiment_id":"piClim-spAer-histall", + "min_number_yrs_per_sim":"165", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piControl":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"DECK: control", + "end_year":"", + "experiment":"pre-industrial control", + "experiment_id":"piControl", + "min_number_yrs_per_sim":"500", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-spinup" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "piControl-cmip5":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"DECK: control (CMIP5-era pre-industrial forcing)", + "end_year":"", + "experiment":"pre-industrial control (CMIP5-era [1850-2005] forcing)", + "experiment_id":"piControl-cmip5", + "min_number_yrs_per_sim":"500", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-spinup-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piControl-spinup":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"DECK: spin-up portion of the control", + "end_year":"", + "experiment":"pre-industrial control (spin-up)", + "experiment_id":"piControl-spinup", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piControl-spinup-cmip5":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"DECK: spin-up portion of the control (CMIP5-era pre-industrial forcing)", + "end_year":"", + "experiment":"pre-industrial control (spin-up; CMIP5-era [1850-2005] forcing)", + "experiment_id":"piControl-spinup-cmip5", + "min_number_yrs_per_sim":"100", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piControl-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Pre-industrial control simulation that includes interactive ice sheets", + "end_year":"", + "experiment":"preindustrial control with interactive ice sheet", + "experiment_id":"piControl-withism", + "min_number_yrs_per_sim":"500", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "piSST":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"An AGCM experiment with monthly-varying SSTs, sea-ice, atmospheric constituents and any other necessary boundary conditions (e.g. vegetation if required) taken from each model's own piControl run (using the 30 years of piControl that are parallel to years 111-140 of its abrupt-4xCO2 run). Dynamic vegetation should be turned off in all the piSST set of experiments", + "end_year":"", + "experiment":"experiment forced with pre-industrial SSTs, sea ice and atmospheric constituents", + "experiment_id":"piSST", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piSST-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Same as piSST but CO2 is quadrupled. The increase in CO2 is seen by both the radiation scheme and vegetation", + "end_year":"", + "experiment":"as piSST with radiation and vegetation seeing 4xCO2", + "experiment_id":"piSST-4xCO2", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piSST-4xCO2-rad":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Same as piSST but CO2 as seen by the radiation scheme is quadrupled", + "end_year":"", + "experiment":"as piSST with radiation-only seeing 4xCO2", + "experiment_id":"piSST-4xCO2-rad", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piSST-4xCO2-solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Time slice at 1850 (picontrol) for G1ext to examine radiative forcing of abrupt-4xCO2", + "end_year":"", + "experiment":"preindustrial control SSTs with quadrupled CO2 and solar reduction", + "experiment_id":"piSST-4xCO2-solar", + "min_number_yrs_per_sim":"10", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA1.3: investigate role of SST in polar amplification", + "end_year":"2001", + "experiment":"Atmosphere time slice with pre-industrial SST and present day SIC", + "experiment_id":"piSST-pdSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "piSST-piSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"PA1.2: atmosphere only model pre-industrial control", + "end_year":"2001", + "experiment":"Atmosphere time slice with pre-industrial SST and SIC", + "experiment_id":"piSST-piSIC", + "min_number_yrs_per_sim":"1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"2000", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "piSST-pxK":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Same as piSST, but with a spatially and temporally uniform SST anomaly applied on top of the monthly-varying piSST SSTs. The magnitude of the uniform increase is taken from each model's global, climatological annual mean SST change between abrupt-4xCO2 minus piControl (using the mean of years 111-140 of abrupt-4xCO2, and the parallel 30-year section of piControl)", + "end_year":"", + "experiment":"as piSST with uniform SST increase with magnitude based on abrupt-4xCO2 response", + "experiment_id":"piSST-pxK", + "min_number_yrs_per_sim":"20", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "rad-irf":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "description":"Offline radiation calculations", + "end_year":"", + "experiment":"offline assessment of radiative transfer parmeterizations in clear skies", + "experiment_id":"rad-irf", + "min_number_yrs_per_sim":"", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "RAD" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "rcp26-cmip5":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"future scenario with low radiative forcing by the end of century. Following RCP2.6 global forcing pathway. Concentration-driven (CMIP5-era [2006-2100] forcing)", + "end_year":"2100 or 2300", + "experiment":"future projection based on CMIP5-era RCP2.6 scenario (CMIP5-era [2006-2100] forcing)", + "experiment_id":"rcp26-cmip5", + "min_number_yrs_per_sim":"95", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2006", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "rcp45-cmip5":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"future scenario with low-medium radiative forcing by the end of century. Following RCP4.5 global forcing pathway. Concentration-driven (CMIP5-era [2006-2100] forcing)", + "end_year":"2100 or 2300", + "experiment":"future projection based on CMIP5-era RCP4.5 scenario (CMIP5-era [2006-2100] forcing)", + "experiment_id":"rcp45-cmip5", + "min_number_yrs_per_sim":"95", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2006", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "rcp60-cmip5":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"future scenario with medium radiative forcing by the end of century. Following RCP6.0 global forcing pathway. Concentration-driven (CMIP5-era [2006-2100] forcing)", + "end_year":"2100 or 2300", + "experiment":"future projection based on CMIP5-era RCP6.0 scenario (CMIP5-era [2006-2100] forcing)", + "experiment_id":"rcp60-cmip5", + "min_number_yrs_per_sim":"95", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2006", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "rcp85-cmip5":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"future scenario with high radiative forcing by the end of century. Following RCP8.5 global forcing pathway. Concentration-driven (CMIP5-era [2006-2100] forcing)", + "end_year":"2100 or 2300", + "experiment":"future projection based on CMIP5-era RCP8.5 scenario (CMIP5-era [2006-2100] forcing)", + "experiment_id":"rcp85-cmip5", + "min_number_yrs_per_sim":"95", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2006", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "spinup-1950":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "description":"Coupled integration from ocean rest state using recommended HighResMIP protocol spinup, starting from 1950 ocean temperature and salinity analysis EN4, using constant 1950s forcing. At least 30 years to satisfy near surface quasi-equilibrium", + "end_year":"", + "experiment":"coupled spinup with fixed 1950s forcings from 1950 initial conditions (with ocean at rest) to provide initial condition for control-1950 and hist-1950", + "experiment_id":"spinup-1950", + "min_number_yrs_per_sim":"30", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp119":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Future scenario with low radiative forcing throughout reaching about 1.9 W/m2 in 2100 based on SSP1. Concentration-driven", + "end_year":"2100", + "experiment":"low-end scenario reaching 1.9 W m-2, based on SSP1", + "experiment_id":"ssp119", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp126":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Future scenario with low radiative forcing by the end of century. Following approximately RCP2.6 global forcing pathway but with new forcing based on SSP1. Concentration-driven. As a tier 2 option, this simulation should be extended to year 2300", + "end_year":"2100 or 2300", + "experiment":"update of RCP2.6 based on SSP1", + "experiment_id":"ssp126", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ssp126-ssp370Lu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Additional land use policy sensitivity simulation for low radiative forcing scenario, keep all forcings the same as ScenarioMIP SSP1-2.6 (afforestation scenario), but replace land use from SSP3-7 (afforestation) scenario; concentration-driven", + "end_year":"2100", + "experiment":"SSP1-2.6 with SSP3-7.0 land use", + "experiment_id":"ssp126-ssp370Lu", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ssp245":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Future scenario with medium radiative forcing by the end of century. Following approximately RCP4.5 global forcing pathway but with new forcing based on SSP2. Concentration-driven", + "end_year":"2100", + "experiment":"update of RCP4.5 based on SSP2", + "experiment_id":"ssp245", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ssp245-GHG":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Extension of well-mixed GHG-only run under SSP2-4.5. Models with interactive chemistry schemes should either turn off the chemistry or use a preindustrial climatology of stratospheric and tropospheric ozone in their radiation schemes", + "end_year":"2100", + "experiment":"well-mixed GHG-only SSP2-4.5 run", + "experiment_id":"ssp245-GHG", + "min_number_yrs_per_sim":"80", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-GHG" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2021", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp245-aer":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Extension of aerosol-only run under SSP2-4.5", + "end_year":"2100", + "experiment":"aerosol-only SSP2-4.5 run", + "experiment_id":"ssp245-aer", + "min_number_yrs_per_sim":"80", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-aer" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2021", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "ssp245-cov-GHG":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Detection and attribution experiment: well-mixed GHG-only run based on ssp245-covid, with 2-year perturbation to emissions for 2020 and 2021 due to Covid-19 pandemic restrictions. Concentration-driven", + "end_year":"2024 or 2050", + "experiment":"2-year Covid-19 emissions blip including well mixed GHG only, based upon ssp245", + "experiment_id":"ssp245-cov-GHG", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp245" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2020", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "ssp245-cov-aer":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Detection and attribution experiment: aerosol-only run based on ssp245-covid, with 2-year perturbation to emissions for 2020 and 2021 due to Covid-19 pandemic restrictions. Concentration-driven", + "end_year":"2024 or 2050", + "experiment":"2-year Covid-19 emissions blip including anthropogenic aerosols only, based upon ssp245", + "experiment_id":"ssp245-cov-aer", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp245" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2020", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "ssp245-cov-fossil":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Future scenario based on ssp245, but following a path of increased emissions due to a fossil-fuel rebound economic recovery from the Covid-19 pandemic restrictions. Concentration-driven", + "end_year":"2050", + "experiment":"2-year Covid-19 emissions blip followed by increased emissions due to a fossil-fuel based recovery, based upon ssp245", + "experiment_id":"ssp245-cov-fossil", + "min_number_yrs_per_sim":"31", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp245" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2020", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "ssp245-cov-modgreen":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Future scenario based on ssp245, but following a path of reduced emissions due to a moderate-green stimulus economic recovery from the Covid-19 pandemic restrictions. Concentration-driven", + "end_year":"2050", + "experiment":"2-year Covid-19 emissions blip followed by moderate-green stimulus recovery, based upon ssp245", + "experiment_id":"ssp245-cov-modgreen", + "min_number_yrs_per_sim":"31", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp245" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2020", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "ssp245-cov-strgreen":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Future scenario based on ssp245, but following a path of reduced emissions due to a strong-green stimulus economic recovery from the Covid-19 pandemic restrictions. Concentration-driven", + "end_year":"2050", + "experiment":"2-year Covid-19 emissions blip followed by strong-green stimulus recovery, based upon ssp245", + "experiment_id":"ssp245-cov-strgreen", + "min_number_yrs_per_sim":"31", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp245" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2020", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp245-covid":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Future scenario based on ssp245, but with 2-year perturbation to emissions for 2020 and 2021 due to Covid-19 pandemic restrictions. Emissions revert to ssp245 after this. Concentration-driven", + "end_year":"2024 or 2050", + "experiment":"2-year Covid-19 emissions blip based upon ssp245", + "experiment_id":"ssp245-covid", + "min_number_yrs_per_sim":"5", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp245" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2020", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp245-nat":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Extension of natural-only run under SSP2-4.5", + "end_year":"2100", + "experiment":"natural-only SSP2-4.5 run", + "experiment_id":"ssp245-nat", + "min_number_yrs_per_sim":"80", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-nat" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2021", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "ssp245-stratO3":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "BGC" + ], + "description":"Extension of stratospheric ozone-only run under SSP2-4.5 (ssp245). In models with coupled chemistry, the chemistry scheme should be turned off, and the simulated ensemble mean monthly mean 3D stratospheric ozone concentrations from the SSP2-4.5 simulations should be prescribed. Tropospheric ozone should be fixed at 3D long-term monthly mean piControl values, with a value of 100 ppbv ozone concentration in this piControl climatology used to separate the troposphere from the stratosphere. In models without coupled chemistry the same stratospheric ozone prescribed in SSP2-4.5 should be prescribed. Stratospheric ozone concentrations will be provided by CCMI", + "end_year":"2100", + "experiment":"stratospheric ozone-only SSP2-4.5 (ssp245) run", + "experiment_id":"ssp245-stratO3", + "min_number_yrs_per_sim":"80", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-stratO3" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2021", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp370":{ + "activity_id":[ + "ScenarioMIP", + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Future scenario with high radiative forcing by the end of century. Reaches about 7.0 W/m2 by 2100; fills gap in RCP forcing pathways between 6.0 and 8.5 W/m2. Concentration-driven", + "end_year":"2100", + "experiment":"gap-filling scenario reaching 7.0 based on SSP3", + "experiment_id":"ssp370", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ssp370-lowNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Future SSP3-7.0 with reduced NTCF emissions", + "end_year":"2100", + "experiment":"SSP3-7.0, with low NTCF emissions", + "experiment_id":"ssp370-lowNTCF", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ssp370-lowNTCFCH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"This experiment is identical to ssp370-lowNTCF except that the methane concentrations also follow the \"low\" scenario from SSP3-7.0_lowNTCF", + "end_year":"2100", + "experiment":"SSP3-7.0, with low NTCF emissions and methane concentrations", + "experiment_id":"ssp370-lowNTCFCH4", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "ssp370-ssp126Lu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Additional land use policy sensitivity simulation for high radiative forcing scenario, keep all forcings the same as ScenarioMIP SSP3-7 (deforestation scenario), but replace land use from SSP1-2.6 (afforestation) scenario; concentration-driven", + "end_year":"2100", + "experiment":"SSP3-7.0 with SSP1-2.6 land use", + "experiment_id":"ssp370-ssp126Lu", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ssp370SST":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Future SSP3-7.0, with SSTs prescribed from ssp370", + "end_year":"2100", + "experiment":"SSP3-7.0, with SSTs prescribed from ssp370", + "experiment_id":"ssp370SST", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ssp370SST-lowAer":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Future SSP3-7.0 with reduced aerosol emissions (from ssp370-lowNTCF), prescribed SSTs", + "end_year":"2100", + "experiment":"SSP3-7.0, prescribed SSTs, with low aerosol emissions", + "experiment_id":"ssp370SST-lowAer", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp370SST-lowBC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Future SSP3-7.0 with reduced black carbon emissions, prescribed SSTs", + "end_year":"2100", + "experiment":"SSP3-7.0, prescribed SSTs, with low black carbon emissions", + "experiment_id":"ssp370SST-lowBC", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp370SST-lowCH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Future SSP3-7.0 with reduced CH4 concentrations, prescribed SSTs", + "end_year":"2100", + "experiment":"SSP3-7.0, prescribed SSTs, with low methane concentrations", + "experiment_id":"ssp370SST-lowCH4", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ssp370SST-lowNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Future SSP3-7.0 with reduced NTCF emissions, prescribed SSTs", + "end_year":"2100", + "experiment":"SSP3-7.0, prescribed SSTs, with low NTCF emissions", + "experiment_id":"ssp370SST-lowNTCF", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ssp370SST-lowNTCFCH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"This experiment is identical to ssp370SST-lowNTCF except that the methane concentrations also follow the \"low\" scenario from SSP3-7.0_lowNTCF", + "end_year":"2100", + "experiment":"SSP3-7.0, prescribed SSTs, with low NTCF emissions and methane concentrations", + "experiment_id":"ssp370SST-lowNTCFCH4", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "ssp370SST-lowO3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "description":"Future SSP3-7.0 with reduced ozone precursor emissions (from ssp370-lowNTCF), prescribed SSTs", + "end_year":"2100", + "experiment":"SSP3-7.0, prescribed SSTs, with low ozone precursor emissions", + "experiment_id":"ssp370SST-lowO3", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp370SST-ssp126Lu":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Future SSP3-7.0 with low land use change (from ssp126), prescribed SSTs", + "end_year":"2100", + "experiment":"SSP3-7.0, prescribed SSTs, with SSP1-2.6 land use", + "experiment_id":"ssp370SST-ssp126Lu", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ssp370pdSST":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "description":"Experimental set up as ssp370SST except sea surface temperatures (SST) and sea ice concentrations (SICONC) are from a 2005-2014 climatology. Diagnostics are as ssp370SST", + "end_year":"2100", + "experiment":"SSP3-7.0, with SSTs prescribed as present day", + "experiment_id":"ssp370pdSST", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp434":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Future scenario with low radiative forcing by the end of century. Reaches about 3.4 W/m2 by 2100; fills gap in RCP forcing pathways between 4.5 and 2.6 W/m2. Concentration-driven", + "end_year":"2100", + "experiment":"gap-filling scenario reaching 3.4 based on SSP4", + "experiment_id":"ssp434", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp460":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Future scenario with medium radiative forcing by the end of century. Following approximately RCP6.0 global forcing pathway but with new forcing based on SSP4. Concentration-driven", + "end_year":"2100", + "experiment":"update of RCP6.0 based on SSP4", + "experiment_id":"ssp460", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp534-over":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"21st century overshoot scenario relative to SSP5_34. Branches from SSP5_85 at 2040 with emissions reduced to zero by 2070 and negative thereafter. This simulation should optionally be extended to year 2300", + "end_year":"2100 or 2300", + "experiment":"overshoot of 3.4 W/m**2 branching from ssp585 in 2040", + "experiment_id":"ssp534-over", + "min_number_yrs_per_sim":"61", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2040", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp534-over-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"This simulation should optionally be extended to year 2300", + "end_year":"2100 or 2300", + "experiment":"biogeochemically-coupled version of the RCP3.4-overshoot based on SSP5", + "experiment_id":"ssp534-over-bgc", + "min_number_yrs_per_sim":"61", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "ssp585-bgc" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2040", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp585":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Future scenario with high radiative forcing by the end of century. Following approximately RCP8.5 global forcing pathway but with new forcing based on SSP5. Concentration-driven. As a tier 2 option, this simulation should be extended to year 2300", + "end_year":"2100 or 2300", + "experiment":"update of RCP8.5 based on SSP5", + "experiment_id":"ssp585", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "ssp585-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Concentration-driven future scenario simulation, biogeochemically-coupled. This simulation should optionally be extended to year 2300", + "end_year":"2100 or 2300", + "experiment":"biogeochemically-coupled version of the RCP8.5 based on SSP5", + "experiment_id":"ssp585-bgc", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "hist-bgc" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "ssp585-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Future climate from ScenarioMIP SSP5-8.5 simulation that includes interactive ice sheets. Set up follows the standard SSP5-8.5 experiment", + "end_year":"2100 or 2300", + "experiment":"ssp585 with interactive ice sheet", + "experiment_id":"ssp585-withism", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "historical-withism" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "volc-cluster-21C":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Parallel experiment to volc-cluster-ctrl, using restart files from the end of the historical simulation instead of from piControl, and boundary conditions from the 21st century SSP2-4.5 scenario experiment of ScenarioMIP", + "end_year":"2100", + "experiment":"volcanic cluster experiment under 21st century SSP2-4.5 scenario", + "experiment_id":"volc-cluster-21C", + "min_number_yrs_per_sim":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "volc-cluster-ctrl":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Early 19th century cluster of strong tropical volcanic eruptions, including the 1809 event of unknown location, the 1815 Tambora and 1835 Cosigueina eruptions. Experiment initialized from PiControl", + "end_year":"", + "experiment":"19th century volcanic cluster initialized from PiControl", + "experiment_id":"volc-cluster-ctrl", + "min_number_yrs_per_sim":"50", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "volc-cluster-mill":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Parallel experiment to volc-cluster-ctrl but with initial conditions taken from last millennium simulation to account for the effects of a more realistic history of past natural forcing. All forcings except volcanic kept constant from year AD 1790 on", + "end_year":"1858", + "experiment":"19th century volcanic cluster initialized from past1000", + "experiment_id":"volc-cluster-mill", + "min_number_yrs_per_sim":"69", + "parent_activity_id":[ + "PMIP" + ], + "parent_experiment_id":[ + "past1000" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1790", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "volc-long-eq":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Idealized equatorial eruption corresponding to an initial emission of 56.2 Tg of SO2. The eruption magnitude corresponds to recent estimates for the 1815 Tambora eruption (Sigl et al., 2015), the largest historical tropical eruption, which was linked to the so-called \"year without a summer\" in 1816. Experiment initialized from PiControl", + "end_year":"", + "experiment":"idealized equatorial volcanic eruption emitting 56.2 Tg SO2", + "experiment_id":"volc-long-eq", + "min_number_yrs_per_sim":"20", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "volc-long-hlN":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Idealized Northern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2. Experiment initialized from PiControl", + "end_year":"", + "experiment":"idealized Northern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2", + "experiment_id":"volc-long-hlN", + "min_number_yrs_per_sim":"20", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"2" + }, + "volc-long-hlS":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"Idealized Southern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2. Experiment initialized from PiControl", + "end_year":"", + "experiment":"Idealized Southern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2", + "experiment_id":"volc-long-hlS", + "min_number_yrs_per_sim":"20", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "volc-pinatubo-full":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"1991 Pinatubo forcing as used in the CMIP6 historical simulations. Requires special diagnostics of radiative and latent heating rates. A large number of ensemble members is required to address internal atmospheric variability", + "end_year":"", + "experiment":"Pinatubo experiment", + "experiment_id":"volc-pinatubo-full", + "min_number_yrs_per_sim":"3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "volc-pinatubo-slab":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"As volc-pinatubo-full, but with a slab ocean", + "end_year":"", + "experiment":"Pinatubo experiment with slab ocean", + "experiment_id":"volc-pinatubo-slab", + "min_number_yrs_per_sim":"3", + "parent_activity_id":[ + "VolMIP" + ], + "parent_experiment_id":[ + "control-slab" + ], + "required_model_components":[ + "AGCM", + "SLAB" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + }, + "volc-pinatubo-strat":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"As volc-pinatubo-full, but with prescribed perturbation to the total (LW+SW) radiative heating rates", + "end_year":"", + "experiment":"Pinatubo experiment with partial radiative forcing, includes only stratospheric warming", + "experiment_id":"volc-pinatubo-strat", + "min_number_yrs_per_sim":"3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "volc-pinatubo-surf":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "description":"As volc-pinatubo-full, but with prescribed perturbation to the shortwave flux to mimic the attenuation of solar radiation by volcanic aerosols", + "end_year":"", + "experiment":"Pinatubo experiment with partial radiative forcing, solar radiation scattering only", + "experiment_id":"volc-pinatubo-surf", + "min_number_yrs_per_sim":"3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "yr2010CO2":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "description":"Branch from beginning of year 2010 of the historical simulation with CO2 concentration and all other forcing held fixed at 2010 level (part of the CDR-yr2010-pulse experiment to diagnose CO2 emissions)", + "end_year":"2115", + "experiment":"concentration-driven fixed 2010 forcing", + "experiment_id":"yr2010CO2", + "min_number_yrs_per_sim":"106", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2010", + "sub_experiment_id":[ + "none" + ], + "tier":"3" + } + }, + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "author":"Paul J. Durack ", + "experiment_id_CV_modified":"Tue Dec 15 12:25:59 2020 -0800", + "experiment_id_CV_note":"Revise experiment_id historical parent experiments", + "institution_id":"PCMDI", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/CMIP6_frequency.json b/tests/common/CMIP6_CVs_last/CMIP6_frequency.json new file mode 100644 index 00000000..bb1492a0 --- /dev/null +++ b/tests/common/CMIP6_CVs_last/CMIP6_frequency.json @@ -0,0 +1,30 @@ +{ + "frequency":{ + "1hr":"sampled hourly", + "1hrCM":"monthly-mean diurnal cycle resolving each day into 1-hour means", + "1hrPt":"sampled hourly, at specified time point within an hour", + "3hr":"3 hourly mean samples", + "3hrPt":"sampled 3 hourly, at specified time point within the time period", + "6hr":"6 hourly mean samples", + "6hrPt":"sampled 6 hourly, at specified time point within the time period", + "day":"daily mean samples", + "dec":"decadal mean samples", + "fx":"fixed (time invariant) field", + "mon":"monthly mean samples", + "monC":"monthly climatology computed from monthly mean samples", + "monPt":"sampled monthly, at specified time point within the time period", + "subhrPt":"sampled sub-hourly, at specified time point within an hour", + "yr":"annual mean samples", + "yrPt":"sampled yearly, at specified time point within the time period" + }, + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "author":"Paul J. Durack ", + "frequency_CV_modified":"Mon May 24 13:48:15 2021 00100", + "frequency_CV_note":"Update description of 3hr and 6hr frequencies", + "institution_id":"PCMDI", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/CMIP6_grid_label.json b/tests/common/CMIP6_CVs_last/CMIP6_grid_label.json new file mode 100644 index 00000000..ddf776d5 --- /dev/null +++ b/tests/common/CMIP6_CVs_last/CMIP6_grid_label.json @@ -0,0 +1,59 @@ +{ + "grid_label":{ + "gm":"global mean data", + "gn":"data reported on a model's native grid", + "gna":"data reported on a native grid in the region of Antarctica", + "gng":"data reported on a native grid in the region of Greenland", + "gnz":"zonal mean data reported on a model's native latitude grid", + "gr":"regridded data reported on the data provider's preferred target grid", + "gr1":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr1a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr1g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr1z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr2":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr2a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr2g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr2z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr3":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr3a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr3g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr3z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr4":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr4a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr4g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr4z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr5":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr5a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr5g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr5z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr6":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr6a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr6g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr6z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr7":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr7a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr7g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr7z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr8":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr8a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr8g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr8z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr9":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr9a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr9g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr9z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gra":"regridded data in the region of Antarctica reported on the data provider's preferred target grid", + "grg":"regridded data in the region of Greenland reported on the data provider's preferred target grid", + "grz":"regridded zonal mean data reported on the data provider's preferred latitude target grid" + }, + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "author":"Paul J. Durack ", + "grid_label_CV_modified":"Fri Sep 8 18:12:00 2017 -0700", + "grid_label_CV_note":"Issue395 durack1 augment grid_label with description (#401)", + "institution_id":"PCMDI", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/CMIP6_institution_id.json b/tests/common/CMIP6_CVs_last/CMIP6_institution_id.json new file mode 100644 index 00000000..1f86e965 --- /dev/null +++ b/tests/common/CMIP6_CVs_last/CMIP6_institution_id.json @@ -0,0 +1,63 @@ +{ + "institution_id":{ + "AER":"Research and Climate Group, Atmospheric and Environmental Research, 131 Hartwell Avenue, Lexington, MA 02421, USA", + "AS-RCEC":"Research Center for Environmental Changes, Academia Sinica, Nankang, Taipei 11529, Taiwan", + "AWI":"Alfred Wegener Institute, Helmholtz Centre for Polar and Marine Research, Am Handelshafen 12, 27570 Bremerhaven, Germany", + "BCC":"Beijing Climate Center, Beijing 100081, China", + "CAMS":"Chinese Academy of Meteorological Sciences, Beijing 100081, China", + "CAS":"Chinese Academy of Sciences, Beijing 100029, China", + "CCCR-IITM":"Centre for Climate Change Research, Indian Institute of Tropical Meteorology Pune, Maharashtra 411 008, India", + "CCCma":"Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada", + "CMCC":"Fondazione Centro Euro-Mediterraneo sui Cambiamenti Climatici, Lecce 73100, Italy", + "CNRM-CERFACS":"CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France)", + "CSIRO":"Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia", + "CSIRO-ARCCSS":"CSIRO (Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia), ARCCSS (Australian Research Council Centre of Excellence for Climate System Science). Mailing address: CSIRO, c/o Simon J. Marsland, 107-121 Station Street, Aspendale, Victoria 3195, Australia", + "CSIRO-COSIMA":"CSIRO (Commonwealth Scientific and Industrial Research Organisation, Australia), COSIMA (Consortium for Ocean-Sea Ice Modelling in Australia). Mailing address: CSIRO, c/o Simon J. Marsland, 107-121 Station Street, Aspendale, Victoria 3195, Australia", + "DKRZ":"Deutsches Klimarechenzentrum, Hamburg 20146, Germany", + "DWD":"Deutscher Wetterdienst, Offenbach am Main 63067, Germany", + "E3SM-Project":"LLNL (Lawrence Livermore National Laboratory, Livermore, CA 94550, USA); ANL (Argonne National Laboratory, Argonne, IL 60439, USA); BNL (Brookhaven National Laboratory, Upton, NY 11973, USA); LANL (Los Alamos National Laboratory, Los Alamos, NM 87545, USA); LBNL (Lawrence Berkeley National Laboratory, Berkeley, CA 94720, USA); ORNL (Oak Ridge National Laboratory, Oak Ridge, TN 37831, USA); PNNL (Pacific Northwest National Laboratory, Richland, WA 99352, USA); SNL (Sandia National Laboratories, Albuquerque, NM 87185, USA). Mailing address: LLNL Climate Program, c/o David C. Bader, Principal Investigator, L-103, 7000 East Avenue, Livermore, CA 94550, USA", + "EC-Earth-Consortium":"AEMET, Spain; BSC, Spain; CNR-ISAC, Italy; DMI, Denmark; ENEA, Italy; FMI, Finland; Geomar, Germany; ICHEC, Ireland; ICTP, Italy; IDL, Portugal; IMAU, The Netherlands; IPMA, Portugal; KIT, Karlsruhe, Germany; KNMI, The Netherlands; Lund University, Sweden; Met Eireann, Ireland; NLeSC, The Netherlands; NTNU, Norway; Oxford University, UK; surfSARA, The Netherlands; SMHI, Sweden; Stockholm University, Sweden; Unite ASTR, Belgium; University College Dublin, Ireland; University of Bergen, Norway; University of Copenhagen, Denmark; University of Helsinki, Finland; University of Santiago de Compostela, Spain; Uppsala University, Sweden; Utrecht University, The Netherlands; Vrije Universiteit Amsterdam, the Netherlands; Wageningen University, The Netherlands. Mailing address: EC-Earth consortium, Rossby Center, Swedish Meteorological and Hydrological Institute/SMHI, SE-601 76 Norrkoping, Sweden", + "ECMWF":"European Centre for Medium-Range Weather Forecasts, Reading RG2 9AX, UK", + "FIO-QLNM":"FIO (First Institute of Oceanography, Ministry of Natural Resources, Qingdao 266061, China), QNLM (Qingdao National Laboratory for Marine Science and Technology, Qingdao 266237, China)", + "HAMMOZ-Consortium":"ETH Zurich, Switzerland; Max Planck Institut fur Meteorologie, Germany; Forschungszentrum Julich, Germany; University of Oxford, UK; Finnish Meteorological Institute, Finland; Leibniz Institute for Tropospheric Research, Germany; Center for Climate Systems Modeling (C2SM) at ETH Zurich, Switzerland", + "INM":"Institute for Numerical Mathematics, Russian Academy of Science, Moscow 119991, Russia", + "IPSL":"Institut Pierre Simon Laplace, Paris 75252, France", + "KIOST":"Korea Institute of Ocean Science and Technology, Busan 49111, Republic of Korea", + "LLNL":"Lawrence Livermore National Laboratory, Livermore, CA 94550, USA. Mailing address: LLNL Climate Program, c/o Stephen A. Klein, Principal Investigator, L-103, 7000 East Avenue, Livermore, CA 94550, USA", + "MESSy-Consortium":"The Modular Earth Submodel System (MESSy) Consortium, represented by the Institute for Physics of the Atmosphere, Deutsches Zentrum fur Luft- und Raumfahrt (DLR), Wessling, Bavaria 82234, Germany", + "MIROC":"JAMSTEC (Japan Agency for Marine-Earth Science and Technology, Kanagawa 236-0001, Japan), AORI (Atmosphere and Ocean Research Institute, The University of Tokyo, Chiba 277-8564, Japan), NIES (National Institute for Environmental Studies, Ibaraki 305-8506, Japan), and R-CCS (RIKEN Center for Computational Science, Hyogo 650-0047, Japan)", + "MOHC":"Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK", + "MPI-M":"Max Planck Institute for Meteorology, Hamburg 20146, Germany", + "MRI":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "NASA-GISS":"Goddard Institute for Space Studies, New York, NY 10025, USA", + "NASA-GSFC":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "NCAR":"National Center for Atmospheric Research, Climate and Global Dynamics Laboratory, 1850 Table Mesa Drive, Boulder, CO 80305, USA", + "NCC":"NorESM Climate modeling Consortium consisting of CICERO (Center for International Climate and Environmental Research, Oslo 0349), MET-Norway (Norwegian Meteorological Institute, Oslo 0313), NERSC (Nansen Environmental and Remote Sensing Center, Bergen 5006), NILU (Norwegian Institute for Air Research, Kjeller 2027), UiB (University of Bergen, Bergen 5007), UiO (University of Oslo, Oslo 0313) and UNI (Uni Research, Bergen 5008), Norway. Mailing address: NCC, c/o MET-Norway, Henrik Mohns plass 1, Oslo 0313, Norway", + "NERC":"Natural Environment Research Council, STFC-RAL, Harwell, Oxford, OX11 0QX, UK", + "NIMS-KMA":"National Institute of Meteorological Sciences/Korea Meteorological Administration, Climate Research Division, Seoho-bukro 33, Seogwipo-si, Jejudo 63568, Republic of Korea", + "NIWA":"National Institute of Water and Atmospheric Research, Hataitai, Wellington 6021, New Zealand", + "NOAA-GFDL":"National Oceanic and Atmospheric Administration, Geophysical Fluid Dynamics Laboratory, Princeton, NJ 08540, USA", + "NTU":"National Taiwan University, Taipei 10650, Taiwan", + "NUIST":"Nanjing University of Information Science and Technology, Nanjing, 210044, China", + "PCMDI":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "PNNL-WACCEM":"PNNL (Pacific Northwest National Laboratory), Richland, WA 99352, USA", + "RTE-RRTMGP-Consortium":"AER (Atmospheric and Environmental Research, Lexington, MA 02421, USA); UColorado (University of Colorado, Boulder, CO 80309, USA). Mailing address: AER c/o Eli Mlawer, 131 Hartwell Avenue, Lexington, MA 02421, USA", + "RUBISCO":"ORNL (Oak Ridge National Laboratory, Oak Ridge, TN 37831, USA); ANL (Argonne National Laboratory, Argonne, IL 60439, USA); BNL (Brookhaven National Laboratory, Upton, NY 11973, USA); LANL (Los Alamos National Laboratory, Los Alamos, NM 87545); LBNL (Lawrence Berkeley National Laboratory, Berkeley, CA 94720, USA); NAU (Northern Arizona University, Flagstaff, AZ 86011, USA); NCAR (National Center for Atmospheric Research, Boulder, CO 80305, USA); UCI (University of California Irvine, Irvine, CA 92697, USA); UM (University of Michigan, Ann Arbor, MI 48109, USA). Mailing address: ORNL Climate Change Science Institute, c/o Forrest M. Hoffman, Laboratory Research Manager, Building 4500N Room F106, 1 Bethel Valley Road, Oak Ridge, TN 37831-6301, USA", + "SNU":"Seoul National University, Seoul 08826, Republic of Korea", + "THU":"Department of Earth System Science, Tsinghua University, Beijing 100084, China", + "UA":"Department of Geosciences, University of Arizona, Tucson, AZ 85721, USA", + "UCI":"Department of Earth System Science, University of California Irvine, Irvine, CA 92697, USA", + "UCSB":"Bren School of Environmental Science and Management, University of California, Santa Barbara. Mailing address: c/o Samantha Stevenson, 2400 Bren Hall, University of California Santa Barbara, Santa Barbara, CA 93106, USA", + "UHH":"Universitat Hamburg, Hamburg 20148, Germany" + }, + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "institution_id_CV_modified":"Mon Aug 15 21:41:00 2022 -0700", + "institution_id_CV_note":"Register institution_id UCSB for E3SM-1-0", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/CMIP6_license.json b/tests/common/CMIP6_CVs_last/CMIP6_license.json new file mode 100644 index 00000000..ee4b967b --- /dev/null +++ b/tests/common/CMIP6_CVs_last/CMIP6_license.json @@ -0,0 +1,33 @@ +{ + "license":{ + "license":"CMIP6 model data produced by is licensed under a License (). 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 ]. 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.", + "license_options":{ + "CC BY 4.0":{ + "license_id":"Creative Commons Attribution 4.0 International", + "license_url":"https://creativecommons.org/licenses/by/4.0/" + }, + "CC BY-NC-SA 4.0":{ + "license_id":"Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International", + "license_url":"https://creativecommons.org/licenses/by-nc-sa/4.0/" + }, + "CC BY-SA 4.0":{ + "license_id":"Creative Commons Attribution-ShareAlike 4.0 International", + "license_url":"https://creativecommons.org/licenses/by-sa/4.0/" + }, + "CC0 1.0":{ + "license_id":"Creative Commons CC0 1.0 Universal Public Domain Dedication", + "license_url":"https://creativecommons.org/publicdomain/zero/1.0/" + } + } + }, + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "license_CV_modified":"Tue May 24 11:20:06 2022 -0700", + "license_CV_note":"Update published source_id entries with rights; augment license", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/CMIP6_nominal_resolution.json b/tests/common/CMIP6_CVs_last/CMIP6_nominal_resolution.json new file mode 100644 index 00000000..4ef34846 --- /dev/null +++ b/tests/common/CMIP6_CVs_last/CMIP6_nominal_resolution.json @@ -0,0 +1,29 @@ +{ + "nominal_resolution":[ + "0.5 km", + "1 km", + "10 km", + "100 km", + "1000 km", + "10000 km", + "1x1 degree", + "2.5 km", + "25 km", + "250 km", + "2500 km", + "5 km", + "50 km", + "500 km", + "5000 km" + ], + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "nominal_resolution_CV_modified":"Tues Nov 15 16:04:00 2016 -0700", + "nominal_resolution_CV_note":"Issue141 durack1 update grid_resolution to nominal_resolution (#143)", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/CMIP6_realm.json b/tests/common/CMIP6_CVs_last/CMIP6_realm.json new file mode 100644 index 00000000..bad989e7 --- /dev/null +++ b/tests/common/CMIP6_CVs_last/CMIP6_realm.json @@ -0,0 +1,22 @@ +{ + "realm":{ + "aerosol":"Aerosol", + "atmos":"Atmosphere", + "atmosChem":"Atmospheric Chemistry", + "land":"Land Surface", + "landIce":"Land Ice", + "ocean":"Ocean", + "ocnBgchem":"Ocean Biogeochemistry", + "seaIce":"Sea Ice" + }, + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "realm_CV_modified":"Tues Apr 18 12:03:00 2017 -0700", + "realm_CV_note":"Issue285 durack1 update realm format (#290)", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/CMIP6_required_global_attributes.json b/tests/common/CMIP6_CVs_last/CMIP6_required_global_attributes.json new file mode 100644 index 00000000..77c937d2 --- /dev/null +++ b/tests/common/CMIP6_CVs_last/CMIP6_required_global_attributes.json @@ -0,0 +1,44 @@ +{ + "required_global_attributes":[ + "Conventions", + "activity_id", + "creation_date", + "data_specs_version", + "experiment", + "experiment_id", + "forcing_index", + "frequency", + "further_info_url", + "grid", + "grid_label", + "initialization_index", + "institution", + "institution_id", + "license", + "mip_era", + "nominal_resolution", + "physics_index", + "product", + "realization_index", + "realm", + "source", + "source_id", + "source_type", + "sub_experiment", + "sub_experiment_id", + "table_id", + "tracking_id", + "variable_id", + "variant_label" + ], + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "required_global_attributes_CV_modified":"Thu Dec 19 15:32:17 2019 -0800", + "required_global_attributes_CV_note":"Reverting addition of external_variables to required_global_attributes", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/CMIP6_source_id.json b/tests/common/CMIP6_CVs_last/CMIP6_source_id.json new file mode 100644 index 00000000..da18ac27 --- /dev/null +++ b/tests/common/CMIP6_CVs_last/CMIP6_source_id.json @@ -0,0 +1,8105 @@ +{ + "source_id":{ + "4AOP-v1-5":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "label":"4AOP-v1-5", + "label_extended":"Line-By-Line Radiative Transfer Model v1.5, Laboratoire Meteorologie Dynamique, GEISA spectroscopic database", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2020-06-11: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2019", + "source_id":"4AOP-v1-5" + }, + "ACCESS-CM2":{ + "activity_participation":[ + "CMIP", + "DAMIP", + "FAFMIP", + "OMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CSIRO-ARCCSS" + ], + "label":"ACCESS-CM2", + "label_extended":"Australian Community Climate and Earth System Simulator Climate Model Version 2", + "license_info":{ + "exceptions_contact":"@csiro.au <- access_csiro", + "history":"2019-11-08: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CABLE2.5", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"ACCESS-OM2 (GFDL-MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE5.1.2 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"ACCESS-CM2" + }, + "ACCESS-ESM1-5":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "DAMIP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CSIRO" + ], + "label":"ACCESS-ESM1.5", + "label_extended":"Australian Community Climate and Earth System Simulator Earth System Model Version 1.5", + "license_info":{ + "exceptions_contact":"@csiro.au <- access_csiro", + "history":"2019-11-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"CLASSIC (v1.0)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CABLE2.4", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"WOMBAT (same grid as ocean)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE4.1 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"ACCESS-ESM1-5" + }, + "ACCESS-OM2":{ + "activity_participation":[ + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CSIRO-COSIMA" + ], + "label":"ACCESS-OM2", + "label_extended":"Australian Community Climate and Earth System Simulator Ocean Model Version 2", + "license_info":{ + "exceptions_contact":"@csiro.au <- access_csiro", + "history":"2021-06-16: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-2.3 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"WOMBAT (same grid as ocean)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE5.1.2 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2020", + "source_id":"ACCESS-OM2" + }, + "ACCESS-OM2-025":{ + "activity_participation":[ + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CSIRO-COSIMA" + ], + "label":"ACCESS-OM2-025", + "label_extended":"Australian Community Climate and Earth System Simulator Ocean Model Version 2 quarter degree", + "license_info":{ + "exceptions_contact":"@csiro.au <- access_csiro", + "history":"2021-06-17: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"ACCESS-OM2 (MOM5, tripolar primarily 1/4 deg; 1440 x 1080 longitude/latitude; 50 levels; top grid cell 0-2.3 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"WOMBAT (same grid as ocean)", + "native_nominal_resolution":"25 km" + }, + "seaIce":{ + "description":"CICE5.1.2 (same grid as ocean)", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2020", + "source_id":"ACCESS-OM2-025" + }, + "ARTS-2-3":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "UHH" + ], + "label":"ARTS 2.3", + "label_extended":"ARTS 2.3 (Current development version of the Atmospheric Radiative Transfer Simulator)", + "license_info":{ + "exceptions_contact":"@uni-hamburg.de <- oliver.lemke", + "history":"2019-06-20: initially published under CC BY-NC-SA 4.0; 2022-07-31: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2015", + "source_id":"ARTS-2-3" + }, + "AWI-CM-1-1-HR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "HighResMIP", + "OMIP", + "SIMIP", + "VIACSAB" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AWI" + ], + "label":"AWI-CM 1.1 HR", + "label_extended":"AWI-CM 1.1 HR", + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH 3.20", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"FESOM 1.4 (unstructured grid in the horizontal with 1306775 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"FESOM 1.4", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2018", + "source_id":"AWI-CM-1-1-HR" + }, + "AWI-CM-1-1-LR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AWI" + ], + "label":"AWI-CM 1.1 LR", + "label_extended":"AWI-CM 1.1 LR", + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH 3.20", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"FESOM 1.4", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"AWI-CM-1-1-LR" + }, + "AWI-CM-1-1-MR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "OMIP", + "PAMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AWI" + ], + "label":"AWI-CM 1.1 MR", + "label_extended":"AWI-CM 1.1 MR", + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2018-12-18: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH 3.20", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"FESOM 1.4 (unstructured grid in the horizontal with 830305 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"FESOM 1.4", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2018", + "source_id":"AWI-CM-1-1-MR" + }, + "AWI-ESM-1-1-LR":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AWI" + ], + "label":"AWI-ESM 1.1 LR", + "label_extended":"AWI-ESM 1.1 LR", + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2020-02-12: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH 3.20 with dynamic vegetation", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"FESOM 1.4", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"AWI-ESM-1-1-LR" + }, + "AWI-ESM-1-REcoM":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AWI" + ], + "label":"AWI-ESM 1 REcoM", + "label_extended":"AWI-ESM 1 REcoM", + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2024-07-04: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH 3.20 with dynamic vegetation", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"REcoM2 (same grid as ocean component)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"FESOM 1.4 (same grid as ocean component)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2024", + "source_id":"AWI-ESM-1-REcoM" + }, + "BCC-CSM2-HR":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "BCC" + ], + "label":"BCC-CSM 2 HR", + "label_extended":"BCC-CSM 2 HR", + "license_info":{ + "exceptions_contact":"@cma.gov.cn <- twwu", + "history":"2020-07-21: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"BCC_AGCM3_HR (T266; 800 x 400 longitude/latitude; 56 levels; top level 0.1 hPa)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"BCC_AVIM2", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"SIS2", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"BCC-CSM2-HR" + }, + "BCC-CSM2-MR":{ + "activity_participation":[ + "C4MIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "GMMIP", + "LS3MIP", + "LUMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "BCC" + ], + "label":"BCC-CSM 2 MR", + "label_extended":"BCC-CSM 2 MR", + "license_info":{ + "exceptions_contact":"@cma.gov.cn <- twwu", + "history":"2018-10-09: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"BCC_AGCM3_MR (T106; 320 x 160 longitude/latitude; 46 levels; top level 1.46 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"BCC_AVIM2", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"SIS2", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"BCC-CSM2-MR" + }, + "BCC-ESM1":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "BCC" + ], + "label":"BCC-ESM 1", + "label_extended":"BCC-ESM 1", + "license_info":{ + "exceptions_contact":"@cma.gov.cn <- twwu", + "history":"2018-11-14: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"BCC_AGCM3_LR (T42; 128 x 64 longitude/latitude; 26 levels; top level 2.19 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"BCC-AGCM3-Chem", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"BCC_AVIM2", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"SIS2", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"BCC-ESM1" + }, + "CAM-MPAS-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "PNNL-WACCEM" + ], + "label":"CAM-MPAS-HR", + "label_extended":"CAM MPAS (Community Atmosphere Model - Model for Prediction Across Scales)", + "license_info":{ + "exceptions_contact":"@pnnl.gov <- bryce.harrop", + "history":"2025-03-25: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 30 km mesh with 655362 cells and 1966080 edges; 32 levels, top level 40363 m)", + "native_nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CLM (v4.0, same grid as atmos), River Transport Model (v1.0)", + "native_nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2018", + "source_id":"CAM-MPAS-HR" + }, + "CAM-MPAS-LR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "PNNL-WACCEM" + ], + "label":"CAM-MPAS-LR", + "label_extended":"CAM MPAS (Community Atmosphere Model - Model for Prediction Across Scales)", + "license_info":{ + "exceptions_contact":"@pnnl.gov <- bryce.harrop", + "history":"2025-03-25: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 120 km mesh with 40962 cells and 122880 edges; 32 vertical levels, model top 40363 m)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CLM (v4.0, same grid as atmos), River Transport Model (v1.0)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2018", + "source_id":"CAM-MPAS-LR" + }, + "CAMS-CSM1-0":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "GMMIP", + "HighResMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CAMS" + ], + "label":"CAMS-CSM 1.0", + "label_extended":"CAMS-CSM 1.0", + "license_info":{ + "exceptions_contact":"@cma.gov.cn <- rongxy", + "history":"2019-07-08: initially published under CC BY-SA 4.0; 2022-09-29 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"ECHAM5_CAMS (T106; 320 x 160 longitude/latitude; 31 levels; top level 10 mb)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CoLM 1.0", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM4 (tripolar; 360 x 200 longitude/latitude, primarily 1deg latitude/longitude, down to 1/3deg within 30deg of the equatorial tropics; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"SIS 1.0", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2016", + "source_id":"CAMS-CSM1-0" + }, + "CAS-ESM2-0":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "HighResMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CAS" + ], + "label":"CAS-ESM 2.0", + "label_extended":"CAS-ESM 2.0 (Chinese Academy of Sciences Earth System Model version 2.0)", + "license_info":{ + "exceptions_contact":"@mail.iap.ac.cn <- zhanghe", + "history":"2020-03-01: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"IAP AACM", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"IAP AGCM 5.0 (Finite difference dynamical core; 256 x 128 longitude/latitude; 35 levels; top level 2.2 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"IAP AACM", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"CoLM", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"LICOM2.0 (LICOM2.0, primarily 1deg; 362 x 196 longitude/latitude; 30 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"IAP OBGCM", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE4", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"CAS-ESM2-0" + }, + "CESM1-1-CAM5-CMIP5":{ + "activity_participation":[ + "CMIP", + "DCPP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "label":"CESM1-1-CAM5-CMIP5", + "label_extended":"CESM1-1-CAM5-CMIP5", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-10-07: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM3 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM5.2 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"MAM3 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"CLM4 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"BEC (same grid as ocean)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE4 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2011", + "source_id":"CESM1-1-CAM5-CMIP5" + }, + "CESM1-CAM5-SE-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "label":"CESM1-CAM5-SE-HR", + "label_extended":"CESM 1.3 CAM5 spectral element configuration with CMIP5 forcings, hi res", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2020-07-24: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM3 (same grid as atmos)", + "native_nominal_resolution":"25 km" + }, + "atmos":{ + "description":"CAM5.2 (0.25 degree spectral element; 777602 cells; 30 levels; top level 2.25 mb)", + "native_nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"MAM3 (same grid as atmos)", + "native_nominal_resolution":"25 km" + }, + "land":{ + "description":"CLM4 (same grid as atmos)", + "native_nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"POP2 (3600x2400 longitude/latitude; 62 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"10 km" + }, + "ocnBgchem":{ + "description":"\"BEC (same grid as ocean)", + "native_nominal_resolution":"10 km" + }, + "seaIce":{ + "description":"CICE4 (same grid as ocean)", + "native_nominal_resolution":"10 km" + } + }, + "release_year":"2012", + "source_id":"CESM1-CAM5-SE-HR" + }, + "CESM1-CAM5-SE-LR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "label":"CESM1-CAM5-SE-LR", + "label_extended":"CESM 1.3 CAM5 spectral element configuration with CMIP5 forcings, lo res", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2020-07-08: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM3 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM5.2 (1 degree spectral element; 48602 cells; 30 levels; top level 2.25 mb)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"MAM3 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"CLM4 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"\"BEC (same grid as ocean)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE4 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2012", + "source_id":"CESM1-CAM5-SE-LR" + }, + "CESM1-WACCM-SC":{ + "activity_participation":[ + "PAMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "UCI", + "NCAR" + ], + "label":"CESM1-WACCM-SC", + "label_extended":"Community Earth System Model 1, with the Whole Atmosphere Community Climate Model and Specified Chemistry", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2020-10-12: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MOZART-specified (same grid as atmos)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"WACCM4 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 66 levels; top level 5.9e-06 mb)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"MOZART-specified (same grid as atmos)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"CLM4.0", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"BEC (same grid as ocean)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE4 (same as grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2011", + "source_id":"CESM1-WACCM-SC" + }, + "CESM2":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "HighResMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "label":"CESM2", + "label_extended":"CESM2", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-02-18: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"CLM5 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"CISM2.1", + "native_nominal_resolution":"5 km" + }, + "ocean":{ + "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"MARBL (same grid as ocean)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE5.1 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"CESM2" + }, + "CESM2-FV2":{ + "activity_participation":[ + "CMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "label":"CESM2-FV2", + "label_extended":"CESM2-FV2", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"CAM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 32 levels; top level 2.25 mb)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"CLM5 (same grid as atmos)", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"CISM2.1", + "native_nominal_resolution":"5 km" + }, + "ocean":{ + "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"MARBL (same grid as ocean)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE5.1 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"CESM2-FV2" + }, + "CESM2-WACCM":{ + "activity_participation":[ + "AerChemMIP", + "CMIP", + "GeoMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "label":"CESM2-WACCM", + "label_extended":"CESM2-WACCM", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-02-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"WACCM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 70 levels; top level 4.5e-06 mb)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"CLM5 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"CISM2.1", + "native_nominal_resolution":"5 km" + }, + "ocean":{ + "description":"POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"MARBL (same grid as ocean)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE5.1 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"CESM2-WACCM" + }, + "CESM2-WACCM-FV2":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "label":"CESM2-WACCM-FV2", + "label_extended":"CESM2-WACCM-FV2", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"WACCM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 70 levels; top level 4.5e-06 mb)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"CLM5 (same grid as atmos)", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"CISM2.1", + "native_nominal_resolution":"5 km" + }, + "ocean":{ + "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"MARBL (same grid as ocean)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE5.1 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"CESM2-WACCM-FV2" + }, + "CIESM":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "CORDEX", + "GMMIP", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "THU" + ], + "label":"CIESM", + "label_extended":"Community Integrated Earth System Model", + "license_info":{ + "exceptions_contact":"@tsinghua.edu.cn <- yanluan", + "history":"2019-12-02: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM4", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CIESM-AM (FV/FD; 288 x 192 longitude/latitude; 30 levels; top level 2.255 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"trop_mam4", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"CIESM-LM (modified CLM4.5)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"CIESM-OM (FD, SCCGrid Displaced Pole; 720 x 560 longitude/latitude; 46 levels; top grid cell 0-6 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"CIESM" + }, + "CMCC-CM2-HR4":{ + "activity_participation":[ + "CMIP", + "HighResMIP", + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CMCC" + ], + "label":"CMCC-CM2-HR4", + "label_extended":"CMCC-CM2-HR4", + "license_info":{ + "exceptions_contact":"@cmcc.it <- silvio.gualdi", + "history":"2017-07-06: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"prescribed MACv2-SP", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM4 (1deg; 288 x 192 longitude/latitude; 26 levels; top at ~2 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.5 (SP mode)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2016", + "source_id":"CMCC-CM2-HR4" + }, + "CMCC-CM2-SR5":{ + "activity_participation":[ + "AerChemMIP", + "CMIP", + "DAMIP", + "DCPP", + "GMMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CMCC" + ], + "label":"CMCC-CM2-SR5", + "label_extended":"CMCC-CM2-SR5", + "license_info":{ + "exceptions_contact":"@cmcc.it <- silvio.gualdi", + "history":"2020-02-26: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM3", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.5 (BGC mode)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2016", + "source_id":"CMCC-CM2-SR5" + }, + "CMCC-CM2-VHR4":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CMCC" + ], + "label":"CMCC-CM2-VHR4", + "label_extended":"CMCC-CM2-VHR4", + "license_info":{ + "exceptions_contact":"@cmcc.it <- enrico.scoccimarro", + "history":"2017-09-27: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"prescribed MACv2-SP", + "native_nominal_resolution":"25 km" + }, + "atmos":{ + "description":"CAM4 (1/4deg; 1152 x 768 longitude/latitude; 26 levels; top at ~2 hPa)", + "native_nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.5 (SP mode)", + "native_nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"CMCC-CM2-VHR4" + }, + "CMCC-ESM2":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CMCC" + ], + "label":"CMCC-ESM2", + "label_extended":"CMCC-ESM2", + "license_info":{ + "exceptions_contact":"@cmcc.it <- tomas.lovato", + "history":"2020-02-03: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM3", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.5 (BGC mode)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"BFM5.2", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"CMCC-ESM2" + }, + "CNRM-CM6-1":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "HighResMIP", + "ISMIP6", + "LS3MIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "label":"CNRM-CM6-1", + "label_extended":"CNRM-CM6-1", + "license_info":{ + "exceptions_contact":"@cerfacs.fr <- contact.cmip6", + "history":"2018-06-26: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"prescribed monthly fields computed by TACTIC_v2 scheme", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"OZL_v2", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"Surfex 8.0c", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"Gelato 6.1", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"CNRM-CM6-1" + }, + "CNRM-CM6-1-HR":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "HighResMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "label":"CNRM-CM6-1-HR", + "label_extended":"CNRM-CM6-1-HR", + "license_info":{ + "exceptions_contact":"@cerfacs.fr <- contact.cmip6", + "history":"2019-02-21: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"prescribed monthly fields computed by TACTIC_v2 scheme", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"Arpege 6.3 (T359; Gaussian Reduced with 181724 grid points in total distributed over 360 latitude circles (with 720 grid points per latitude circle between 32.2degN and 32.2degS reducing to 18 grid points per latitude circle at 89.6degN and 89.6degS); 91 levels; top level 78.4 km)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"OZL_v2", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"Surfex 8.0c", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"Nemo 3.6 (eORCA025, tripolar primarily 1/4deg; 1442 x 1050 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"Gelato 6.1", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"CNRM-CM6-1-HR" + }, + "CNRM-ESM2-1":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CMIP", + "CORDEX", + "DCPP", + "GMMIP", + "GeoMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "label":"CNRM-ESM2-1", + "label_extended":"CNRM-ESM2-1", + "license_info":{ + "exceptions_contact":"@meteo.fr <- contact.cmip", + "history":"2018-09-14: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"TACTIC_v2", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"REPROBUS-C_v2", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"Surfex 8.0c", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"Pisces 2.s", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"Gelato 6.1", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"CNRM-ESM2-1" + }, + "CanESM5":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CCCma" + ], + "label":"CanESM5", + "label_extended":"CanESM5", + "license_info":{ + "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", + "history":"2019-03-06: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"500 km" + }, + "atmos":{ + "description":"CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", + "native_nominal_resolution":"500 km" + }, + "atmosChem":{ + "description":"specified oxidants for aerosols", + "native_nominal_resolution":"500 km" + }, + "land":{ + "description":"CLASS3.6/CTEM1.2", + "native_nominal_resolution":"500 km" + }, + "landIce":{ + "description":"specified ice sheets", + "native_nominal_resolution":"500 km" + }, + "ocean":{ + "description":"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)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"LIM2", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"CanESM5" + }, + "CanESM5-1":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CCCma" + ], + "label":"CanESM5.1", + "label_extended":"CanESM5.1", + "license_info":{ + "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", + "history":"2022-12-02: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"500 km" + }, + "atmos":{ + "description":"CanAM5.1 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", + "native_nominal_resolution":"500 km" + }, + "atmosChem":{ + "description":"specified oxidants for aerosols", + "native_nominal_resolution":"500 km" + }, + "land":{ + "description":"CLASS3.6/CTEM1.2", + "native_nominal_resolution":"500 km" + }, + "landIce":{ + "description":"specified ice sheets", + "native_nominal_resolution":"500 km" + }, + "ocean":{ + "description":"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)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"LIM2", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2022", + "source_id":"CanESM5-1" + }, + "CanESM5-CanOE":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CCCma" + ], + "label":"CanESM5-CanOE", + "label_extended":"CanESM5-CanOE", + "license_info":{ + "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", + "history":"2019-04-29: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"500 km" + }, + "atmos":{ + "description":"CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", + "native_nominal_resolution":"500 km" + }, + "atmosChem":{ + "description":"specified oxidants for aerosols", + "native_nominal_resolution":"500 km" + }, + "land":{ + "description":"CLASS3.6/CTEM1.2", + "native_nominal_resolution":"500 km" + }, + "landIce":{ + "description":"specified ice sheets", + "native_nominal_resolution":"500 km" + }, + "ocean":{ + "description":"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)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"Canadian Ocean Ecosystem (CanOE) with OMIP prescribed carbon chemistry", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"LIM2", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"CanESM5-CanOE" + }, + "E3SM-1-0":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "PAMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "E3SM-Project", + "LLNL", + "UCI", + "UCSB" + ], + "label":"E3SM 1.0", + "label_extended":"E3SM 1.0 (Energy Exascale Earth System Model)", + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2019-02-06: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"EAM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"ELM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; satellite phenology mode), MOSART (v1.0, 0.5 degree latitude/longitude grid)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"MPAS-Seaice (v6.0, same grid as ocean)", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2018", + "source_id":"E3SM-1-0" + }, + "E3SM-1-1":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "DAMIP", + "LS3MIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "E3SM-Project", + "RUBISCO" + ], + "label":"E3SM 1.1", + "label_extended":"E3SM 1.1 (Energy Exascale Earth System Model)", + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2019-10-29: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"ELM (v1.1, same grid as atmos; active biogeochemistry using the Converging Trophic Cascade plant and soil carbon and nutrient mechanisms to represent carbon, nitrogen and phosphorus cycles), MOSART (v1.1, 0.5 degree latitude/longitude grid)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)", + "native_nominal_resolution":"50 km" + }, + "seaIce":{ + "description":"MPAS-Seaice (v6.0; same grid as ocean)", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2019", + "source_id":"E3SM-1-1" + }, + "E3SM-1-1-ECA":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "E3SM-Project" + ], + "label":"E3SM 1.1 ECA", + "label_extended":"E3SM 1.1 (Energy Exascale Earth System Model) with an experimental land BGC ECA configuration", + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2019-12-16: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"ELM (v1.1, same as atmos; active biogeochemistry using the Equilibrium Chemistry Approximation to represent plant and soil carbon and nutrient mechanisms especially carbon, nitrogen and phosphorus limitation), MOSART (v1.1, 0.5 degree latitude/longitude grid)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)", + "native_nominal_resolution":"50 km" + }, + "seaIce":{ + "description":"MPAS-Seaice (v6.0; same grid as ocean)", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2019", + "source_id":"E3SM-1-1-ECA" + }, + "E3SM-2-0":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "E3SM-Project" + ], + "label":"E3SM 2.0", + "label_extended":"E3SM 2.0 (Energy Exascale Earth System Model)", + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2022-08-23: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM4 with new resuspension, marine organics, secondary organics, and dust (atmos grid)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"EAM (v2.0, cubed sphere spectral-element grid; 5400 elements, 30x30 per cube face. Dynamics: degree 3 (p=3) polynomials within each spectral element, 112 km average resolution. Physics: 2x2 finite volume cells within each spectral element, 1.5 degree (168 km) average grid spacing; 72 vertical layers; top level 60 km)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos grid)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"ELM (v1.0, satellite phenology mode, atmos grid), MOSART (v1.0, 0.5 degree latitude/longitude)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MPAS-Ocean (E3SMv2.0, EC30to60E2r2 unstructured SVTs mesh with 236853 cells, 719506 edges, variable resolution 60 to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"MPAS-Seaice (E3SMv2.0, ocean grid; 5 ice categories; 7 ice, 5 snow layers)", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2022", + "source_id":"E3SM-2-0" + }, + "E3SM-2-0-NARRM":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "E3SM-Project" + ], + "label":"E3SM 2.0 NARRM", + "label_extended":"E3SM 2.0 NARRM (Energy Exascale Earth System Model version 2.0 North American Regionally Refined Model)", + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2023-04-26: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM4 w/ new resuspension, marine organics, secondary organics, and dust (atmos grid)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"EAM (v2.0, Dynamics: cubed sphere spectral-element grid, 130,088 columns; Physics: 2x2 finite volume cells within each spectral element, 57,816 columns. N. American (NA): 25 to 100 km; outside ~100 km. 72 vertical layers w/ top at 60 km)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos grid)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"ELM (v1.0, satellite phenology mode, atmos grid), MOSART (v1.0, 0.125 degree latitude/longitude)", + "native_nominal_resolution":"10 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MPAS-Ocean (E3SMv2.0, WC14to60E2r5 unstructured SCVTs mesh with 407420 cells, 1240672 edges, NA: ~14 km; outside: 30 to 60 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"MPAS-Seaice (E3SMv2.0, ocean grid, variable resolution 30 to 60 km; 5 ice categories; 7 ice, 5 snow layers)", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2022", + "source_id":"E3SM-2-0-NARRM" + }, + "E3SM-2-1":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "E3SM-Project" + ], + "label":"E3SM 2.1", + "label_extended":"E3SM 2.1 (Energy Exascale Earth System Model)", + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2024-02-05: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM4 w/ new resuspension, marine organics, secondary organics, and dust (atmos physics grid)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"EAM (E3SMv2.1, cubed sphere spectral-element; 5400 els., 30x30 per cube face. Dynamics: degree 3 (p=3) polynomials within each spectral els., 112 km ave. resolution. Physics: 2x2 finite volume cells within each spectral els., 1.5 degree (168 km) average grid spacing; 72 vertical layers w/ top at 60 km)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos physics grid)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"ELM (E3SMv2.1, atmos physics grid, satellite phenology mode), MOSART (E3SMv2.1, 0.5 deg lat/lon grid)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MPAS-Ocean (E3SMv2.1, EC30to60E2r2 unstructured SVTs mesh with 236853 cells and 719506 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"MPAS-Seaice (E3SMv2.1, MPAS-Ocean grid; 5 ice categories, 7 ice layers, 5 snow layers)", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2024", + "source_id":"E3SM-2-1" + }, + "EC-Earth3":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "LS3MIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3", + "label_extended":"EC Earth 3.3", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2019-04-05: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"EC-Earth3" + }, + "EC-Earth3-AerChem":{ + "activity_participation":[ + "AerChemMIP", + "CMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-AerChem", + "label_extended":"EC-Earth3-AerChem", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2020-06-22: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"EC-Earth3-AerChem" + }, + "EC-Earth3-CC":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "DCPP", + "LUMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-CC", + "label_extended":"EC-Earth3-CC", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2020-12-29: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"PISCES v2", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"EC-Earth3-CC" + }, + "EC-Earth3-ESM-1":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "DCPP", + "LUMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-ESM-1", + "label_extended":"EC-Earth3-ESM-1", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2024-09-25: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa) and co2box v1.0 (CO2 box model; global grid)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4.1.2 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"PISM v1.2 (5 km x 5 km for Greenland, 31 levels)", + "native_nominal_resolution":"5 km" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m) and MWE v1.0 (Melt Water Emulator; same grid as ocean for Antarctic surroundings)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"PISCES v2 (same grid as ocean)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"LIM3 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2024", + "source_id":"EC-Earth3-ESM-1" + }, + "EC-Earth3-HR":{ + "activity_participation":[ + "CMIP", + "DCPP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-HR", + "label_extended":"EC-Earth3-HR", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2022-06-27: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA025 tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2019", + "source_id":"EC-Earth3-HR" + }, + "EC-Earth3-LR":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-LR", + "label_extended":"EC-Earth3-LR", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2019-01-03: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"EC-Earth3-LR" + }, + "EC-Earth3-Veg":{ + "activity_participation":[ + "CDRMIP", + "CMIP", + "CORDEX", + "LS3MIP", + "LUMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-Veg", + "label_extended":"EC-Earth3-Veg", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2019-04-10: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"EC-Earth3-Veg" + }, + "EC-Earth3-Veg-LR":{ + "activity_participation":[ + "CMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-Veg-LR", + "label_extended":"EC-Earth3-Veg-LR", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2020-02-13: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"EC-Earth3-Veg-LR" + }, + "EC-Earth3P":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3P", + "label_extended":"EC-Earth 3.2 in PRIMAVERA", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2017-09-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"EC-Earth3P" + }, + "EC-Earth3P-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3P-HR", + "label_extended":"EC-Earth3P-HR in PRIMAVERA", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2017-08-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA025; tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"EC-Earth3P-HR" + }, + "EC-Earth3P-VHR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3P-VHR", + "label_extended":"EC-Earth3P-VHR in PRIMAVERA", + "license_info":{ + "exceptions_contact":"@bsc.es <- pierre-antoine.bretonniere", + "history":"2020-10-07: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"IFS cy36r4 (TL1279, linearly reduced Gaussian grid equivalent to 2560 x 1280 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.6 (ORCA012 tripolar primarily 0.08 degrees; 4322 x 3059 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"10 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"10 km" + } + }, + "release_year":"2017", + "source_id":"EC-Earth3P-VHR" + }, + "ECMWF-IFS-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "ECMWF" + ], + "label":"ECMWF-IFS-HR", + "label_extended":"ECMWF-IFS-HR (25 km atmosphere and 25 km ocean)", + "license_info":{ + "exceptions_contact":"@ecmwf.int <- christopher.roberts", + "history":"2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"IFS (IFS CY43R1, Tco399, cubic octahedral reduced Gaussian grid equivalent to 1600 x 800 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (as implemented in IFS CY43R1)", + "native_nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"ECMWF-IFS-HR" + }, + "ECMWF-IFS-LR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "ECMWF" + ], + "label":"ECMWF-IFS-LR", + "label_extended":"ECMWF-IFS-LR (50 km atmosphere and 100 km ocean)", + "license_info":{ + "exceptions_contact":"@ecmwf.int <- christopher.roberts", + "history":"2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (as implemented in IFS CY43R1)", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.4 (NEMO v3.4; ORCA1 tripolar grid; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM2 (LIM v2; ORCA1 tripolar grid; 362 x 292 longitude/latitude)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"ECMWF-IFS-LR" + }, + "ECMWF-IFS-MR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "ECMWF" + ], + "label":"ECMWF-IFS-MR", + "label_extended":"ECMWF-IFS-MR (50 km atmosphere and 25 km ocean)", + "license_info":{ + "exceptions_contact":"@ecmwf.int <- christopher.roberts", + "history":"2018-11-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (as implemented in IFS CY43R1)", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"ECMWF-IFS-MR" + }, + "FGOALS-f3-H":{ + "activity_participation":[ + "CMIP", + "HighResMIP", + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CAS" + ], + "label":"FGOALS-f3-H", + "label_extended":"FGOALS-f3-H", + "license_info":{ + "exceptions_contact":"@mail.iap.ac.cn <- linpf", + "history":"2019-08-16: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"FAMIL2.2 (Cubed-sphere, c384; 1440 x 720 longitude/latitude; 32 levels; top level 2.16 hPa)", + "native_nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.0", + "native_nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"LICOM3.0 (LICOM3.0, tripolar primarily 0.1deg; 3600 x 2302 longitude/latitude; 55 levels; top grid cell 0-5 m)", + "native_nominal_resolution":"10 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"10 km" + } + }, + "release_year":"2017", + "source_id":"FGOALS-f3-H" + }, + "FGOALS-f3-L":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "HighResMIP", + "OMIP", + "PAMIP", + "PMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CAS" + ], + "label":"FGOALS-f3-L", + "label_extended":"FGOALS-f3-L", + "license_info":{ + "exceptions_contact":"@mail.iap.ac.cn <- linpf", + "history":"2018-11-08: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"FAMIL2.2 (Cubed-sphere, c96; 360 x 180 longitude/latitude; 32 levels; top level 2.16 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.0", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"FGOALS-f3-L" + }, + "FGOALS-g3":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "LS3MIP", + "OMIP", + "PMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CAS" + ], + "label":"FGOALS-g3", + "label_extended":"FGOALS-g3", + "license_info":{ + "exceptions_contact":"@mail.iap.ac.cn <- linpf", + "history":"2019-08-18: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"GAMIL3 (180 x 80 longitude/latitude; 26 levels; top level 2.19hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CAS-LSM", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"FGOALS-g3" + }, + "FIO-ESM-2-0":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "OMIP", + "ScenarioMIP", + "SIMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "FIO-QLNM" + ], + "label":"FIO-ESM 2.0", + "label_extended":"FIO-ESM 2.0", + "license_info":{ + "exceptions_contact":"@fio.org.cn <- songroy", + "history":"2019-09-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"Prescribed monthly fields", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM4 (0.9x1.25 finite volume grid; 192 x 288 longitude/latitude; 26 levels; top level ~2 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.0 (same grid at atmos)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"POP2-W (POP2 coupled with MASNUM surface wave model, Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"FIO-ESM-2-0" + }, + "GFDL-AM4":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-AM4", + "label_extended":"GFDL-AM4", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"GFDL-AM4.0 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"fast chemistry, aerosol only", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"GFDL-LM4.0", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"GFDL-LM4.0", + "native_nominal_resolution":"100 km" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2018", + "source_id":"GFDL-AM4" + }, + "GFDL-CM4":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-CM4", + "label_extended":"GFDL-CM4", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"GFDL-AM4.0.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"fast chemistry, aerosol only", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"GFDL-LM4.0.1 (1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 20 levels; bottom level 10m); land-Veg:unnamed (dynamic vegetation, dynamic land use); land-Hydro:unnamed (soil water and ice, multi-layer snow, rivers and lakes)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"GFDL-LM4.0.1", + "native_nominal_resolution":"100 km" + }, + "ocean":{ + "description":"GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"GFDL-BLINGv2", + "native_nominal_resolution":"25 km" + }, + "seaIce":{ + "description":"GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2018", + "source_id":"GFDL-CM4" + }, + "GFDL-CM4C192":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-CM4C192", + "label_extended":"GFDL-CM4C192", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"50 km" + }, + "atmos":{ + "description":"GFDL-AM4C192 (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 720 x 360 longitude/latitude; 33 levels; top level 1 hPa)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"fast chemistry, aerosol only", + "native_nominal_resolution":"50 km" + }, + "land":{ + "description":"GFDL-LM4.0.1", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"GFDL-LM4.0.1", + "native_nominal_resolution":"50 km" + }, + "ocean":{ + "description":"GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2018", + "source_id":"GFDL-CM4C192" + }, + "GFDL-ESM2M":{ + "activity_participation":[ + "FAFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-ESM2M", + "label_extended":"GFDL-ESM2M", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"prescribed", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"GFDL-AM2 (144 x 90 longitude/latitude; 24 levels; top level 1 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"prescribed", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"GFDL-LM3.0", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"GFDL-LM3.0", + "native_nominal_resolution":"250 km" + }, + "ocean":{ + "description":"GFDL-MOM4p1 (tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"GFDL-TOPAZ2", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"GFDL-SIM2 (GFDL-SIS, tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 3 layers; 5 thickness categories)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2012", + "source_id":"GFDL-ESM2M" + }, + "GFDL-ESM4":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "LUMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-ESM4", + "label_extended":"GFDL-ESM4", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"GFDL-AM4.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 49 levels; top level 1 Pa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"GFDL-ATMCHEM4.1 (full atmospheric chemistry)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"GFDL-LM4.1", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"GFDL-LM4.1", + "native_nominal_resolution":"100 km" + }, + "ocean":{ + "description":"GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"GFDL-COBALTv2", + "native_nominal_resolution":"50 km" + }, + "seaIce":{ + "description":"GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2018", + "source_id":"GFDL-ESM4" + }, + "GFDL-GRTCODE":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-GRTCODE", + "label_extended":"GFDL GPU radiative transfer code with two stream solver (March 2019)", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2019", + "source_id":"GFDL-GRTCODE" + }, + "GFDL-OM4p5B":{ + "activity_participation":[ + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-OM4p5B", + "label_extended":"GFDL-OM4p5B", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"GFDL-BLINGv2", + "native_nominal_resolution":"50 km" + }, + "seaIce":{ + "description":"GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2018", + "source_id":"GFDL-OM4p5B" + }, + "GFDL-RFM-DISORT":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-RFM-DISORT", + "label_extended":"GFDL Reference Forward Model Line-by-Line with DISORT solver (March 2019)", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2019", + "source_id":"GFDL-RFM-DISORT" + }, + "GISS-E2-1-G":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NASA-GISS" + ], + "label":"GISS-E2.1G", + "label_extended":"GISS-E2.1G", + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2018-08-21: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" + }, + "model_component":{ + "aerosol":{ + "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"GISS LSM", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"GISS SI", + "native_nominal_resolution":"250 km" + } + }, + "release_year":"2019", + "source_id":"GISS-E2-1-G" + }, + "GISS-E2-1-G-CC":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NASA-GISS" + ], + "label":"GISS-E2-1-G-CC", + "label_extended":"GISS-E2-1-G-CC", + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2019-03-25: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" + }, + "model_component":{ + "aerosol":{ + "description":"varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"GISS-E2.1 (2 x 2.5 degrees; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"GISS LSM", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"Fixed", + "native_nominal_resolution":"250 km" + }, + "ocean":{ + "description":"GISS Ocean (1 deg; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"NOBM (NASA Ocean Biogeochemistry Model; same grid as ocean)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"GISS SI (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"GISS-E2-1-G-CC" + }, + "GISS-E2-1-H":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "OMIP", + "PAMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NASA-GISS" + ], + "label":"GISS-E2.1H", + "label_extended":"GISS-E2.1H", + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2018-08-24: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" + }, + "model_component":{ + "aerosol":{ + "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"GISS LSM", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 33 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"GISS SI", + "native_nominal_resolution":"250 km" + } + }, + "release_year":"2019", + "source_id":"GISS-E2-1-H" + }, + "GISS-E2-2-G":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NASA-GISS" + ], + "label":"GISS-E2-2-G", + "label_extended":"GISS-E2-2-G", + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" + }, + "model_component":{ + "aerosol":{ + "description":"varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"GISS-E2.2 (High-top, 2 x 2.5 degrees; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"GISS LSM", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"Fixed", + "native_nominal_resolution":"250 km" + }, + "ocean":{ + "description":"GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"GISS SI", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"GISS-E2-2-G" + }, + "GISS-E2-2-H":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NASA-GISS" + ], + "label":"GISS-E2.2H", + "label_extended":"GISS-E2.2H", + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" + }, + "model_component":{ + "aerosol":{ + "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"GISS-E2.2 (High Top, 2.5x2 degree; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"GISS LSM", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 33 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"GISS SI (same grid as atmos)", + "native_nominal_resolution":"250 km" + } + }, + "release_year":"2021", + "source_id":"GISS-E2-2-H" + }, + "GISS-E3-G":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NASA-GISS" + ], + "label":"GISS-E3-G", + "label_extended":"GISS-E3-G", + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2019-12-30: initially published under CC BY-NC-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" + }, + "model_component":{ + "aerosol":{ + "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"GISS-E3 (Cubed sphere, C90; 90 x 90 x 6 gridboxes/cubeface, grid resolution aligns with longitude/latitude along central lines for each cubeface; 102 levels; top level 0.002 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"GISS LSM", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"GISS Ocean (1 degree; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"GISS SI", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2020", + "source_id":"GISS-E3-G" + }, + "HadGEM3-GC31-HH":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "label":"HadGEM3-GC31-HH", + "label_extended":"HadGEM3-GC3.1-N512ORCA12", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2018-09-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"50 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"10 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", + "native_nominal_resolution":"10 km" + } + }, + "release_year":"2016", + "source_id":"HadGEM3-GC31-HH" + }, + "HadGEM3-GC31-HM":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "label":"HadGEM3-GC31-HM", + "label_extended":"HadGEM3-GC3.1-N512ORCA025", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-08-31: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"50 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2016", + "source_id":"HadGEM3-GC31-HM" + }, + "HadGEM3-GC31-LL":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "FAFMIP", + "HighResMIP", + "LS3MIP", + "LUMIP", + "PMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "label":"HadGEM3-GC31-LL", + "label_extended":"HadGEM3-GC3.1-N96ORCA1", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-09-21: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"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)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2016", + "source_id":"HadGEM3-GC31-LL" + }, + "HadGEM3-GC31-LM":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC" + ], + "label":"HadGEM3-GC31-LM", + "label_extended":"HadGEM3-GC3.1-N96ORCA025", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-09-06: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2016", + "source_id":"HadGEM3-GC31-LM" + }, + "HadGEM3-GC31-MH":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC" + ], + "label":"HadGEM3-GC31-MH", + "label_extended":"HadGEM3-GC3.1-N216ORCA12", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-12-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"10 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", + "native_nominal_resolution":"10 km" + } + }, + "release_year":"2016", + "source_id":"HadGEM3-GC31-MH" + }, + "HadGEM3-GC31-MM":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "HighResMIP", + "LS3MIP", + "OMIP", + "PAMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC" + ], + "label":"HadGEM3-GC31-MM", + "label_extended":"HadGEM3-GC3.1-N216ORCA025", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-08-18: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2016", + "source_id":"HadGEM3-GC31-MM" + }, + "HiRAM-SIT-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AS-RCEC" + ], + "label":"HiRAM-SIT-HR", + "label_extended":"HiRAM Coupling 1-D SIT (25 km atmosphere and 25 km ocean)", + "license_info":{ + "exceptions_contact":"@gate.sinica.edu.tw <- cytu", + "history":"2020-12-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"GFDL-HiRAM (Cubed-sphere (c384) - 0.25 degree nominal horizontal resolution; 1536 x 768 longitude/latitude; 32 levels; top level 1 hPa)", + "native_nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"GFDL-LM3 (same grid as atmos)", + "native_nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2018", + "source_id":"HiRAM-SIT-HR" + }, + "HiRAM-SIT-LR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AS-RCEC" + ], + "label":"HiRAM-SIT-LR", + "label_extended":"HiRAM Coupling 1-D SIT (50 km atmosphere and 25 km ocean)", + "license_info":{ + "exceptions_contact":"@gate.sinica.edu.tw <- cytu", + "history":"2020-12-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"GFDL-HiRAM (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 768 x 384 longitude/latitude; 32 levels; top level 1 hPa)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"GFDL-LM3 (same grid as atmos)", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)", + "native_nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2018", + "source_id":"HiRAM-SIT-LR" + }, + "ICON-ESM-LR":{ + "activity_participation":[ + "CMIP", + "OMIP", + "SIMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MPI-M" + ], + "label":"ICON-ESM-LR", + "label_extended":"ICON-ESM-LR", + "license_info":{ + "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", + "history":"2021-02-15: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"ICON-A (icosahedral/triangles; 160 km; 47 levels; top level 80 km)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH4.20", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none/prescribed", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"ICON-O (icosahedral/triangles; 40 km; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"HAMOCC", + "native_nominal_resolution":"50 km" + }, + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"ICON-ESM-LR" + }, + "IITM-ESM":{ + "activity_participation":[ + "CMIP", + "GMMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CCCR-IITM" + ], + "label":"IITM-ESM", + "label_extended":"IITM-ESM", + "license_info":{ + "exceptions_contact":"@tropmet.res.in <- iitm-esm", + "history":"2019-07-19: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"prescribed MAC-v2", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"IITM-GFSv1 (T62L64, Linearly Reduced Gaussian Grid; 192 x 94 longitude/latitude; 64 levels; top level 0.2 mb)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"NOAH LSMv2.7.1", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM4p1 (tripolar, primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"TOPAZv2.0", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"SISv1.0", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2015", + "source_id":"IITM-ESM" + }, + "INM-CM4-8":{ + "activity_participation":[ + "CMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "INM" + ], + "label":"INM-CM4-8", + "label_extended":"INM-CM4-8", + "license_info":{ + "exceptions_contact":"@gmail.com <- volodinev", + "history":"2019-05-28: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"INM-AER1", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"INM-AM4-8 (2x1.5; 180 x 120 longitude/latitude; 21 levels; top level sigma = 0.01)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"INM-LND1", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"INM-OM5 (North Pole shifted to 60N, 90E; 360 x 318 longitude/latitude; 40 levels; sigma vertical coordinate)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"INM-ICE1", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2016", + "source_id":"INM-CM4-8" + }, + "INM-CM5-0":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "INM" + ], + "label":"INM-CM5-0", + "label_extended":"INM-CM5-0", + "license_info":{ + "exceptions_contact":"@gmail.com <- volodinev", + "history":"2019-06-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"INM-AER1", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"INM-AM5-0 (2x1.5; 180 x 120 longitude/latitude; 73 levels; top level sigma = 0.0002)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"INM-LND1", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"INM-OM5 (North Pole shifted to 60N, 90E. 0.5x0.25; 720 x 720 longitude/latitude; 40 levels; vertical sigma coordinate)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"INM-ICE1", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2016", + "source_id":"INM-CM5-0" + }, + "INM-CM5-H":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "INM" + ], + "label":"INM-CM5-H", + "label_extended":"INM-CM5-H", + "license_info":{ + "exceptions_contact":"@gmail.com <- volodinev", + "history":"2019-08-12: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"INM-AER1", + "native_nominal_resolution":"50 km" + }, + "atmos":{ + "description":"INM-AM5-H (0.67x0.5; 540 x 360 longitude/latitude; 73 levels; top level sigma = 0.0002)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"INM-LND1", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"INM-OM5-H (North Pole shifted to 60N, 90E. 0.167x0.125; 2160x1440 longitude/latitude; 40 levels; vertical sigma coordinate)", + "native_nominal_resolution":"10 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"INM-ICE1", + "native_nominal_resolution":"10 km" + } + }, + "release_year":"2016", + "source_id":"INM-CM5-H" + }, + "IPSL-CM5A2-INCA":{ + "activity_participation":[ + "AerChemMIP", + "LUMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "label":"IPSL-CM5A2-INCA", + "label_extended":"IPSL-CM5A2-INCA", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2020-07-29: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"INCA v6 NMHC-AER-S", + "native_nominal_resolution":"500 km" + }, + "atmos":{ + "description":"LMDZ (APv5; 96 x 96 longitude/latitude; 39 levels; top level 80000 m)", + "native_nominal_resolution":"500 km" + }, + "atmosChem":{ + "description":"INCA v6 NMHC-AER-S", + "native_nominal_resolution":"500 km" + }, + "land":{ + "description":"ORCHIDEE (IPSLCM5A2.1, Water/Carbon/Energy mode)", + "native_nominal_resolution":"500 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO-OPA (v3.6, ORCA2 tripolar primarily 2deg; 182 x 149 longitude/latitude; 31 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"250 km" + }, + "ocnBgchem":{ + "description":"NEMO-PISCES", + "native_nominal_resolution":"250 km" + }, + "seaIce":{ + "description":"NEMO-LIM2", + "native_nominal_resolution":"250 km" + } + }, + "release_year":"2019", + "source_id":"IPSL-CM5A2-INCA" + }, + "IPSL-CM6A-ATM-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "label":"IPSL-CM6A-ATM-HR", + "label_extended":"IPSL-CM6A-ATM-HR", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2019-01-22: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"LMDZ (NPv6, N256; 512 x 360 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2018", + "source_id":"IPSL-CM6A-ATM-HR" + }, + "IPSL-CM6A-ATM-ICO-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "label":"IPSL-CM6A-ATM-ICO-HR", + "label_extended":"IPSL-CM6A-ATM-ICO-HR", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2022-07-21: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"DYNAMICO-LMDZ (NPv6; 256000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_ominal_resolution":"none" + } + }, + "release_year":"2021", + "source_id":"IPSL-CM6A-ATM-ICO-HR" + }, + "IPSL-CM6A-ATM-ICO-LR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "label":"IPSL-CM6A-ATM-ICO-LR", + "label_extended":"IPSL-CM6A-ATM-ICO-LR", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2022-07-21: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"DYNAMICO-LMDZ (NPv6; 16000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_ominal_resolution":"none" + } + }, + "release_year":"2021", + "source_id":"IPSL-CM6A-ATM-ICO-LR" + }, + "IPSL-CM6A-ATM-ICO-MR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "label":"IPSL-CM6A-ATM-ICO-MR", + "label_extended":"IPSL-CM6A-ATM-ICO-MR", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2022-07-20: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"DYNAMICO-LMDZ (NPv6; 64000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_ominal_resolution":"none" + } + }, + "release_year":"2021", + "source_id":"IPSL-CM6A-ATM-ICO-MR" + }, + "IPSL-CM6A-ATM-ICO-VHR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "label":"IPSL-CM6A-ATM-ICO-VHR", + "label_extended":"IPSL-CM6A-ATM-ICO-VHR", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2022-07-21: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"DYNAMICO-LMDZ (NPv6; 1024000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", + "native_nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", + "native_nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_ominal_resolution":"none" + } + }, + "release_year":"2021", + "source_id":"IPSL-CM6A-ATM-ICO-VHR" + }, + "IPSL-CM6A-ATM-LR-REPROBUS":{ + "activity_participation":[ + "AerChemMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "label":"IPSL-CM6A-ATM-LR-REPROBUS", + "label_extended":"IPSL-CM6A-ATM-LR-REPROBUS", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2024-06-18: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"REPROBUS v6 (same grid as atmos)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2021", + "source_id":"IPSL-CM6A-ATM-LR-REPROBUS" + }, + "IPSL-CM6A-LR":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "HighResMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "label":"IPSL-CM6A-LR", + "label_extended":"IPSL-CM6A-LR", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2018-03-14: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"LMDZ (NPv6, N96; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"NEMO-PISCES", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"NEMO-LIM3", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"IPSL-CM6A-LR" + }, + "IPSL-CM6A-LR-INCA":{ + "activity_participation":[ + "AerChemMIP", + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "label":"IPSL-CM6A-LR-INCA", + "label_extended":"IPSL-CM6A-LR-INCA", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2020-07-17: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"INCA v6 AER", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"NEMO-PISCES", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"NEMO-LIM3", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"IPSL-CM6A-LR-INCA" + }, + "IPSL-CM6A-MR1":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "label":"IPSL-CM6A-MR1", + "label_extended":"IPSL-CM6A-MR1", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2024-03-26: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"LMDZ (NPv6; 256 x 256 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode; same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"NEMO-PISCES (same grid as ocean)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"NEMO-LIM3 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2021", + "source_id":"IPSL-CM6A-MR1" + }, + "KACE-1-0-G":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NIMS-KMA" + ], + "label":"KACE1.0-G", + "label_extended":"KACE1.0-GLOMAP", + "license_info":{ + "exceptions_contact":"@korea.kr <- sunghm122", + "history":"2019-08-13: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM4p1 (tripolar primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (tripolar primarily 1deg; 360 x 200 longitude/latitude)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"KACE-1-0-G" + }, + "KIOST-ESM":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "DynVarMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "KIOST" + ], + "label":"KIOST-ESM", + "label_extended":"KIOST Earth System Model v2", + "license_info":{ + "exceptions_contact":"@pknu.ac.kr <- yhokim", + "history":"2019-11-04: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"GFDL-AM2.0 (cubed sphere (C48); 192 x 96 longitude/latitude; 32 vertical levels; top level 2 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"Simple carbon aerosol model (emission type)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"NCAR-CLM4", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"NCAR-CLM4", + "native_nominal_resolution":"250 km" + }, + "ocean":{ + "description":"GFDL-MOM5.0 (tripolar - nominal 1.0 deg; 360 x 200 longitude/latitude; 52 levels; top grid cell 0-2 m; NK mixed layer scheme)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"TOPAZ2", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"GFDL-SIS", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"KIOST-ESM" + }, + "LBLRTM-12-8":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AER" + ], + "label":"LBLRTM 12.8", + "label_extended":"Line-By-Line Radiative Transfer Model v12.8, aer_v_3.6, MT_CKD_3.2", + "license_info":{ + "exceptions_contact":"@aer.com <- aer_lblrtm", + "history":"2019-05-14: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2017", + "source_id":"LBLRTM-12-8" + }, + "MCM-UA-1-0":{ + "activity_participation":[ + "CMIP", + "FAFMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "UA" + ], + "label":"MCM-UA-1-0", + "label_extended":"Manabe Climate Model v1.0 - University of Arizona", + "license_info":{ + "exceptions_contact":"@email.arizona.edu <- GEOS-CMIP", + "history":"2019-07-31: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"Modifies surface albedoes (Haywood et al. 1997, doi: 10.1175/1520-0442(1997)010<1562:GCMCOT>2.0.CO;2)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"R30L14 (3.75 X 2.5 degree (long-lat) configuration; 96 x 80 longitude/latitude; 14 levels; top level 0.015 sigma, 15 mb)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"Standard Manabe bucket hydrology scheme (Manabe 1969, doi: 10.1175/1520-0493(1969)097<0739:CATOC>2.3.CO;2)", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"Specified location - invariant in time, has high albedo and latent heat capacity", + "native_nominal_resolution":"250 km" + }, + "ocean":{ + "description":"MOM1.0 (MOM1, 1.875 X 2.5 deg; 192 x 80 longitude/latitude; 18 levels; top grid cell 0-40 m)", + "native_nominal_resolution":"250 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"Thermodynamic ice model (free drift dynamics)", + "native_nominal_resolution":"250 km" + } + }, + "release_year":"1991", + "source_id":"MCM-UA-1-0" + }, + "MIROC-ES2H":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CMIP", + "DynVarMIP", + "GeoMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "label":"MIROC-ES2H", + "label_extended":"MIROC-ES2H", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2021-01-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"SPRINTARS6.0", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution":"500 km" + }, + "land":{ + "description":"MATSIRO6.0+VISIT-e ver.1.0", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"COCO4.9", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"MIROC-ES2H" + }, + "MIROC-ES2H-NB":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "label":"MIROC-ES2H-NB", + "label_extended":"MIROC-ES2H with No BiogenicCycle", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2020-04-28: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"SPRINTARS6.0", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution":"500 km" + }, + "land":{ + "description":"MATSIRO6", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"COCO4.9", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"MIROC-ES2H-NB" + }, + "MIROC-ES2L":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "GeoMIP", + "LUMIP", + "OMIP", + "PMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "label":"MIROC-ES2L", + "label_extended":"MIROC-ES2L", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2019-08-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"SPRINTARS6.0", + "native_nominal_resolution":"500 km" + }, + "atmos":{ + "description":"CCSR AGCM (T42; 128 x 64 longitude/latitude; 40 levels; top level 3 hPa)", + "native_nominal_resolution":"500 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"MATSIRO6.0+VISIT-e ver.1.0", + "native_nominal_resolution":"500 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"COCO4.9", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"MIROC-ES2L" + }, + "MIROC6":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "HighResMIP", + "LS3MIP", + "OMIP", + "PAMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "label":"MIROC6", + "label_extended":"MIROC6", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2018-12-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"SPRINTARS6.0", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"MATSIRO6.0", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"COCO4.9", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"MIROC6" + }, + "MPI-ESM-1-2-HAM":{ + "activity_participation":[ + "AerChemMIP", + "CMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "HAMMOZ-Consortium" + ], + "label":"MPI-ESM1.2-HAM", + "label_extended":"MPI-ESM1.2-HAM", + "license_info":{ + "exceptions_contact":"@sympa.ethz.ch <- aerchemmip_echam-ham", + "history":"2019-06-27: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"HAM2.3", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"sulfur chemistry (unnamed)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"JSBACH 3.20", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution":"250 km" + }, + "ocnBgchem":{ + "description":"HAMOCC6", + "native_nominal_resolution":"250 km" + }, + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution":"250 km" + } + }, + "release_year":"2017", + "source_id":"MPI-ESM-1-2-HAM" + }, + "MPI-ESM1-2-HR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GeoMIP", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MPI-M", + "DWD", + "DKRZ" + ], + "label":"MPI-ESM1.2-HR", + "label_extended":"MPI-ESM1.2-HR", + "license_info":{ + "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", + "history":"2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"ECHAM6.3 (spectral T127; 384 x 192 longitude/latitude; 95 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH3.20", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none/prescribed", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"HAMOCC6", + "native_nominal_resolution":"50 km" + }, + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"MPI-ESM1-2-HR" + }, + "MPI-ESM1-2-LR":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MPI-M", + "AWI", + "DKRZ", + "DWD" + ], + "label":"MPI-ESM1.2-LR", + "label_extended":"MPI-ESM1.2-LR", + "license_info":{ + "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", + "history":"2019-07-10: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH3.20", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none/prescribed", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution":"250 km" + }, + "ocnBgchem":{ + "description":"HAMOCC6", + "native_nominal_resolution":"250 km" + }, + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution":"250 km" + } + }, + "release_year":"2017", + "source_id":"MPI-ESM1-2-LR" + }, + "MPI-ESM1-2-XR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MPI-M" + ], + "label":"MPI-ESM1.2-XR", + "label_extended":"MPI-ESM1.2-XR", + "license_info":{ + "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", + "history":"2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "native_nominal_resolution":"50 km" + }, + "atmos":{ + "description":"ECHAM6.3 (spectral T255; 768 x 384 longitude/latitude; 95 levels; top level 0.01 hPa)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH3.20", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none/prescribed", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"HAMOCC6", + "native_nominal_resolution":"50 km" + }, + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"MPI-ESM1-2-XR" + }, + "MRI-AGCM3-2-H":{ + "activity_participation":[ + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MRI" + ], + "label":"MRI-AGCM3-2-H", + "label_extended":"MRI-AGCM3-2-H", + "license_info":{ + "exceptions_contact":"@mri-jma.go.jp <- rmizuta", + "history":"2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"Prescribed from MRI-ESM2.0", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MRI-AGCM3.2H (TL319; 640 x 320 longitude/latitude; 64 levels; top level 0.01 hPa)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"SIB0109", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2017", + "source_id":"MRI-AGCM3-2-H" + }, + "MRI-AGCM3-2-S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MRI" + ], + "label":"MRI-AGCM3-2-S", + "label_extended":"MRI-AGCM3-2-S", + "license_info":{ + "exceptions_contact":"@mri-jma.go.jp <- rmizuta", + "history":"2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"Prescribed from MRI-ESM2.0", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MRI-AGCM3.2S (TL959; 1920 x 960 longitude/latitude; 64 levels; top level 0.01 hPa)", + "native_nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"SIB0109", + "native_nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2017", + "source_id":"MRI-AGCM3-2-S" + }, + "MRI-ESM2-0":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "LS3MIP", + "OMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MRI" + ], + "label":"MRI-ESM2.0", + "label_extended":"MRI-ESM2.0", + "license_info":{ + "exceptions_contact":"@mri-jma.go.jp <- mdeushi", + "history":"2019-02-22: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MASINGAR mk2r4 (TL95; 192 x 96 longitude/latitude; 80 levels; top level 0.01 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MRI-AGCM3.5 (TL159; 320 x 160 longitude/latitude; 80 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"MRI-CCM2.1 (T42; 128 x 64 longitude/latitude; 80 levels; top level 0.01 hPa)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"HAL 1.0", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MRI.COM4.4 (tripolar primarily 0.5 deg latitude/1 deg longitude with meridional refinement down to 0.3 deg within 10 degrees north and south of the equator; 360 x 364 longitude/latitude; 61 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"MRI.COM4.4", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"MRI.COM4.4", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"MRI-ESM2-0" + }, + "NESM3":{ + "activity_participation":[ + "CMIP", + "DAMIP", + "DCPP", + "GMMIP", + "GeoMIP", + "PMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NUIST" + ], + "label":"NESM v3", + "label_extended":"NUIST ESM v3", + "license_info":{ + "exceptions_contact":"@nuist.edu.cn <- esmc", + "history":"2019-06-25: initially published under CC BY-SA 4.0; 2022-10-05: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"ECHAM v6.3 (T63; 192 x 96 longitude/latitude; 47 levels; top level 1 Pa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH v3.1", + "native_nominal_resolution":"2.5 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO v3.4 (NEMO v3.4, tripolar primarily 1deg; 384 x 362 longitude/latitude; 46 levels; top grid cell 0-6 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.1", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2016", + "source_id":"NESM3" + }, + "NICAM16-7S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "label":"NICAM16-7S", + "label_extended":"NICAM.16 gl07-L38 with NSW6", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2019-03-18: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"Prescribed MACv2-SP", + "native_nominal_resolution":"50 km" + }, + "atmos":{ + "description":"NICAM.16 (56km icosahedral grid; 163,842 grid cells (=10*4^7+2); 38 levels; top level 40 km)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"MATSIRO6 (w/o MOSAIC)", + "native_nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"Fixed", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"NICAM16-7S" + }, + "NICAM16-8S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "label":"NICAM16-8S", + "label_extended":"NICAM.16 gl08-L38 with NSW6", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"Prescribed MACv2-SP", + "native_nominal_resolution":"25 km" + }, + "atmos":{ + "description":"NICAM.16 (28km icosahedral grid; 655,362 grid cells (=10*4^8+2); 38 levels; top level 40 km)", + "native_nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"MATSIRO6 (w/o MOSAIC)", + "native_nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"Fixed", + "native_nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"NICAM16-8S" + }, + "NICAM16-9S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "label":"NICAM16-9S", + "label_extended":"NICAM.16 gl09-L38 with NSW6", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"Prescribed MACv2-SP", + "native_nominal_resolution":"10 km" + }, + "atmos":{ + "description":"NICAM.16 (14km icosahedral grid; 2,621,442 grid cells (=10*4^9+2); 38 levels; top level 40 km)", + "native_nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"MATSIRO6 (w/o MOSAIC)", + "native_nominal_resolution":"10 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"Fixed", + "native_nominal_resolution":"10 km" + } + }, + "release_year":"2017", + "source_id":"NICAM16-9S" + }, + "NorCPM1":{ + "activity_participation":[ + "CMIP", + "DCPP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCC" + ], + "label":"NorCPM1", + "label_extended":"Norwegian Climate Prediction Model version 1", + "license_info":{ + "exceptions_contact":"@uib.no <- norcpm", + "history":"2019-09-14: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"OsloAero4.1 (same grid as atmos)", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"CAM-OSLO4.1 (2 degree resolution; 144 x 96 longitude/latitude; 26 levels; top level ~2 hPa)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"OsloChemSimp4.1 (same grid as atmos)", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"CLM4 (same grid as atmos)", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"MICOM1.1 (1 degree resolution; 320 x 384 longitude/latitude; 53 levels; top grid cell 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"HAMOCC5.1 (same grid as ocean)", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE4 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"NorCPM1" + }, + "NorESM1-F":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCC" + ], + "label":"NorESM1-F", + "label_extended":"NorESM1-F (a fast version of NorESM that is designed for paleo and multi-ensemble simulations)", + "license_info":{ + "exceptions_contact":"@met.no <- noresm-ncc", + "history":"2019-09-20: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"CAM4 (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CLM4", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"CISM", + "native_nominal_resolution":"250 km" + }, + "ocean":{ + "description":"MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"HAMOCC5.1", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE4", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"NorESM1-F" + }, + "NorESM2-LM":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCC" + ], + "label":"NorESM2-LM", + "label_extended":"NorESM2-LM (low atmosphere-medium ocean resolution, GHG concentration driven)", + "license_info":{ + "exceptions_contact":"@met.no <- noresm-ncc", + "history":"2019-08-15: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"OsloAero", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"OsloChemSimp", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"CLM", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"CISM", + "native_nominal_resolution":"250 km" + }, + "ocean":{ + "description":"MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"HAMOCC", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"NorESM2-LM" + }, + "NorESM2-MM":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCC" + ], + "label":"NorESM2-MM", + "label_extended":"NorESM2-MM (medium atmosphere-medium ocean resolution, GHG concentration driven)", + "license_info":{ + "exceptions_contact":"@met.no <- noresm-ncc", + "history":"2019-11-08: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"OsloAero", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM-OSLO (1 degree resolution; 288 x 192; 32 levels; top level 3 mb)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"OsloChemSimp", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"CLM", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"CISM", + "native_nominal_resolution":"100 km" + }, + "ocean":{ + "description":"MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"HAMOCC", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"NorESM2-MM" + }, + "PCMDI-test-1-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "PCMDI" + ], + "label":"PCMDI-test 1.0", + "label_extended":"PCMDI-test 1.0 (This entry is free text for users to contribute verbose information)", + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"Earth1.0-gettingHotter (360 x 180 longitude/latitude; 50 levels; top level 0.1 mb)", + "native_nominal_resolution":"1x1 degree" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"Earth1.0", + "native_nominal_resolution":"1x1 degree" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"BlueMarble1.0-warming (360 x 180 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"1x1 degree" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"Declining1.0-warming (360 x 180 longitude/latitude)", + "native_nominal_resolution":"1x1 degree" + } + }, + "release_year":"1989", + "source_id":"PCMDI-test-1-0" + }, + "RRTMG-LW-4-91":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AER" + ], + "label":"RRTMG-LW 4.91", + "label_extended":"RRTM for GCMs v4.91, longwave", + "license_info":{ + "exceptions_contact":"@aer.com <- aer_rrtmg", + "history":"2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2017", + "source_id":"RRTMG-LW-4-91" + }, + "RRTMG-SW-4-02":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AER" + ], + "label":"RRTMG-SW 4.02", + "label_extended":"RRTM for GCMs v4.02, shortwave", + "license_info":{ + "exceptions_contact":"@aer.com <- aer_rrtmg", + "history":"2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2017", + "source_id":"RRTMG-SW-4-02" + }, + "RTE-RRTMGP-181204":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "RTE-RRTMGP-Consortium" + ], + "label":"RTE+RRTMGP (2018-12-04 full-resolution)", + "label_extended":"Radiative Transfer for Energetics using RRTM for GCM applications - Parallel (2018-12-04 full-resolution)", + "license_info":{ + "exceptions_contact":"@aer.com <- aer_rrtmgp", + "history":"2019-10-07: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" + } + }, + "release_year":"2019", + "source_id":"RTE-RRTMGP-181204" + }, + "SAM0-UNICON":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "SNU" + ], + "label":"SAM0-UNICON", + "label_extended":"SAM0-UNICON (SNU Atmosphere Model version 0 with Unified Convection Scheme)", + "license_info":{ + "exceptions_contact":"@snu.ac.kr <- sungsup", + "history":"2019-03-23: initially published under CC BY-SA 4.0; 2022-10-12: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"MAM3", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM5.3 with UNICON (1deg; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.0", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"POP2 (Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"SAM0-UNICON" + }, + "TaiESM1":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "GMMIP", + "LUMIP", + "PAMIP", + "PMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AS-RCEC" + ], + "label":"TaiESM 1.0", + "label_extended":"Taiwan Earth System Model 1.0", + "license_info":{ + "exceptions_contact":"@gate.sinica.edu.tw <- leelupin", + "history":"2019-12-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"SNAP (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"SNAP (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"CLM4.0 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4", + "native_nominal_resolution":"50 km" + } + }, + "release_year":"2018", + "source_id":"TaiESM1" + }, + "TaiESM1-TIMCOM":{ + "activity_participation":[ + "CMIP", + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NTU" + ], + "label":"TaiESM1-TIMCOM", + "label_extended":"Taiwan Earth System Model 1.0 using TIMCOM ocean model", + "license_info":{ + "exceptions_contact":"@ntu.edu.tw <- tsengyh", + "history":"2020-09-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"SNAP (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"SNAP (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"CLM4.0 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"TIMCOM (TIMCOMv1.7, primarily 1deg; 360 x 288 longitude/latitude; 45 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2020", + "source_id":"TaiESM1-TIMCOM" + }, + "TaiESM1-TIMCOM2":{ + "activity_participation":[ + "CMIP", + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NTU" + ], + "label":"TaiESM1-TIMCOM2", + "label_extended":"Taiwan Earth System Model 1.0 using TIMCOM ocean model 2.0", + "license_info":{ + "exceptions_contact":"@ntu.edu.tw <- tsengyh", + "history":"2021-12-13: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"SNAP (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "atmos":{ + "description":"TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", + "native_nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"SNAP (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "land":{ + "description":"CLM4.0 (same grid as atmos)", + "native_nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"TIMCOM (TIMCOMv2.2, primarily 1deg; 320 x 288 longitude/latitude; 55 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4 (same grid as ocean)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2021", + "source_id":"TaiESM1-TIMCOM2" + }, + "UKESM1-0-LL":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CMIP", + "DAMIP", + "GeoMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC", + "NERC", + "NIMS-KMA", + "NIWA" + ], + "label":"UKESM1.0-LL", + "label_extended":"UKESM1.0-N96ORCA1", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", + "history":"2019-04-04: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"UKCA-StratTrop", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"JULES-ES-1.0", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"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)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"MEDUSA2", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"UKESM1-0-LL" + }, + "UKESM1-1-LL":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC", + "NERC", + "NIMS-KMA", + "NIWA" + ], + "label":"UKESM1.1-LL", + "label_extended":"UKESM1.1-N96ORCA1", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", + "history":"2022-05-04: initially published under CC BY-SA 4.0; 2022-05-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"UKCA-StratTrop", + "native_nominal_resolution":"250 km" + }, + "land":{ + "description":"JULES-ES-1.0", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "ocean":{ + "description":"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)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"MEDUSA2", + "native_nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2021", + "source_id":"UKESM1-1-LL" + }, + "UKESM1-ice-LL":{ + "activity_participation":[ + "ISMIP6" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "label":"UKESM1.ice-LL", + "label_extended":"UKESM1.ice-N96ORCA1", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", + "history":"2022-02-11: initially published under CC BY-SA 4.0; 2022-02-11: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "land":{ + "description":"JULES-ISMIP6-1.0", + "native_nominal_resolution":"250 km" + }, + "landIce":{ + "description":"BISICLES-UKESM-ISMIP6-1.0", + "native_nominal_resolution":"5 km" + }, + "ocean":{ + "description":"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)", + "native_nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "native_nominal_resolution":"100 km" + } + }, + "release_year":"2019", + "source_id":"UKESM1-ice-LL" + } + }, + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "source_id_CV_modified":"Fri Apr 18 16:28:35 2025 -0700", + "source_id_CV_note":"Revised IPSL-CM6A-ATM-LR-REPROBUS source_id entry", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/CMIP6_source_type.json b/tests/common/CMIP6_CVs_last/CMIP6_source_type.json new file mode 100644 index 00000000..9ed319ca --- /dev/null +++ b/tests/common/CMIP6_CVs_last/CMIP6_source_type.json @@ -0,0 +1,24 @@ +{ + "source_type":{ + "AER":"aerosol treatment in an atmospheric model where concentrations are calculated based on emissions, transformation, and removal processes (rather than being prescribed or omitted entirely)", + "AGCM":"atmospheric general circulation model run with prescribed ocean surface conditions and usually a model of the land surface", + "AOGCM":"coupled atmosphere-ocean global climate model, additionally including explicit representation of at least the land and sea ice", + "BGC":"biogeochemistry model component that at the very least accounts for carbon reservoirs and fluxes in the atmosphere, terrestrial biosphere, and ocean", + "CHEM":"chemistry treatment in an atmospheric model that calculates atmospheric oxidant concentrations (including at least ozone), rather than prescribing them", + "ISM":"ice-sheet model that includes ice-flow", + "LAND":"land model run uncoupled from the atmosphere", + "OGCM":"ocean general circulation model run uncoupled from an AGCM but, usually including a sea-ice model", + "RAD":"radiation component of an atmospheric model run 'offline'", + "SLAB":"slab-ocean used with an AGCM in representing the atmosphere-ocean coupled system" + }, + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "source_type_CV_modified":"Fri Sep 8 17:57:00 2017 -0700", + "source_type_CV_note":"Issue396 durack1 augment source_type with description (#399)", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/CMIP6_sub_experiment_id.json b/tests/common/CMIP6_CVs_last/CMIP6_sub_experiment_id.json new file mode 100644 index 00000000..f524158a --- /dev/null +++ b/tests/common/CMIP6_CVs_last/CMIP6_sub_experiment_id.json @@ -0,0 +1,88 @@ +{ + "sub_experiment_id":{ + "none":"none", + "s1910":"initialized near end of year 1910", + "s1920":"initialized near end of year 1920", + "s1950":"initialized near end of year 1950", + "s1960":"initialized near end of year 1960", + "s1961":"initialized near end of year 1961", + "s1962":"initialized near end of year 1962", + "s1963":"initialized near end of year 1963", + "s1964":"initialized near end of year 1964", + "s1965":"initialized near end of year 1965", + "s1966":"initialized near end of year 1966", + "s1967":"initialized near end of year 1967", + "s1968":"initialized near end of year 1968", + "s1969":"initialized near end of year 1969", + "s1970":"initialized near end of year 1970", + "s1971":"initialized near end of year 1971", + "s1972":"initialized near end of year 1972", + "s1973":"initialized near end of year 1973", + "s1974":"initialized near end of year 1974", + "s1975":"initialized near end of year 1975", + "s1976":"initialized near end of year 1976", + "s1977":"initialized near end of year 1977", + "s1978":"initialized near end of year 1978", + "s1979":"initialized near end of year 1979", + "s1980":"initialized near end of year 1980", + "s1981":"initialized near end of year 1981", + "s1982":"initialized near end of year 1982", + "s1983":"initialized near end of year 1983", + "s1984":"initialized near end of year 1984", + "s1985":"initialized near end of year 1985", + "s1986":"initialized near end of year 1986", + "s1987":"initialized near end of year 1987", + "s1988":"initialized near end of year 1988", + "s1989":"initialized near end of year 1989", + "s1990":"initialized near end of year 1990", + "s1991":"initialized near end of year 1991", + "s1992":"initialized near end of year 1992", + "s1993":"initialized near end of year 1993", + "s1994":"initialized near end of year 1994", + "s1995":"initialized near end of year 1995", + "s1996":"initialized near end of year 1996", + "s1997":"initialized near end of year 1997", + "s1998":"initialized near end of year 1998", + "s1999":"initialized near end of year 1999", + "s2000":"initialized near end of year 2000", + "s2001":"initialized near end of year 2001", + "s2002":"initialized near end of year 2002", + "s2003":"initialized near end of year 2003", + "s2004":"initialized near end of year 2004", + "s2005":"initialized near end of year 2005", + "s2006":"initialized near end of year 2006", + "s2007":"initialized near end of year 2007", + "s2008":"initialized near end of year 2008", + "s2009":"initialized near end of year 2009", + "s2010":"initialized near end of year 2010", + "s2011":"initialized near end of year 2011", + "s2012":"initialized near end of year 2012", + "s2013":"initialized near end of year 2013", + "s2014":"initialized near end of year 2014", + "s2015":"initialized near end of year 2015", + "s2016":"initialized near end of year 2016", + "s2017":"initialized near end of year 2017", + "s2018":"initialized near end of year 2018", + "s2019":"initialized near end of year 2019", + "s2020":"initialized near end of year 2020", + "s2021":"initialized near end of year 2021", + "s2022":"initialized near end of year 2022", + "s2023":"initialized near end of year 2023", + "s2024":"initialized near end of year 2024", + "s2025":"initialized near end of year 2025", + "s2026":"initialized near end of year 2026", + "s2027":"initialized near end of year 2027", + "s2028":"initialized near end of year 2028", + "s2029":"initialized near end of year 2029" + }, + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)", + "sub_experiment_id_CV_modified":"Mon Jun 17 11:01:51 2019 -0700", + "sub_experiment_id_CV_note":"Revise sub_experiment_id values" + } +} \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/CMIP6_table_id.json b/tests/common/CMIP6_CVs_last/CMIP6_table_id.json new file mode 100644 index 00000000..246814a5 --- /dev/null +++ b/tests/common/CMIP6_CVs_last/CMIP6_table_id.json @@ -0,0 +1,57 @@ +{ + "table_id":[ + "3hr", + "6hrLev", + "6hrPlev", + "6hrPlevPt", + "AERday", + "AERhr", + "AERmon", + "AERmonZ", + "Amon", + "CF3hr", + "CFday", + "CFmon", + "CFsubhr", + "E1hr", + "E1hrClimMon", + "E3hr", + "E3hrPt", + "E6hrZ", + "Eday", + "EdayZ", + "Efx", + "Emon", + "EmonZ", + "Esubhr", + "Eyr", + "IfxAnt", + "IfxGre", + "ImonAnt", + "ImonGre", + "IyrAnt", + "IyrGre", + "LImon", + "Lmon", + "Oclim", + "Oday", + "Odec", + "Ofx", + "Omon", + "Oyr", + "SIday", + "SImon", + "day", + "fx" + ], + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)", + "table_id_CV_modified":"Fri Jan 13 09:27:00 2017 -0700", + "table_id_CV_note":"Issue199 durack1 update table_id to Data Request v1.0 (#200)" + } +} \ No newline at end of file diff --git a/tests/common/CMIP6_CVs_last/README.md b/tests/common/CMIP6_CVs_last/README.md new file mode 100644 index 00000000..c900136f --- /dev/null +++ b/tests/common/CMIP6_CVs_last/README.md @@ -0,0 +1,63 @@ +# CMIP6_CVs [![stable version](https://img.shields.io/badge/Current%20version-6.2.60.0-brightgreen.svg)](https://github.com/WCRP-CMIP/CMIP6_CVs/releases/tag/6.2.60.0) [![DOI](https://zenodo.org/badge/62754800.svg)](https://zenodo.org/doi/10.5281/zenodo.12197150) + +Core Controlled Vocabularies (CVs) for use in CMIP6 + +## Registering Institutions, Models, or requesting changes to CVs: + +To register your institution or model or to register a new experiment, please submit an issue/ticket following the instructions on the [CMIP6_CVs issue page](https://github.com/WCRP-CMIP/CMIP6_CVs/issues/new). Follow the same procedure to request a change in any other CV. + +Some support for CMIP participating modeling groups is available: pcmdi-cmip@llnl.gov + +To view current repository contents in HTML format, point your browser to: + +| target | URL | +| :-- | :-- | +| `experiment_id` | [CMIP6_experiment_id.html](https://wcrp-cmip.github.io/CMIP6_CVs/docs/CMIP6_experiment_id.html) | +| `institution_id` | [CMIP6_institution_id.html](https://wcrp-cmip.github.io/CMIP6_CVs/docs/CMIP6_institution_id.html) | +| `source_id` | [CMIP6_source_id.html](https://wcrp-cmip.github.io/CMIP6_CVs/docs/CMIP6_source_id.html) | +| `source_id_licenses` | [CMIP6_source_id_licenses.html](https://wcrp-cmip.github.io/CMIP6_CVs/docs/CMIP6_source_id_licenses.html) | +| `citation information` | [CMIP6_source_id_citation.html](https://wcrp-cmip.github.io/CMIP6_CVs/docs/CMIP6_source_id_citation.html) | +| `citation information by experiment` | [CMIP6_source_id_experiment_citation.html](https://wcrp-cmip.github.io/CMIP6_CVs/docs/CMIP6_source_id_experiment_citation.html) | + +The CVs build on logic that is described in the [CMIP6 Global Attributes, DRS, Filenames, Directory Structure, and CV's](http://goo.gl/v1drZl) document. + +The controlled vocabularies for CMIP6 will be augmented (e.g., as new institutions, models and experiments are registered), but there should be no changes in the existing vocabulary that would impair searches of and access to already published data or that would in any way invalidate published data. + +## Contributors + +[![Contributors](https://contrib.rocks/image?repo=WCRP-CMIP/CMIP6_CVs)](https://github.com/WCRP-CMIP/CMIP6_CVs/graphs/contributors) + +Thanks to our contributors! + +## Acknowledgement + +The repository content has been collected from many contributors representing the Coupled Model Intercomparison Project phase 6 (CMIP6), including those from climate modeling groups and model intercomparison projects (MIPs) worldwide. The structure of content and tools required to maintain it was developed by climate and computer scientists from the Program for Climate Model Diagnosis and Intercomparison ([PCMDI](https://pcmdi.llnl.gov/)) at Lawrence Livermore National Laboratory ([LLNL](https://www.llnl.gov/)) with assistance from colleagues at the [UK MetOffice](https://www.metoffice.gov.uk/), UK Centre for Environmental Data Analysis ([CEDA](https://www.ceda.ac.uk/)), the Deutsches Klimarechenzentrum ([DKRZ](https://www.dkrz.de/en/)) in Germany and the members of the Infrastructure for the European Network for Earth System Modelling ([IS-ENES](https://is.enes.org/)) consortium. + +This work is sponsored by the Regional and Global Model Analysis ([RGMA](https://climatemodeling.science.energy.gov/program/regional-global-model-analysis)) program of the Earth and Environmental Systems Sciences Division ([EESSD](https://science.osti.gov/ber/Research/eessd)) in the Office of Biological and Environmental Research ([BER](https://science.osti.gov/ber)) within the Department of Energy's ([DOE](https://www.energy.gov/)) Office of Science ([OS](https://science.osti.gov/)). The work at PCMDI is performed under the auspices of the U.S. Department of Energy by Lawrence Livermore National Laboratory under Contract DE-AC52-07NA27344. + +

+ Program for Climate Model Diagnosis and Intercomparison  + United States Department of Energy  + Lawrence Livermore National Laboratory  + UK Met Office +

diff --git a/tests/common/CMIP6_CVs_last/mip_era.json b/tests/common/CMIP6_CVs_last/mip_era.json new file mode 100644 index 00000000..7ee2e0e4 --- /dev/null +++ b/tests/common/CMIP6_CVs_last/mip_era.json @@ -0,0 +1,19 @@ +{ + "mip_era":[ + "CMIP1", + "CMIP2", + "CMIP3", + "CMIP5", + "CMIP6" + ], + "version_metadata":{ + "CV_collection_modified":"Thu Sep 4 16:01:22 2025 -0700", + "CV_collection_version":"6.2.60.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "mip_era_CV_modified":"Thu Aug 25 17:21:00 2016 -0700", + "mip_era_CV_note":"Fix #36 - Add CV name to json structure", + "previous_commit":"6d8517ab7efac022ccb6bf847bf412683d524ee7", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/tests/common/dr_cmip6_config/1_2/BlockSchema.csv b/tests/common/dr_cmip6_config/1_2/BlockSchema.csv new file mode 100644 index 00000000..3667bdd0 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/BlockSchema.csv @@ -0,0 +1,18 @@ +Block schema definition + +label uid title description useClass type techNote superclass usage required +label __core__:label Record Label A single word, with restricted character set __core__ xs:string rdf:property A short mnemonic word which is potentially meaningful but also concise and suitable for use in a programming environment. 1 +uid __core__:uid Record Identifier Unique identifier __core__ xs:string rdf:property Must be unique in the data request. For well known concepts this may be related to the label, but for items such as simple links between concepts an a random string will be used. 1 +title __core__:title Record Title A few words describing the object __core__ xs:string rdf:property A short phrase, suitable for use as a section heading 1 +description __core__:description Record Description An extended description of the object/concept. __core__ xs:string skos:definition 1 +useClass __core__:useClass Record Class 'The class: value should be from a defined vocabulary. All records in the schema definition section must have class set to ''''__core__''''.' __core__ xs:string rdf:property The useClass declared for an attribute can affect its interpretation in the Python package. For example, attributes labelled as “useClass=internalLink” should refer to another data request record. 0 +type __core__:type Record Type The type specifies the XSD value type constraint, e.g. xs:string. __core__ xs:string rdfs:range Used in the XSD schema to constrain attribute values. 0 +techNote __core__:techNote Technical Note Additional technical information which can be used to specify additional properties. __core__ xs:string rdf:property 0 +superclass __core__:superclass Superclass States what class the property is derived from __core__ xs:string rdf:property 0 +id __core__:id Alternative identifier Alternative identifier __core__ xs:string rdf:property For sections, the id provides a short alias for the section label. 0 +itemLabelMode __core__:itemLabelMode Item Label Mode Item Label Mode __core__ xs:string rdf:property 0 +level __core__:level Level Level __core__ xs:integer rdf:property 0 +maxOccurs __core__:maxOccurs Maximum number of permissible occurrences of this section Maximum number of permissible occurrences of this section __core__ xs:string rdf:property Used in defining sections. In the CMIP6 Data Request each section only occurs once. 0 +labUnique __core__:labUnique Set true if label of each record is unique within section Set true if label of each record is unique within section __core__ xs:boolean rdf:property Used in defining sections. 0 +usage __core__:usage Usage notes Notes on the usage of the predicate/concept defined by this node __core__ xs:string rdf:property 0 +required __core__:required Required flag Flag indicating whether an attribute is required __core__ xs:boolean rdf:property 1 diff --git a/tests/common/dr_cmip6_config/1_2/CMIP6_MIP_tables.xlsx b/tests/common/dr_cmip6_config/1_2/CMIP6_MIP_tables.xlsx new file mode 100644 index 00000000..5b61aa33 Binary files /dev/null and b/tests/common/dr_cmip6_config/1_2/CMIP6_MIP_tables.xlsx differ diff --git a/tests/common/dr_cmip6_config/1_2/dc1.xsd b/tests/common/dr_cmip6_config/1_2/dc1.xsd new file mode 100644 index 00000000..6b0b9911 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/dc1.xsd @@ -0,0 +1,178 @@ + + + + + XML Schema 2001-12-18 by Pete Johnston + Based on Andy Powell, Guidelines for Implementing Dublin Core in XML, 9th draft. + This XML Schema is for information only + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/common/dr_cmip6_config/1_2/dreq.xml b/tests/common/dr_cmip6_config/1_2/dreq.xml new file mode 100644 index 00000000..86d86c26 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/dreq.xml @@ -0,0 +1,19820 @@ + + +Draft CMIP6 Data Request [01.00.33] +The CMIP6 Data Request will specify the variables requested for the CMIP6 archive, and the detail the experiments and time slices for which they are required. +Martin Juckes +2020-11-02 +CF Standard Name table; CMIP6 Controlled Vocabularies; ESDOC CMIP6 Experiment Documentation +01.00.33 + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/tests/common/dr_cmip6_config/1_2/dreq2Defn.xml b/tests/common/dr_cmip6_config/1_2/dreq2Defn.xml new file mode 100644 index 00000000..4033de6e --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/dreq2Defn.xml @@ -0,0 +1,372 @@ + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + +
+ + + + + + + + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/tests/common/dr_cmip6_config/1_2/dreq2Sample.xml b/tests/common/dr_cmip6_config/1_2/dreq2Sample.xml new file mode 100644 index 00000000..91d1ca45 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/dreq2Sample.xml @@ -0,0 +1,131 @@ + + + +Draft CMIP6 Data Request [01.00.33] +The CMIP6 Data Request will specify the variables requested for the CMIP6 archive, and the detail the experiments and time slices for which they are required. +Martin Juckes +2020-11-02 +CF Standard Name table; CMIP6 Controlled Vocabularies; ESDOC CMIP6 Experiment Documentation +01.00.33 + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + +
diff --git a/tests/common/dr_cmip6_config/1_2/dreq2Schema.xsd b/tests/common/dr_cmip6_config/1_2/dreq2Schema.xsd new file mode 100644 index 00000000..2992a1ce --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/dreq2Schema.xsd @@ -0,0 +1,1046 @@ + + + + +W3Schools Note + Some specialised string types + + + + + + + + + + + + + + + + + + + + +W3Schools NoterequestVarGroup: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord Identifiermip; + xs:stringEndorsed MIP defining the variable groupref; + xs:stringReferencerefNote; + xs:stringReference Note + + + + + + + + + +W3Schools NoterequestItem: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord Identifiermip; + xs:stringThe MIP making the request. tab; + xs:stringRedundant?expt; + xs:stringName of experiment or group of experimentsrlid; + xs:stringIdentifier of Corresponding Request Linkesid; + xs:stringA link to an experiment, an experiment group or a MIPesidComment; + xs:stringComment on experiment(s) linked to.preset; + xs:integerOption to override priority set in each variable grouptreset; + xs:integerOption to override tier set for experiment(s)ny; + xs:integerDefault number of years.nexmax; + xs:integerMaximum number of experiments requested.nenmax; + xs:integerNumber of ensemble members requested. nymax; + xs:floatNumber of years requested.tslice; + xs:stringSelection of years from experiment + + + + + + + + + + + + + + + + + + + +W3Schools Noteexptgroup: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord identifiertierMin; + xs:integerMinimum tier of experiments in groupntot; + xs:integerTotal number of years + + + + + + + + +W3Schools Notemiptable: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringLabeluid; + aa:st__uidRecord identifiertitle; + xs:stringTitledescription; + xs:stringDescriptionfrequency; + xs:stringFrequencyaltLabel; + xs:stringAlternative Labelcomment; + xs:stringComment + + + + + + + + + + +W3Schools NoteCMORvar: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringCMOR Variable Nametitle; + xs:stringRecord Titleuid; + aa:st__uidRecord Identifiertitle; + xs:stringLong namestid; + xs:stringLink to a record specifying the structure of the variablevid; + xs:stringMIP Variabledeflate; + xs:stringDeflate: NetCDF compression parameterdeflate_level; + xs:stringDeflate Level: NetCDF compression parametershuffle; + xs:stringShuffle: NetCDF compression parameterdefaultPriority; + xs:integerIndicative priority for this parameter, which is over-ruled by the requestVar priority setting, but provides a reference for organisation of the CMORvariablestype; + aa:st__fortranTypeData value type, e.g. float or doublemodeling_realm; + xs:stringModeling Realmpositive; + xs:stringCMOR Directive PositivemipTableSection; + xs:stringSection of a tablemtid; + xs:stringLink to MIP table recordmipTable; + xs:stringThe MIP tableprov; + xs:stringProvenanceprocessing; + xs:stringProcessing NotesprovNote; + xs:stringProvenance Notefrequency; + xs:stringFrequency of Time Steps to be ArchivedrowIndex; + xs:integerRow index of entry in source sheetdescription; + xs:stringDescriptionsubGroup; + xs:stringSub-group of variables in a table + + + + + + + + + + + + + + + + + + + + + + + + + +W3Schools Noteobjective: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord identifierdescription; + xs:stringDescriptionmip; + xs:stringEndorsed MIP + + + + + + + + +W3Schools NotespatialShape: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord Identifierdimensions; + xs:stringList of spatial dimensionsdimids; + aa:st__stringListIdentifiers for records in grids sectionlevels; + xs:integerNumber of vertical levels (ignored if levelFlag=false)levelFlag; + xs:booleanFlag set to *false* if number of levels is optional (e.g. determined by the model) + + + + + + + + + + +W3Schools NoterequestLink: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord Identifiermip; + xs:stringEndorsed MIP requesting the datatab; + xs:stringRedundantobjective; + xs:stringScience objectives associated with this requestgrid; + xs:stringGrid optionsgridreq; + xs:stringGrid option constraintscomment; + xs:stringCommentref; + xs:stringReferencerefNote; + xs:stringNote on referencerefid; + xs:stringReference to a request Variable Groupopt; + xs:stringOption for selecting a subset of variablesopar; + xs:stringparameter associated with *opt* + + + + + + + + + + + + + + + + + +W3Schools NotetableSection: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord Identifiergpid; + xs:stringIdentifier for CMOR Tablesmip; + xs:stringProjectref; + xs:stringReferencerefNote; + xs:stringNote on reference + + + + + + + + + + +W3Schools NotemodelConfig: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord identifierMIPs; + xs:stringMIPs which make use of this featureusage; + xs:stringHow the feature is relevant to the data requesttype; + aa:st__configurationTypeType of modelrange; + xs:stringRange of valid values, e.g. xs:boolean + + + + + + + + + + +W3Schools NotevarChoiceLinkC: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord identifiervid; + xs:stringVariablecfgid; + xs:stringConfiguration Optioncfg; + xs:booleanConfiguration Valuecid; + xs:stringChoice -- can provide a link to related variables + + + + + + + + + + +W3Schools NoteobjectiveLink: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord identifieroid; + xs:stringIdentifier for a scientific objectiverid; + xs:stringIdentifier for a request link + + + + + + + + +W3Schools Noteremarks: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord identifiertid; + xs:stringTarget identifier: the record ID of the item this refers to.tattr; + xs:stringTarget attribute: an attribute of the target item, or 'ALL'description; + xs:stringFree text remarks -- unless there are specific restrictions associated with the class attribute of this remarkclass; + xs:stringClass categorisation of remarksqid; + xs:stringIdentifier linking to a related record.techNote; + xs:stringOptional additional machine readable content (though not restricted by the schema)prov; + xs:stringProvenance + + + + + + + + + + + + + +W3Schools Noteexperiment: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord identifierdescription; + xs:stringDescriptionegid; + xs:stringIdentifier for experiment groupmip; + xs:stringMIP defining experimentmcfg; + xs:stringModel Source Typestier; + aa:st__integerListMonIncTier of Experimentnstart; + xs:integerNumber of Start Datesstarty; + xs:stringStart yearendy; + xs:stringEnd yearyps; + xs:integerYears per Simulation Including all Start Yearsensz; + aa:st__integerListMonIncEnsemble sizentot; + xs:integerTotal number of yearscomment; + xs:stringComment + + + + + + + + + + + + + + + + + + +W3Schools NoterequestVar: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord identifierpriority; + xs:integerVariable priorityvid; + xs:stringIdentifier for MIP Output Variablevgid; + xs:stringIdentifier for Variable Groupmip; + xs:stringEndorsed MIP + + + + + + + + + + +W3Schools Notestandardname: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidCF Standard Namedescription; + xs:stringRecord Descriptionunits; + xs:stringCanonical Units + + + + + + + + +W3Schools NotevarChoiceLinkR: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord identifiervid; + xs:stringVariablecid; + xs:stringChoicerank; + xs:integerFor ranked choices, the rank of this variable (higher rank makes lower ranks redundant) + + + + + + + + + +W3Schools Notevar: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringVariable Namesn; + xs:stringCF Standard Nameunits; + xs:stringUnits of Measuredescription; + xs:stringRecord Descriptiontitle; + xs:stringLong nameprocnote; + aa:st__stringListProcessing NotesprocComment; + xs:stringProcessing Commentsprov; + xs:stringNotes on Provenance of Variable Specificationsuid; + aa:st__uidRecord Identifierprovmip; + xs:stringMIP Defining this Variableunid; + xs:stringLink to Units section + + + + + + + + + + + + + + +W3Schools Notemip: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringMIP short nametitle; + xs:stringMIP titleuid; + aa:st__uidRecord identifierdescription; + xs:stringDescription of the Model Intercomparison Projecturl; + xs:stringProject Home Page + + + + + + + + +W3Schools NotevarChoice: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord identifierchoiceClass; + xs:stringClass of choice: heirarchy|cfgdescription; + xs:stringRecord descriptionvarList; + xs:stringA colon separated list of variable namesoptionList; + xs:stringA list of options, one for each variable + + + + + + + + + + +W3Schools NotetemporalShape: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord Identifierdimid; + xs:stringIdentifiers for record in grids sectiondimensions; + xs:stringDimensionsdescription; + xs:stringDescription + + + + + + + + + +W3Schools Notestructure: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord Identifierspid; + xs:stringSpatial Shapetmid; + xs:stringTemporal Shapeodims; + xs:stringOther Dimensionsdids; + aa:st__stringListIdentifiers for records in grids section for dimensionscoords; + xs:stringCoordinatescids; + aa:st__stringListIdentifiers for records in grids section for coordinatescell_methods; + xs:stringCell Methodscell_measures; + xs:stringCell Measuresflag_values; + xs:stringFlag Valuesflag_meanings; + xs:stringFLag Meaningsdescription; + xs:stringDescriptionprocNote; + xs:stringProcessing Noteprov; + xs:stringProvenancecmid; + xs:stringLink to Cell Methods Record + + + + + + + + + + + + + + + + + + + + +W3Schools Notegrids: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titletables; + xs:stringCMOR table(s)uid; + aa:st__uidIdentifierlabel; + xs:stringCMOR dimensionaltLabel; + xs:stringoutput dimension namedescription; + xs:stringdescriptionstandardName; + xs:stringstandard nametitle; + xs:stringlong nameaxis; + xs:stringaxisunits; + xs:stringunitsisIndex; + xs:stringindex axis?coords; + xs:stringcoords_attribbounds; + xs:stringbounds?direction; + xs:stringstored directionvalid_min; + xs:floatvalid_minvalid_max; + xs:floatvalid_maxtype; + aa:st__fortranTypetypepositive; + xs:stringpositivevalue; + xs:stringvalue of a scalar coordinateboundsValues; + xs:stringbounds _valuesrequested; + xs:stringrequestedboundsRequested; + aa:st__floatListbounds_ requestedtolRequested; + xs:stringtol_on_requests: variance from requested values that is toleratedisGrid; + xs:stringgrid? + + + + + + + + + + + + + + + + + + + + + + + + + + +W3Schools NotetimeSlice: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titletype; + aa:st__sliceTypeType of time slicestart; + xs:integerStart yearend; + xs:integerEnd yearstep; + xs:floatStep (years)sliceLen; + xs:integerLength of slicenyears; + xs:floatTotal number of yearsuid; + aa:st__uidUnique identifierstartList; + aa:st__integerListOptional list of start times.sliceLenUnit; + xs:stringUnits of slice lengthdescription; + xs:stringDescriptionchild; + xs:stringChild experiment + + + + + + + + + + + + + + + + +W3Schools NotecellMethods: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord Identifiercell_methods; + xs:stringCell Methods Stringdescription; + xs:stringRecord Description + + + + + + + + +W3Schools Notetags: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringLabeltitle; + xs:stringTitledescription; + xs:stringDescriptionuid; + aa:st__uidIdentifier + + + + + + + +W3Schools NotevarRelations: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringLabeltitle; + xs:stringTitledescription; + xs:stringDescriptionuid; + aa:st__uidIdentifierrelation; + xs:stringRelationship + + + + + + + + +W3Schools NotevarRelLnk: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringLabeltitle; + xs:stringTitleuid; + aa:st__uidIdentifierrlid; + xs:stringRelationshiprid; + xs:stringRecord + + + + + + + +W3Schools Note + This schema is automatically generated by xsltproc. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +W3Schools Note + The uniqueIdentifierConstraint imposes the condition that the uid attribute on "item" elements should have a unique value. + + + diff --git a/tests/common/dr_cmip6_config/1_2/dreqML.pdf b/tests/common/dr_cmip6_config/1_2/dreqML.pdf new file mode 100644 index 00000000..54d2608e Binary files /dev/null and b/tests/common/dr_cmip6_config/1_2/dreqML.pdf differ diff --git a/tests/common/dr_cmip6_config/1_2/dreqManifest.txt b/tests/common/dr_cmip6_config/1_2/dreqManifest.txt new file mode 100644 index 00000000..e81bc538 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/dreqManifest.txt @@ -0,0 +1,3 @@ +## Manifest for data request +docs/dreq.xml docs/dreq2Defn.xml +docs/dreqSupp.xml docs/dreqSuppDefn.xml diff --git a/tests/common/dr_cmip6_config/1_2/dreqPy.pdf b/tests/common/dr_cmip6_config/1_2/dreqPy.pdf new file mode 100644 index 00000000..310fba9b Binary files /dev/null and b/tests/common/dr_cmip6_config/1_2/dreqPy.pdf differ diff --git a/tests/common/dr_cmip6_config/1_2/dreqSample.xml b/tests/common/dr_cmip6_config/1_2/dreqSample.xml new file mode 100644 index 00000000..c00b6ae6 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/dreqSample.xml @@ -0,0 +1,58 @@ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/tests/common/dr_cmip6_config/1_2/dreqSupp.xml b/tests/common/dr_cmip6_config/1_2/dreqSupp.xml new file mode 100644 index 00000000..4f86fad6 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/dreqSupp.xml @@ -0,0 +1,203 @@ + + + +CMIP6 Data Request Supplement [01.00.33] +The CMIP6 Data Request will specify the variables requested for the CMIP6 archive, and the detail the experiments and time slices for which they are required. +Martin Juckes +2020-11-02 +CF Standard Name table; CMIP6 Controlled Vocabularies; ESDOC CMIP6 Experiment Documentation +01.00.33 + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
diff --git a/tests/common/dr_cmip6_config/1_2/dreqSuppDefn.xml b/tests/common/dr_cmip6_config/1_2/dreqSuppDefn.xml new file mode 100644 index 00000000..6bbaf5a2 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/dreqSuppDefn.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + + + +
+ + + + + + + + +
+
diff --git a/tests/common/dr_cmip6_config/1_2/dreqSuppSchema.xsd b/tests/common/dr_cmip6_config/1_2/dreqSuppSchema.xsd new file mode 100644 index 00000000..0b13d483 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/dreqSuppSchema.xsd @@ -0,0 +1,183 @@ + + + + +W3Schools Note + Some specialised string types + + + + + + + + + + + + + + + + + + + + +W3Schools Noteqcranges: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidRecord identifierlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleurl; + xs:stringLink to review pagecomment; + xs:stringCommentprov; + xs:stringProvenancevid; + xs:stringVariablevalid_min; + xs:floatMinimum expected value for this variable.valid_max; + xs:floatMaximum expected value for this variable.ok_min_mean_abs; + xs:floatMinimum expected value of the global mean absolute value at each point in timeok_max_mean_abs; + xs:floatMaximum expected value of the global mean absolute value at each point in timevalid_min_status; + xs:stringStatus of valid_minvalid_max_status; + xs:stringStatus of valid_maxok_min_mean_abs_status; + xs:stringStatus of ok_min_mean_absok_max_mean_abs_status; + xs:stringStatus of ok_mx_mean_abs + + + + + + + + + + + + + + + + + + +W3Schools Noteplaces: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidIdentifierlabel; + xs:stringLabeltitle; + xs:stringTitlematter; + xs:stringSubstance mip; + xs:stringModel Intercomparison Project (MIP)vid; + xs:stringVariable Identifierpid; + xs:stringParent Entity + + + + + + + + + + +W3Schools Notetransfers: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidIdentifierlabel; + xs:stringLabeltitle; + xs:stringTitlefrid; + xs:stringSource Identifiertoid; + xs:stringTarget IdentifierisOneWay; + xs:booleanUnidirectional FlagsignInverted; + xs:booleanSign Inversionmip; + xs:stringModel Intercomparison Project (MIP)vid; + xs:stringVariable Identifier + + + + + + + + + + + + +W3Schools Noteunits: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidIdentifierlabel; + xs:stringLabeltitle; + xs:stringTitlegroup; + xs:stringGrouptext; + xs:stringText representation of units + + + + + + + +W3Schools Note + This schema is automatically generated by xsltproc. + + + + + + + + + + + + + + + +W3Schools Note + The uniqueIdentifierConstraint imposes the condition that the uid attribute on "item" elements should have a unique value. + + + diff --git a/tests/common/dr_cmip6_config/1_2/md5Manifest.txt b/tests/common/dr_cmip6_config/1_2/md5Manifest.txt new file mode 100644 index 00000000..8beaf512 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/md5Manifest.txt @@ -0,0 +1,20 @@ +5fde22106d01d593b0787a108fe95f86 01.beta.31/dreqPy/docs/dreq.xml +b8da5c7e5eaa3e17275fd392d6c44565 01.beta.31/dreqPy/docs/dreq2Defn.xml +5ad18d99682054a97b00e496331181c9 01.beta.31/dreqPy/docs/dreqSupp.xml +b651a2f46c95d11fc96c08b582d4b93f 01.beta.31/dreqPy/docs/dreqSuppDefn.xml +adc8d043a57ea47a886f3be0e20da2f1 01.beta.32/dreqPy/docs/dreq.xml +3d106fe93950f39cb8ac6e629f6d0415 01.beta.32/dreqPy/docs/dreq2Defn.xml +5ad18d99682054a97b00e496331181c9 01.beta.32/dreqPy/docs/dreqSupp.xml +b651a2f46c95d11fc96c08b582d4b93f 01.beta.32/dreqPy/docs/dreqSuppDefn.xml +adc8d043a57ea47a886f3be0e20da2f1 01.beta.33/dreqPy/docs/dreq.xml +57c05ed32f523d2b269a9f58c339f73a 01.beta.33/dreqPy/docs/dreq2Defn.xml +b0b0fcc00ee456dfe392cef9a4937815 01.beta.33/dreqPy/docs/dreqSupp.xml +b651a2f46c95d11fc96c08b582d4b93f 01.beta.33/dreqPy/docs/dreqSuppDefn.xml +adc8d043a57ea47a886f3be0e20da2f1 01.beta.34/dreqPy/docs/dreq.xml +57c05ed32f523d2b269a9f58c339f73a 01.beta.34/dreqPy/docs/dreq2Defn.xml +5f20f306e630a63331c2fdb0135dc45e 01.beta.34/dreqPy/docs/dreqSupp.xml +b651a2f46c95d11fc96c08b582d4b93f 01.beta.34/dreqPy/docs/dreqSuppDefn.xml +adc8d043a57ea47a886f3be0e20da2f1 01.beta.35/dreqPy/docs/dreq.xml +3688e6d2d70715f9f76b243d792472c0 01.beta.35/dreqPy/docs/dreq2Defn.xml +5f20f306e630a63331c2fdb0135dc45e 01.beta.35/dreqPy/docs/dreqSupp.xml +b651a2f46c95d11fc96c08b582d4b93f 01.beta.35/dreqPy/docs/dreqSuppDefn.xml diff --git a/tests/common/dr_cmip6_config/1_2/pav.xsd b/tests/common/dr_cmip6_config/1_2/pav.xsd new file mode 100644 index 00000000..d14fe29d --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/pav.xsd @@ -0,0 +1,44 @@ + + + + + XML Schema 2001-12-18 by Martin Juckes .... incomplete ....Pete Johnston + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/common/dr_cmip6_config/1_2/sfheadings.csv b/tests/common/dr_cmip6_config/1_2/sfheadings.csv new file mode 100644 index 00000000..952c335b --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/sfheadings.csv @@ -0,0 +1,8 @@ +Column A Variable shape: each row aggregates a number of variables which all have the the same dimensions. +Column B Number of floating point values per time value. For smaller fields this may be a rough approximation. For larger fields it is based on the nominal model resolution +Column C Number of bytes per float: a value of two assumes 4 bytes in precision and 50% compression +Column D Total volume for this shape, summing all frequencies +Column E Number of variables with this shape and frequency +Column F Average number of years per variable (all experiments) +Column G Number of experiments for which this shape/frequency is requested +Column H Volume associated with this group of variables (Gb) diff --git a/tests/common/dr_cmip6_config/1_2/vocab.xml b/tests/common/dr_cmip6_config/1_2/vocab.xml new file mode 100644 index 00000000..a6af01a6 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/vocab.xml @@ -0,0 +1,274 @@ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/tests/common/dr_cmip6_config/1_2/vocabDefn.xml b/tests/common/dr_cmip6_config/1_2/vocabDefn.xml new file mode 100644 index 00000000..e471d0e4 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/vocabDefn.xml @@ -0,0 +1,206 @@ + + + + + + + + + +
+ + + + + + + + +
+ + + + + +
+ + + + + +
+ + + + + + + +
+ + + + + + + +
+ + + + +
+ + + + + + + + +
+ + + + + + +
+ + + + +
+ + + + +
+ + + + + + + +
+ + + + +
+ + + + + + + +
+ + + + + +
+ + + + + +
+ + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+ + + + +
+ + + + +
+ + + + + + + +
+ + + + +
+ + + + +
+ + + + + + + +
+ + + + + + +
+ + + + + +
+ + + + + + + +
+ + + + + + + + +
+
diff --git a/tests/common/dr_cmip6_config/1_2/vocabFrameworkSchema_01beta.xsd b/tests/common/dr_cmip6_config/1_2/vocabFrameworkSchema_01beta.xsd new file mode 100644 index 00000000..f53c6d32 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/vocabFrameworkSchema_01beta.xsd @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/common/dr_cmip6_config/1_2/vocabSample.xml b/tests/common/dr_cmip6_config/1_2/vocabSample.xml new file mode 100644 index 00000000..97959a50 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/vocabSample.xml @@ -0,0 +1,133 @@ + + + +Draft CMIP6 Data Request [01.beta.42] +The CMIP6 Data Request will specify the variables requested for the CMIP6 archive, and the detail the experiments and time slices for which they are required. +Martin Juckes +2016-11-14 +01.beta.42 + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
diff --git a/tests/common/dr_cmip6_config/1_2/vocabSchema.xsd b/tests/common/dr_cmip6_config/1_2/vocabSchema.xsd new file mode 100644 index 00000000..8af9a045 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/vocabSchema.xsd @@ -0,0 +1,774 @@ + + + + +W3Schools Note + Some specialised string types + + + + + + + + + + + +W3Schools Noteinstitute: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleurl; + xs:stringHome pageisni; + xs:stringInternational Standard Name Identifier (ISO 27729)description; + xs:stringuid; + aa:st__uid + + + + + + + + + +W3Schools Notemodel: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titledescription; + xs:stringurl; + xs:stringaltUrl; + xs:stringsource; + xs:stringList of major model componentsuid; + aa:st__uid + + + + + + + + + + +W3Schools Notephysicsvers: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titledescription; + xs:stringuid; + aa:st__uid + + + + + + + +W3Schools Noteinitialisationmethod: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titledescription; + xs:stringuid; + aa:st__uid + + + + + + + +W3Schools NotemodelComp: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord TitlecomponentType; + xs:stringsizeH; + xs:stringsizeV; + xs:stringuid; + aa:st__uid + + + + + + + + + +W3Schools Noteactivity: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleurl; + xs:stringstatus; + xs:stringStatus and role within the CMIP6 processuid; + aa:st__uidproject; + xs:stringProject which is sponsoring the CMIP6 contribution, if applicable + + + + + + + + + +W3Schools Noteproduct: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uid + + + + + + +W3Schools Noteexperiment: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord TitlealtLabel; + xs:stringdescription; + xs:stringurl; + xs:stringsponsor; + xs:stringuid; + aa:st__uid + + + + + + + + + + +W3Schools Notefrequency: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleiso; + xs:stringuid; + aa:st__uidisClimatology; + xs:booleanTrue if term is a climatology label + + + + + + + + +W3Schools Noterealm: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uid + + + + + + +W3Schools Notegrid: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uid + + + + + + +W3Schools Notedimensions: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord TitlealtLabel; + xs:stringsn; + xs:stringsize; + xs:integeruid; + aa:st__uid + + + + + + + + + +W3Schools Noteforcings: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uid + + + + + + +W3Schools Notetable: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titledescription; + xs:stringcomment; + xs:stringfrequency; + xs:stringuid; + aa:st__uid + + + + + + + + + +W3Schools Notecref: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titlelabel; + xs:stringuid; + aa:st__uid + + + + + + +W3Schools NoteareaType: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord TitleinCF; + xs:stringuid; + aa:st__uid + + + + + + + +W3Schools NotetimeSlice: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uidtype; + xs:stringstart; + xs:stringend; + xs:stringstep; + xs:stringsliceLen; + xs:stringnyears; + xs:stringdescription; + xs:stringchild; + xs:stringitems; + xs:string + + + + + + + + + + + + + + + +W3Schools NotemodelFamily: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uid + + + + + + +W3Schools Notepriority: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titledescription; + xs:stringuid; + aa:st__uid + + + + + + + +W3Schools NoteqcLevel: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uid + + + + + + +W3Schools NotecomplianceCode: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uid + + + + + + +W3Schools Noteglossary: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord TitlefullName; + xs:stringdescription; + xs:stringurl; + xs:stringuid; + aa:st__uid + + + + + + + + + +W3Schools NotemodelCompType: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uid + + + + + + +W3Schools NotemodelType: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titleuid; + aa:st__uid + + + + + + +W3Schools Noteindex: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titletable; + xs:stringtitle; + xs:stringdescription; + xs:stringuid; + aa:st__uid + + + + + + + + +W3Schools NotecmorDimAttr: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titledescription; + xs:stringuid; + aa:st__uidCMORattr; + xs:stringCorresponding label in the CMOR MIP tables, if different + + + + + + + + +W3Schools NoteprocessingOptions: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titledescription; + xs:stringuid; + aa:st__uid + + + + + + + +W3Schools NotecoordinateReference: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titletitle; + xs:stringogc_wkt; + xs:stringurl; + xs:stringuid; + aa:st__uid + + + + + + + + +W3Schools NotemodelConfig: Complex Type declaration + + + + + + + + + +Attribute annotationlabel; + xs:stringRecord Labeltitle; + xs:stringRecord Titletitle; + xs:stringMIPs; + xs:stringusage; + xs:stringtype; + xs:stringrange; + xs:stringRange of valid values, e.g. xs:boolean + + + + + + + + +W3Schools Note + This schema is automatically generated by xsltproc. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +W3Schools Note + The uniqueIdentifierConstraint imposes the condition that the uid attribute on "item" elements should have a unique value. + + + diff --git a/tests/common/dr_cmip6_config/1_2/xlink.xsd b/tests/common/dr_cmip6_config/1_2/xlink.xsd new file mode 100644 index 00000000..2687155b --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/xlink.xsd @@ -0,0 +1,25 @@ + + + + + XML Schema 2001-12-18 by Pete Johnston + Based on Andy Powell, Guidelines for Implementing Dublin Core in XML, 9th draft. + This XML Schema is for information only + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/common/dr_cmip6_config/1_2/xml.xsd b/tests/common/dr_cmip6_config/1_2/xml.xsd new file mode 100644 index 00000000..e97bb3c2 --- /dev/null +++ b/tests/common/dr_cmip6_config/1_2/xml.xsd @@ -0,0 +1,92 @@ + + + + + + + + + + See http://www.w3.org/XML/1998/namespace.html and + http://www.w3.org/TR/REC-xml for information about this namespace. + + + + + This schema defines attributes and an attribute group + suitable for use by + schemas wishing to allow xml:base, xml:lang or xml:space attributes + on elements they define. + + To enable this, such a schema must import this schema + for the XML namespace, e.g. as follows: + <schema . . .> + . . . + <import namespace="http://www.w3.org/XML/1998/namespace" + schemaLocation="http://www.w3.org/2001/03/xml.xsd"/> + + Subsequently, qualified reference to any of the attributes + or the group defined below will have the desired effect, e.g. + + <type . . .> + . . . + <attributeGroup ref="xml:specialAttrs"/> + + will define a type which will schema-validate an instance + element with any of those attributes + + + + In keeping with the XML Schema WG's standard versioning + policy, this schema document will persist at + http://www.w3.org/2001/03/xml.xsd. + At the date of issue it can also be found at + http://www.w3.org/2001/xml.xsd. + The schema document at that URI may however change in the future, + in order to remain compatible with the latest version of XML Schema + itself. In other words, if the XML Schema namespace changes, the version + of this document at + http://www.w3.org/2001/xml.xsd will change + accordingly; the version at + http://www.w3.org/2001/03/xml.xsd will not change. + + + + + + In due course, we should install the relevant ISO 2- and 3-letter + codes as the enumerated possible values . . . + + + + + + + + + + + + + + + See http://www.w3.org/TR/xmlbase/ for + information about this attribute. + + + + + + + + + + + + diff --git a/tests/common/home_data_request_CMIP7/home_data_request_test.txt b/tests/common/home_data_request_CMIP7/home_data_request_test.txt index a43c8f81..3c615818 100644 --- a/tests/common/home_data_request_CMIP7/home_data_request_test.txt +++ b/tests/common/home_data_request_CMIP7/home_data_request_test.txt @@ -7,8 +7,8 @@ cmor; sos; ocean; mon; CMIP_Omon; t cmor; tos; ocean; 6hr; NONE; time-intv; XY-na; ANY; ANY cmor; zos; ocean; 6hr; NONE; time-intv; XY-na; ANY; ANY cmor; sos; ocean; 6hr; NONE; time-intv; XY-na; ANY; ANY -cmor; tos; ocean; monPt; NONE; time-point; XY-na; ANY; ANY -cmor; zos; ocean; monPt; NONE; time-point; XY-na; ANY; ANY -cmor; sos; ocean; monPt; NONE; time-point; XY-na; ANY; ANY -perso; albsrfc; land; mon; CNRM_mon; time-intv; XY-na; ANY; ANY; fraction; surface albedo; albsrfc; sfx_global; FULL_grid -dev; albsrfc; land; day; CNRM_day; time-intv; XY-na; ANY; ANY; fraction; surface albedo; albsrfc; sfx_global; FULL_grid +cmor; tos; ocean; mon; NONE; time-point; XY-na; ANY; ANY +cmor; zos; ocean; mon; NONE; time-point; XY-na; ANY; ANY +cmor; sos; ocean; mon; NONE; time-point; XY-na; ANY; ANY +perso; wilt; land; 1hr; CNRM_hr; time-intv; XY-na; ANY; ANY +dev; wilt; land; 6hr; CNRM_6hr; time-intv; XY-na; ANY; ANY; fraction; Wilting Point over land; wilt; sfx_global; FULL_grid diff --git a/tests/test_AOESM_historical_CMIP7/input/lab_and_model_settings.py b/tests/test_AOESM_historical_CMIP7/input/lab_and_model_settings.py index cf962351..77922b26 100644 --- a/tests/test_AOESM_historical_CMIP7/input/lab_and_model_settings.py +++ b/tests/test_AOESM_historical_CMIP7/input/lab_and_model_settings.py @@ -3,6 +3,7 @@ lab_and_model_settings = { + "vocabulary_used": "dr2xml_default", 'data_request_used': 'CMIP7', 'data_request_content_version': 'test', 'project': 'CMIP7', @@ -25,7 +26,7 @@ } }, 'grid_choice': { - 'CNRM-ESM2-1': 'LR', + 'CNRM-ESM2-1e': 'LR', 'CNRM-ESM2-1-HR': 'HR', 'CNRM-CM6-1': 'LR', 'CNRM-CM6-1-HR': 'HR' @@ -60,24 +61,32 @@ 'HR': [1514100, 75, 259200, 91, 30, 14, 128], 'LR': [106428, 75, 32768, 91, 30, 14, 128] }, + 'source': """CNRM-ESM2-1e (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1""", 'source_types': { - 'CNRM-ESM2-1': 'AOGCM BGC AER CHEM', + 'CNRM-ESM2-1e': 'AOGCM BGC AER CHEM', 'CNRM-ESM2-1-HR': 'AOGCM BGC AER', 'CNRM-CM6-1': 'AOGCM', 'CNRM-CM6-1-HR': 'AOGCM' }, 'configurations': { 'AOESMHR': ('CNRM-ESM2-1-HR', 'AOGCM BGC AER', []), - 'AESM': ('CNRM-ESM2-1', 'AGCM BGC AER CHEM', ['nemo']), + 'AESM': ('CNRM-ESM2-1e', 'AGCM BGC AER CHEM', ['nemo']), 'OESMHR': ('CNRM-ESM2-1-HR', 'OGCM BGC', ['surfex', 'trip']), - 'AOESM': ('CNRM-ESM2-1', 'AOGCM BGC AER CHEM', []), - 'LESM': ('CNRM-ESM2-1', 'LAND BGC', ['nemo']), + 'AOESM': ('CNRM-ESM2-1e', 'AOGCM BGC AER CHEM', []), + 'LESM': ('CNRM-ESM2-1e', 'LAND BGC', ['nemo']), 'AGCM': ('CNRM-CM6-1', 'AGCM', ['nemo']), 'OGCMHR': ('CNRM-CM6-1-HR', 'OGCM', ['surfex', 'trip']), 'AOGCMHR': ('CNRM-CM6-1-HR', 'AOGCM', []), 'AGCMHR': ('CNRM-CM6-1-HR', 'AGCM', ['nemo']), - 'OESM': ('CNRM-ESM2-1', 'OGCM BGC', ['surfex', 'trip']), - 'AESMHR': ('CNRM-ESM2-1', 'AGCM BGC AER', []), + 'OESM': ('CNRM-ESM2-1e', 'OGCM BGC', ['surfex', 'trip']), + 'AESMHR': ('CNRM-ESM2-1e', 'AGCM BGC AER', []), 'AOGCM': ('CNRM-CM6-1', 'AOGCM', []), 'LGCM': ('CNRM-CM6-1', 'LAND', ['nemo']), 'OGCM': ('CNRM-CM6-1', 'OGCM', ['surfex', 'trip']) @@ -156,6 +165,7 @@ 'jpdftaureicemodis', 'clmisr'] }, 'institution_id': 'CNRM-CERFACS', + 'institution': 'CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France)', 'excluded_spshapes': ['XYA-na', 'XYG-na', 'na-A'], 'mips': { 'HR': {}, @@ -175,7 +185,7 @@ 'klev_half': 'alevel' }, 'branching': { - 'CNRM-ESM2-1': { + 'CNRM-ESM2-1e': { 'historical': (1850, [1850, 1883, 1941]) }, 'CNRM-CM6-1': { @@ -217,5 +227,6 @@ 'contact': 'contact.cmip@meteo.fr', 'compression_level': 4, 'grid_policy': 'adhoc', - 'bytes_per_float': 2.4 + 'bytes_per_float': 2.4, + 'parent_activity_id':"CMIP" } diff --git a/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_log b/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_log index 29c33b22..2fa14dcd 100644 --- a/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_log +++ b/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_log @@ -1,3 +1,14 @@ +sync universe +Universe is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +sync projects +Project cmip6 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +Project cmip7 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository ************************************************** * @@ -21,9 +32,9 @@ Issues with standard names are: [] homevars file: current_directory/test_AOESM_historical_CMIP7/input/home_data_request/home_data_request_test.txt Number of 'cmor', 'dev' and 'perso' among home variables: 11 Number of 'extra' among home variables: 0 -homevars list: tos zos sos tos zos sos tos zos sos albsrfc albsrfc -Error: {'varname': 'zos', 'realm': 'ocean', 'freq': 'monPt', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. -Error: {'varname': 'sos', 'realm': 'ocean', 'freq': 'monPt', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. +homevars list: tos zos sos tos zos sos tos zos sos wilt wilt +Error: {'varname': 'zos', 'realm': 'ocean', 'freq': 'mon', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. +Error: {'varname': 'sos', 'realm': 'ocean', 'freq': 'mon', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. Realms for these CMORvars: aerosol atmos land landIce ocean seaIce Processing realm 'ocnBgchem' of context 'nemo' -- no variable asked (skip) @@ -89,20 +100,16 @@ Some Statistics on actually written variables per frequency+shape... Omon P1 4: bigthetao so thetao wo mon XY-O -------- --- 4 + Nonemon P2 1: tos Omon P1 3: sos tos zos Omon P2 3: mlotstmax mlotstmin zossq SImon P1 5: siconc simass sithick siu siv - mon XY-na -------- --- 11 + mon XY-na -------- --- 12 Omon P1 1: zostoga mon na-na -------- --- 1 - mon -------- -------- --- 16 - - NonemonPt P2 1: tos - monPt XY-na -------- --- 1 - - monPt -------- -------- --- 1 + mon -------- -------- --- 17 ---------- -------- -------- --- 35 @@ -181,7 +188,7 @@ Some Statistics on actually written variables per variable... --- VARNAME: tos: Sea Surface Temperature ----------------- * day_Oday_XY-na_1 tos - * monPt_NonemonPt_XY-na_2 tos + * mon_Nonemon_XY-na_2 tos * mon_Omon_XY-na_1 tos * 6hr_None6hr_XY-na_1 tos ------------------- @@ -210,6 +217,17 @@ Some Statistics on actually written variables per variable... Warnings about cell methods (with var list) time: mean where sea_ice for vars: {'sithick', 'siu', 'siv'} +sync universe +Universe is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +sync projects +Project cmip6 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +Project cmip7 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository ************************************************** * @@ -233,9 +251,9 @@ Issues with standard names are: [] homevars file: current_directory/test_AOESM_historical_CMIP7/input/home_data_request/home_data_request_test.txt Number of 'cmor', 'dev' and 'perso' among home variables: 11 Number of 'extra' among home variables: 0 -homevars list: tos zos sos tos zos sos tos zos sos albsrfc albsrfc -Error: {'varname': 'zos', 'realm': 'ocean', 'freq': 'monPt', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. -Error: {'varname': 'sos', 'realm': 'ocean', 'freq': 'monPt', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. +homevars list: tos zos sos tos zos sos tos zos sos wilt wilt +Error: {'varname': 'zos', 'realm': 'ocean', 'freq': 'mon', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. +Error: {'varname': 'sos', 'realm': 'ocean', 'freq': 'mon', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. Realms for these CMORvars: aerosol atmos land landIce ocean seaIce Processing realm 'atmosChem' of context 'surfex' -- no variable asked (skip) @@ -252,16 +270,14 @@ OK current_directory/test_AOESM_historical_CMIP7/input/xml/ping_nemo.xml Duplicate variable bldep,bldep in table 3hrPt is skipped, preferred is bldep Duplicate variable bldep,bldep in table 3hrPt is skipped, preferred is bldep Duplicate variable snc,snc in table LImon is skipped, preferred is snc -Duplicate variable albsrfc,albsrfc in table day is skipped, preferred is albsrfc Duplicate variable areacella,areacella in table fx is skipped, preferred is areacella -Duplicate variable albsrfc,albsrfc in table mon is skipped, preferred is albsrfc file_def written as current_directory/test_AOESM_historical_CMIP7/test_outputs/dr2xml_surfex.xml Skipped variables (i.e. whose alias is not present in the pingfile): >>> TABLE: 3hrPt 01/03 ----> bldep(2) ->>> TABLE: 6hr 04/04 ----> mpw(2) swh(2) swhmax(2) wpp(2) +>>> TABLE: 6hr 04/05 ----> mpw(2) swh(2) swhmax(2) wpp(2) >>> TABLE: Efx 01/01 ----> slthick(1) @@ -271,13 +287,23 @@ Skipped variables (i.e. whose alias is not present in the pingfile): Some Statistics on actually written variables per frequency+shape... + hr P1 1: wilt + 1hr XY-na -------- --- 1 + + 1hr -------- -------- --- 1 + + 6hr P1 1: wilt + 6hr XY-na -------- --- 1 + + 6hr -------- -------- --- 1 + day P1 2: ta zg day XY-P19 -------- --- 2 - day P1 7: albsrfc pr psl sfcWind tas tasmax tasmin - day XY-na -------- --- 7 + day P1 6: pr psl sfcWind tas tasmax tasmin + day XY-na -------- --- 6 - day -------- -------- --- 9 + day -------- -------- --- 8 fx P1 4: areacella orog rootd sftlf fx XY-na -------- --- 4 @@ -290,27 +316,15 @@ Some Statistics on actually written variables per frequency+shape... Amon P1 7: pr prc sfcWind tas tasmax tasmin ts LImon P1 1: snc Lmon P1 3: lai mrso mrsos - mon P1 1: albsrfc - mon XY-na -------- --- 12 + mon XY-na -------- --- 11 - mon -------- -------- --- 14 + mon -------- -------- --- 13 ---------- -------- -------- --- 27 Some Statistics on actually written variables per variable... ---------------------- ---- VARNAME: albsrfc: None ---------------------- - * day_day_XY-na_1 albsrfc - * mon_mon_XY-na_1 albsrfc - Warning: several long names are available: - - None - - surface albedo - Warning: several standard names are available: - - None - - albsrfc ----------------------- --- VARNAME: areacella: Grid-Cell Area for Atmospheric Grid Variables ----------------------- @@ -385,11 +399,33 @@ Some Statistics on actually written variables per variable... --- VARNAME: ts: Surface Temperature ---------------- * mon_Amon_XY-na_1 ts +------------------ +--- VARNAME: wilt: None +------------------ + * 1hr_hr_XY-na_1 wilt + * 6hr_6hr_XY-na_1 wilt + Warning: several long names are available: + - None + - Wilting Point over land + Warning: several standard names are available: + - None + - wilt ---------------- --- VARNAME: zg: Geopotential Height ---------------- * day_day_XY-P19_1 zg * mon_Amon_XY-P19_1 zg +sync universe +Universe is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +sync projects +Project cmip6 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +Project cmip7 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository ************************************************** * @@ -413,9 +449,9 @@ Issues with standard names are: [] homevars file: current_directory/test_AOESM_historical_CMIP7/input/home_data_request/home_data_request_test.txt Number of 'cmor', 'dev' and 'perso' among home variables: 11 Number of 'extra' among home variables: 0 -homevars list: tos zos sos tos zos sos tos zos sos albsrfc albsrfc -Error: {'varname': 'zos', 'realm': 'ocean', 'freq': 'monPt', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. -Error: {'varname': 'sos', 'realm': 'ocean', 'freq': 'monPt', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. +homevars list: tos zos sos tos zos sos tos zos sos wilt wilt +Error: {'varname': 'zos', 'realm': 'ocean', 'freq': 'mon', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. +Error: {'varname': 'sos', 'realm': 'ocean', 'freq': 'mon', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. Realms for these CMORvars: aerosol atmos land landIce ocean seaIce processing file current_directory/test_AOESM_historical_CMIP7/input/xml/ping_surfex.xml: diff --git a/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_nemo.xml b/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_nemo.xml index 8ddeb25d..9af8946f 100644 --- a/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_nemo.xml +++ b/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_nemo.xml @@ -1,19 +1,19 @@ - - + + +'vertical_interpolation_sample_freq' = '3h', +'vocabulary_used' = 'dr2xml_default'}--> - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + mlotst_tavg-u-hxy-sea + tavg-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells - gn - 100 km + ??? + ??? none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Eday + GLB + CNRM-ESM2-1e + tavg CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical mlotst r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -145,58 +147,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + bigthetao_tavg-op20bar-hxy-sea + tavg-op20bar-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Oday - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg bigthetao r1i1p1f2 + op20bar + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -214,58 +205,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + sos_tavg-u-hxy-sea + tavg-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Oday - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg sos r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -283,58 +263,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + thetao_tavg-op20bar-hxy-sea + tavg-op20bar-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Oday - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg thetao r1i1p1f2 + op20bar + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -352,58 +321,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + tos_tavg-u-hxy-sea + tavg-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Oday - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg tos r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -421,58 +379,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + tossq_tavg-u-hxy-sea + tavg-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Oday - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg tossq r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -490,58 +437,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + zos_tavg-u-hxy-sea + tavg-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Oday - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg zos r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -559,57 +495,46 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + zostoga_tavg-u-hm-sea + tavg-u-hm-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hm + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Oday - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg zostoga r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -627,57 +552,46 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + areacell_ti-u-hxy-u + ti-u-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past - 2 + f2 fx - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Ofx - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + ti areacello r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -694,58 +608,47 @@ seaIce: Gelato 6.1 undef - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + deptho_ti-u-hxy-sea + ti-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 fx - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Ofx - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + ti deptho r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -762,58 +665,47 @@ seaIce: Gelato 6.1 area: areacello - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + masscello_ti-ol-hxy-sea + ti-ol-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello volcello - 2 + f2 fx - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Ofx - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + ti masscello r1i1p1f2 + ol + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -830,58 +722,47 @@ seaIce: Gelato 6.1 area: areacello volume: volcello - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + siconc_tavg-u-hxy-u + tavg-u-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 seaIce - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - SIday - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg siconc r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -899,57 +780,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + si + 0.0D + 36524.0D + sithick_tavg-u-hxy-si + tavg-u-hxy-si + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - SIday - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + r1 + seaIce,ocean + GLB + CNRM-ESM2-1e + tavg sithick r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -967,57 +838,46 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + si + 0.0D + 36524.0D + siu_tavg-u-hxy-si + tavg-u-hxy-si + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 seaIce - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - SIday - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg siu r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1035,57 +895,46 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + si + 0.0D + 36524.0D + siv_tavg-u-hxy-si + tavg-u-hxy-si + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 seaIce - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - SIday - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg siv r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1103,58 +952,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + tos_tpt-u-hxy-sea + tpt-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 - monPt - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells + f2 + mon gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - NonemonPt - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tpt tos r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1172,58 +1010,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + bigthetao_tavg-ol-hxy-sea + tavg-ol-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello volcello - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Omon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg bigthetao r1i1p1f2 + ol + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1241,58 +1068,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + so_tavg-ol-hxy-sea + tavg-ol-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello volcello - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Omon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg so r1i1p1f2 + ol + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1310,58 +1126,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + thetao_tavg-ol-hxy-sea + tavg-ol-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello volcello - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Omon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg thetao r1i1p1f2 + ol + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1379,58 +1184,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + wo_tavg-ol-hxy-sea + tavg-ol-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello volcello - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Omon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg wo r1i1p1f2 + ol + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1448,58 +1242,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + mlotstmax_tmax-u-hxy-sea + tmax-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Omon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tmax mlotstmax r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1517,58 +1300,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + mlotstmin_tmin-u-hxy-sea + tmin-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Omon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tmin mlotstmin r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1586,58 +1358,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + sos_tavg-u-hxy-sea + tavg-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Omon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg sos r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1655,58 +1416,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + tos_tavg-u-hxy-sea + tavg-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Omon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg tos r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1724,58 +1474,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + zos_tavg-u-hxy-sea + tavg-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Omon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg zos r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1793,58 +1532,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + zossq_tavg-u-hxy-sea + tavg-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Omon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg zossq r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1862,57 +1590,46 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + zostoga_tavg-u-hm-sea + tavg-u-hm-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hm + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Omon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg zostoga r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1930,58 +1647,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + siconc_tavg-u-hxy-u + tavg-u-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 seaIce - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - SImon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg siconc r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1999,58 +1705,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + simass_tavg-u-hxy-sea + tavg-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 seaIce - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - SImon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg simass r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -2068,57 +1763,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + si + 0.0D + 36524.0D + sithick_tavg-u-hxy-si + tavg-u-hxy-si + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - SImon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + r1 + seaIce,ocean + GLB + CNRM-ESM2-1e + tavg sithick r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -2136,57 +1821,46 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + si + 0.0D + 36524.0D + siu_tavg-u-hxy-si + tavg-u-hxy-si + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 seaIce - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - SImon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg siu r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -2204,57 +1878,46 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + si + 0.0D + 36524.0D + siv_tavg-u-hxy-si + tavg-u-hxy-si + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 seaIce - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - SImon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg siv r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -2272,58 +1935,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + sos_tavg-u-hxy-sea + tavg-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 6hr - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - None6hr - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg sos r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -2341,58 +1993,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + tos_tavg-u-hxy-sea + tavg-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 6hr - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - None6hr - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg tos r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -2410,58 +2051,47 @@ seaIce: Gelato 6.1 1800 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + sea + 0.0D + 36524.0D + zos_tavg-u-hxy-sea + tavg-u-hxy-sea + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacello - 2 + f2 6hr - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - native ocean tri-polar grid with 105 k ocean cells gn - 100 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 100 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 ocean - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - None6hr - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg zos r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 diff --git a/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_surfex.xml b/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_surfex.xml index 9a91a81f..2372bf55 100644 --- a/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_surfex.xml +++ b/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_surfex.xml @@ -1,19 +1,19 @@ - - + + +'vertical_interpolation_sample_freq' = '3h', +'vocabulary_used' = 'dr2xml_default'}--> - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 - historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past - 2 - day - https://furtherinfo.es-doc.org/DEV.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid - gr - 250 km - none - 1 - CNRM-CERFACS - CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - DEV - piControl - DEV - CMIP - CNRM-ESM2-1 - days since 1850-01-01 00:00:00 - r1i1p1f2 - standard - 36524.0D + u 0.0D - 1 - model-output - 1 - land - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - day - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical - albsrfc - r1i1p1f2 - cv=6.2.3.0-7-g2019642 - CNRM-ESM2-1_historical_r1i1p1f2_v2 - 7040f60f6bf3118dc6c58b9fb8727d87 - 6.3.2 - 49095b3accd5d4c_6524fe19b00467a - 1442-shuffle - - albsrfc - None - surface albedo - none - fraction - time: mean - 900 s - - - - CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + 36524.0D + pr_tavg-u-hxy-u + tavg-u-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - day - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg pr r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -212,58 +145,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + psl_tavg-u-hxy-u + tavg-u-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - day - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg psl r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -281,58 +203,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + sfcWind_tavg-h10m-hxy-u + tavg-h10m-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - day - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg sfcWind r1i1p1f2 + h10m + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -350,58 +261,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + tas_tavg-h2m-hxy-u + tavg-h2m-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - day - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg tas r1i1p1f2 + h2m + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -419,58 +319,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + tas_tmax-h2m-hxy-u + tmax-h2m-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - day - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tmax tasmax r1i1p1f2 + h2m + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -488,58 +377,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + tas_tmin-h2m-hxy-u + tmin-h2m-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - day - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tmin tasmin r1i1p1f2 + h2m + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -557,58 +435,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + air + 0.0D + 36524.0D + ta_tavg-p19-hxy-air + tavg-p19-hxy-air + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - day - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg ta r1i1p1f2 + p19 + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -626,58 +493,47 @@ seaIce: Gelato 6.1 3h - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + air + 0.0D + 36524.0D + zg_tavg-p19-hxy-air + tavg-p19-hxy-air + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 day - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - day - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg zg r1i1p1f2 + p19 + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -695,56 +551,46 @@ seaIce: Gelato 6.1 3h - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + areacell_ti-u-hxy-u + ti-u-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past - 2 + f2 fx - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - fx - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + r1 + atmos,land + GLB + CNRM-ESM2-1e + ti areacella r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -761,58 +607,47 @@ seaIce: Gelato 6.1 undef - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + orog_ti-u-hxy-u + ti-u-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 fx - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 land - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - fx - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + ti orog r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -829,58 +664,47 @@ seaIce: Gelato 6.1 area: areacella - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + lnd + 0.0D + 36524.0D + rootd_ti-u-hxy-lnd + ti-u-hxy-lnd + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 fx - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 land - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - fx - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + ti rootd r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -897,58 +721,47 @@ seaIce: Gelato 6.1 area: areacella - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + sftlf_ti-u-hxy-u + ti-u-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 fx - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - fx - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + ti sftlf r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -965,58 +778,102 @@ seaIce: Gelato 6.1 area: areacella - + + CMIP + undef + 0.0D + 36524.0D + None + hr + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). + historical + f2 + 1hr + gr + none + undef + i1 + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km + CMIP + piControl + CMIP7 + CNRM-ESM2-1e + days since 1850-01-01 00:00:00 + r1i1p1f2 + p1 + model-output + r1 + land + undef + CNRM-ESM2-1e + undef + wilt + r1i1p1f2 + undef + current_version + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @wilt_average + 100 * ISBA Wilting Point in m3/m3 + None + None + none + time: mean + 900 s + + + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + air + 0.0D + 36524.0D + ta_tavg-p19-hxy-air + tavg-p19-hxy-air + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Amon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg ta r1i1p1f2 + p19 + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1034,58 +891,47 @@ seaIce: Gelato 6.1 3h - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + air + 0.0D + 36524.0D + zg_tavg-p19-hxy-air + tavg-p19-hxy-air + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Amon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg zg r1i1p1f2 + p19 + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1103,58 +949,47 @@ seaIce: Gelato 6.1 3h - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + pr_tavg-u-hxy-u + tavg-u-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Amon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg pr r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1172,58 +1007,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + prc_tavg-u-hxy-u + tavg-u-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Amon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg prc r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1241,58 +1065,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + sfcWind_tavg-h10m-hxy-u + tavg-h10m-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Amon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg sfcWind r1i1p1f2 + h10m + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1310,58 +1123,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + tas_tavg-h2m-hxy-u + tavg-h2m-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Amon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg tas r1i1p1f2 + h2m + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1379,58 +1181,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + tas_tmax-h2m-hxy-u + tmax-h2m-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Amon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tmax tasmax r1i1p1f2 + h2m + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1448,58 +1239,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + tas_tmin-h2m-hxy-u + tmin-h2m-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Amon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tmin tasmin r1i1p1f2 + h2m + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1517,58 +1297,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + u + 0.0D + 36524.0D + ts_tavg-u-hxy-u + tavg-u-hxy-u + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 atmos - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Amon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg ts r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1586,57 +1355,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + lnd + 0.0D + 36524.0D + snc_tavg-u-hxy-lnd + tavg-u-hxy-lnd + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - LImon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + r1 + landIce,land + GLB + CNRM-ESM2-1e + tavg snc r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1655,58 +1414,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + lnd + 0.0D + 36524.0D + lai_tavg-u-hxy-lnd + tavg-u-hxy-lnd + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 land - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Lmon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg lai r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1724,58 +1472,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + lnd + 0.0D + 36524.0D + mrso_tavg-u-hxy-lnd + tavg-u-hxy-lnd + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 land - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Lmon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg mrso r1i1p1f2 + u + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1793,58 +1530,47 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + lnd + 0.0D + 36524.0D + mrsol_tavg-d10cm-hxy-lnd + tavg-d10cm-hxy-lnd + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past areacella - 2 + f2 mon - https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid gr - 250 km none - 1 - CNRM-CERFACS + hxy + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - False - piControl - False + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 land - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - Lmon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical + GLB + CNRM-ESM2-1e + tavg mrsos r1i1p1f2 + d10cm + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 @@ -1862,67 +1588,59 @@ seaIce: Gelato 6.1 900 s - + CMIP - contact.cmip@meteo.fr - Software current_cmip7_dr_software - Content test - 3.1 + undef + 0.0D + 36524.0D + None + 6hr + CF-1.12 + MIP-DS7.0.0.0 + MIP-DRS7 + Simulation of the climate of the recent past (typically meaning 1850 to present-day) with prescribed carbon dioxide concentrations (for prescribed carbon dioxide emissions, see `esm-hist`). historical - CMIP6 historical - CMIP6 historical - all-forcing simulation of the recent past - 2 - mon - https://furtherinfo.es-doc.org/PERSO.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 - data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + f2 + 6hr gr - 250 km none - 1 - CNRM-CERFACS + undef + i1 CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) - CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. - PERSO - piControl - PERSO + CNRM-CERFACS + CC-BY-4-0 + CMIP7 + 250 km CMIP - CNRM-ESM2-1 + piControl + CMIP7 + CNRM-ESM2-1e days since 1850-01-01 00:00:00 r1i1p1f2 - standard - 36524.0D - 0.0D - 1 + p1 model-output - 1 + r1 land - http://www.umr-cnrm.fr/cmip6/references - CNRM-ESM2-1 (2017): -aerosol: TACTIC_v2 -atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) -atmosChem: REPROBUS-C_v2 -land: Surfex 8.0c -ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) -ocnBgchem: Pisces 2.s -seaIce: Gelato 6.1 - CNRM-ESM2-1 - AOGCM BGC AER CHEM - none - none - mon - CNRM-ESM2-1 model output prepared for CMIP7 / CMIP historical - albsrfc + undef + CNRM-ESM2-1e + undef + wilt r1i1p1f2 + undef + current_version cv=6.2.3.0-7-g2019642 CNRM-ESM2-1_historical_r1i1p1f2_v2 7040f60f6bf3118dc6c58b9fb8727d87 6.3.2 49095b3accd5d4c_6524fe19b00467a 1442-shuffle - @albsrfc_average + @wilt_average + 100 * ISBA Wilting Point in m3/m3 + wilt None - None + Wilting Point over land none + fraction time: mean 900 s @@ -1932,7 +1650,6 @@ seaIce: Gelato 6.1 - @@ -1954,6 +1671,7 @@ seaIce: Gelato 6.1 + @@ -2019,6 +1737,14 @@ seaIce: Gelato 6.1 + + + + + + + + \ No newline at end of file diff --git a/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_trip.xml b/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_trip.xml index 62f45c6d..4d2b56ee 100644 --- a/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_trip.xml +++ b/tests/test_AOESM_historical_CMIP7/reference_outputs/dr2xml_trip.xml @@ -1,19 +1,19 @@ - - + + +'vertical_interpolation_sample_freq' = '3h', +'vocabulary_used' = 'dr2xml_default'}--> mpw(2) swh(2) swhmax(2) wpp(2) + +>>> TABLE: Omon 04/15 ----> mpw(2) swh(2) swhmax(2) wpp(2) + + + + +Some Statistics on actually written variables per frequency+shape... + None6hr P1 3: sos tos zos + 6hr XY-na -------- --- 3 + + 6hr -------- -------- --- 3 + + Eday P2 1: mlotst + Oday P1 3: sos tos zos + Oday P2 3: bigthetao thetao tossq + SIday P1 1: siconc + SIday P2 3: sithick siu siv + day XY-na -------- --- 11 + + Oday P2 1: zostoga + day na-na -------- --- 1 + + day -------- -------- --- 12 + + Ofx P1 1: masscello + fx XY-O -------- --- 1 + + Ofx P1 2: areacello deptho + fx XY-na -------- --- 2 + + fx -------- -------- --- 3 + + Omon P1 4: bigthetao so thetao wo + mon XY-O -------- --- 4 + + Nonemon P2 1: tos + Omon P1 3: sos tos zos + Omon P2 3: mlotstmax mlotstmin zossq + SImon P1 5: siconc simass sithick siu siv + mon XY-na -------- --- 12 + + Omon P1 1: zostoga + mon na-na -------- --- 1 + + mon -------- -------- --- 17 + + +---------- -------- -------- --- 35 + + +Some Statistics on actually written variables per variable... +----------------------- +--- VARNAME: areacello: Grid-Cell Area for Ocean Variables +----------------------- + * fx_Ofx_XY-na_1 areacello +----------------------- +--- VARNAME: bigthetao: Sea Water Conservative Temperature +----------------------- + * day_Oday_XY-na_2 bigthetao + * mon_Omon_XY-O_1 bigthetao +-------------------- +--- VARNAME: deptho: Sea Floor Depth Below Geoid +-------------------- + * fx_Ofx_XY-na_1 deptho +----------------------- +--- VARNAME: masscello: Ocean Grid-Cell Mass per Area +----------------------- + * fx_Ofx_XY-O_1 masscello +-------------------- +--- VARNAME: mlotst: Ocean Mixed Layer Thickness Defined by Sigma T of 0.03 kg m-3 +-------------------- + * day_Eday_XY-na_2 mlotst +----------------------- +--- VARNAME: mlotstmax: Maximum Ocean Mixed Layer Thickness Defined by Sigma T +----------------------- + * mon_Omon_XY-na_2 mlotstmax +----------------------- +--- VARNAME: mlotstmin: Minimum Ocean Mixed Layer Thickness Defined by Sigma T +----------------------- + * mon_Omon_XY-na_2 mlotstmin +-------------------- +--- VARNAME: siconc: Sea-Ice Area Fraction (Ocean Grid) +-------------------- + * day_SIday_XY-na_1 siconc + * mon_SImon_XY-na_1 siconc +-------------------- +--- VARNAME: simass: Sea-Ice Mass +-------------------- + * mon_SImon_XY-na_1 simass +--------------------- +--- VARNAME: sithick: Sea-Ice Thickness +--------------------- + * day_SIday_XY-na_2 sithick + * mon_SImon_XY-na_1 sithick +----------------- +--- VARNAME: siu: X-Component of Sea-Ice Velocity +----------------- + * day_SIday_XY-na_2 siu + * mon_SImon_XY-na_1 siu +----------------- +--- VARNAME: siv: Y-Component of Sea-Ice Velocity +----------------- + * day_SIday_XY-na_2 siv + * mon_SImon_XY-na_1 siv +---------------- +--- VARNAME: so: Sea Water Salinity +---------------- + * mon_Omon_XY-O_1 so +----------------- +--- VARNAME: sos: Sea Surface Salinity +----------------- + * day_Oday_XY-na_1 sos + * mon_Omon_XY-na_1 sos + * 6hr_None6hr_XY-na_1 sos +-------------------- +--- VARNAME: thetao: Sea Water Potential Temperature +-------------------- + * day_Oday_XY-na_2 thetao + * mon_Omon_XY-O_1 thetao +----------------- +--- VARNAME: tos: Sea Surface Temperature +----------------- + * day_Oday_XY-na_1 tos + * mon_Nonemon_XY-na_2 tos + * mon_Omon_XY-na_1 tos + * 6hr_None6hr_XY-na_1 tos +------------------- +--- VARNAME: tossq: Square of Sea Surface Temperature +------------------- + * day_Oday_XY-na_2 tossq +---------------- +--- VARNAME: wo: Sea Water Vertical Velocity +---------------- + * mon_Omon_XY-O_1 wo +----------------- +--- VARNAME: zos: Sea Surface Height Above Geoid +----------------- + * day_Oday_XY-na_1 zos + * mon_Omon_XY-na_1 zos + * 6hr_None6hr_XY-na_1 zos +------------------- +--- VARNAME: zossq: Square of Sea Surface Height Above Geoid +------------------- + * mon_Omon_XY-na_2 zossq +--------------------- +--- VARNAME: zostoga: Global Average Thermosteric Sea Level Change +--------------------- + * day_Oday_na-na_2 zostoga + * mon_Omon_na-na_1 zostoga + +Warnings about cell methods (with var list) + time: mean where sea_ice for vars: {'sithick', 'siu', 'siv'} +sync universe +Universe is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +sync projects +Project cmip6 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +Project cmip7 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository + + ************************************************** +* +* dr2xml version: current_version +* CMIP6 conventions version: v6.2.4 +* CMIP7 Data Request version: Software current_cmip7_dr_software - Content test + +* + ************************************************** + +************************************************** + +Processing context surfex + +************************************************** + +Number of distinct CMOR variables (whatever the grid): 66 +Number of distinct var labels is: 45 +Number of simplified vars is: 66 +Issues with standard names are: [] +homevars file: current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/home_data_request/home_data_request_test.txt +Number of 'cmor', 'dev' and 'perso' among home variables: 11 +Number of 'extra' among home variables: 0 +homevars list: tos zos sos tos zos sos tos zos sos wilt wilt +Error: {'varname': 'zos', 'realm': 'ocean', 'freq': 'mon', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. +Error: {'varname': 'sos', 'realm': 'ocean', 'freq': 'mon', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. + +Realms for these CMORvars: aerosol atmos land landIce ocean seaIce +Processing realm 'atmosChem' of context 'surfex' -- no variable asked (skip) +Processing realm 'aerosol' of context 'surfex' +Processing realm 'atmos' of context 'surfex' +Processing realm 'land' of context 'surfex' +Processing realm 'landIce' of context 'surfex' +processing file current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/xml/ping_surfex.xml: +OK current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/xml/ping_surfex.xml +processing file current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/xml/ping_trip.xml: +OK current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/xml/ping_trip.xml +processing file current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/xml/ping_nemo.xml: +OK current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/xml/ping_nemo.xml +Duplicate variable bldep,bldep in table 3hrPt is skipped, preferred is bldep +Duplicate variable bldep,bldep in table 3hrPt is skipped, preferred is bldep +Duplicate variable snc,snc in table LImon is skipped, preferred is snc +Duplicate variable areacella,areacella in table fx is skipped, preferred is areacella + +file_def written as current_directory/test_AOESM_historical_CMIP7_stdCMIP6/test_outputs/dr2xml_surfex.xml + +Skipped variables (i.e. whose alias is not present in the pingfile): +>>> TABLE: 3hrPt 01/03 ----> bldep(2) + +>>> TABLE: 6hr 04/05 ----> mpw(2) swh(2) swhmax(2) wpp(2) + +>>> TABLE: Efx 01/01 ----> slthick(1) + +>>> TABLE: Omon 04/04 ----> mpw(2) swh(2) swhmax(2) wpp(2) + + + + +Some Statistics on actually written variables per frequency+shape... + hr P1 1: wilt + 1hr XY-na -------- --- 1 + + 1hr -------- -------- --- 1 + + 6hr P1 1: wilt + 6hr XY-na -------- --- 1 + + 6hr -------- -------- --- 1 + + day P1 2: ta zg + day XY-P19 -------- --- 2 + + day P1 6: pr psl sfcWind tas tasmax tasmin + day XY-na -------- --- 6 + + day -------- -------- --- 8 + + fx P1 4: areacella orog rootd sftlf + fx XY-na -------- --- 4 + + fx -------- -------- --- 4 + + Amon P1 2: ta zg + mon XY-P19 -------- --- 2 + + Amon P1 7: pr prc sfcWind tas tasmax tasmin ts + LImon P1 1: snc + Lmon P1 3: lai mrso mrsos + mon XY-na -------- --- 11 + + mon -------- -------- --- 13 + + +---------- -------- -------- --- 27 + + +Some Statistics on actually written variables per variable... +----------------------- +--- VARNAME: areacella: Grid-Cell Area for Atmospheric Grid Variables +----------------------- + * fx_fx_XY-na_1 areacella +----------------- +--- VARNAME: lai: Leaf Area Index +----------------- + * mon_Lmon_XY-na_1 lai +------------------ +--- VARNAME: mrso: Total Soil Moisture Content +------------------ + * mon_Lmon_XY-na_1 mrso +------------------- +--- VARNAME: mrsos: Moisture in Upper Portion of Soil Column +------------------- + * mon_Lmon_XY-na_1 mrsos +------------------ +--- VARNAME: orog: Surface Altitude +------------------ + * fx_fx_XY-na_1 orog +---------------- +--- VARNAME: pr: Precipitation +---------------- + * day_day_XY-na_1 pr + * mon_Amon_XY-na_1 pr +----------------- +--- VARNAME: prc: Convective Precipitation +----------------- + * mon_Amon_XY-na_1 prc +----------------- +--- VARNAME: psl: Sea Level Pressure +----------------- + * day_day_XY-na_1 psl +------------------- +--- VARNAME: rootd: Maximum Root Depth +------------------- + * fx_fx_XY-na_1 rootd +--------------------- +--- VARNAME: sfcWind: Near-Surface Wind Speed +--------------------- + * day_day_XY-na_1 sfcWind + * mon_Amon_XY-na_1 sfcWind +------------------- +--- VARNAME: sftlf: Percentage of the Grid Cell Occupied by Land (Including Lakes) +------------------- + * fx_fx_XY-na_1 sftlf +----------------- +--- VARNAME: snc: Snow Area Percentage +----------------- + * mon_LImon_XY-na_1 snc +---------------- +--- VARNAME: ta: Air Temperature +---------------- + * day_day_XY-P19_1 ta + * mon_Amon_XY-P19_1 ta +----------------- +--- VARNAME: tas: Near-Surface Air Temperature +----------------- + * day_day_XY-na_1 tas + * mon_Amon_XY-na_1 tas +-------------------- +--- VARNAME: tasmax: Daily Maximum Near-Surface Air Temperature +-------------------- + * day_day_XY-na_1 tasmax + * mon_Amon_XY-na_1 tasmax +-------------------- +--- VARNAME: tasmin: Daily Minimum Near-Surface Air Temperature +-------------------- + * day_day_XY-na_1 tasmin + * mon_Amon_XY-na_1 tasmin +---------------- +--- VARNAME: ts: Surface Temperature +---------------- + * mon_Amon_XY-na_1 ts +------------------ +--- VARNAME: wilt: None +------------------ + * 1hr_hr_XY-na_1 wilt + * 6hr_6hr_XY-na_1 wilt + Warning: several long names are available: + - None + - Wilting Point over land + Warning: several standard names are available: + - None + - wilt +---------------- +--- VARNAME: zg: Geopotential Height +---------------- + * day_day_XY-P19_1 zg + * mon_Amon_XY-P19_1 zg +sync universe +Universe is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +sync projects +Project cmip6 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +Project cmip7 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository + + ************************************************** +* +* dr2xml version: current_version +* CMIP6 conventions version: v6.2.4 +* CMIP7 Data Request version: Software current_cmip7_dr_software - Content test + +* + ************************************************** + +************************************************** + +Processing context trip + +************************************************** + +Number of distinct CMOR variables (whatever the grid): 66 +Number of distinct var labels is: 45 +Number of simplified vars is: 66 +Issues with standard names are: [] +homevars file: current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/home_data_request/home_data_request_test.txt +Number of 'cmor', 'dev' and 'perso' among home variables: 11 +Number of 'extra' among home variables: 0 +homevars list: tos zos sos tos zos sos tos zos sos wilt wilt +Error: {'varname': 'zos', 'realm': 'ocean', 'freq': 'mon', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. +Error: {'varname': 'sos', 'realm': 'ocean', 'freq': 'mon', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. + +Realms for these CMORvars: aerosol atmos land landIce ocean seaIce +processing file current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/xml/ping_surfex.xml: +OK current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/xml/ping_surfex.xml +processing file current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/xml/ping_trip.xml: +OK current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/xml/ping_trip.xml +processing file current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/xml/ping_nemo.xml: +OK current_directory/test_AOESM_historical_CMIP7_stdCMIP6/input/xml/ping_nemo.xml + +file_def written as current_directory/test_AOESM_historical_CMIP7_stdCMIP6/test_outputs/dr2xml_trip.xml + + +Some Statistics on actually written variables per frequency+shape... + +---------- -------- -------- --- 0 + + +Some Statistics on actually written variables per variable... diff --git a/tests/test_AOESM_historical_CMIP7_stdCMIP6/reference_outputs/dr2xml_nemo.xml b/tests/test_AOESM_historical_CMIP7_stdCMIP6/reference_outputs/dr2xml_nemo.xml new file mode 100644 index 00000000..8f3941f6 --- /dev/null +++ b/tests/test_AOESM_historical_CMIP7_stdCMIP6/reference_outputs/dr2xml_nemo.xml @@ -0,0 +1,2547 @@ + + + + + + + + + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + mlotst + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + ocean_mixed_layer_thickness_defined_by_sigma_t + Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. + Ocean Mixed Layer Thickness Defined by Sigma T of 0.03 kg m-3 + none + m + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Oday + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + bigthetao + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_water_conservative_temperature + Diagnostic should be contributed even for models using conservative temperature as prognostic field. + Sea Water Conservative Temperature + none + degC + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Oday + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + sos + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_surface_salinity + Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. + Sea Surface Salinity + none + 1E-03 + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Oday + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + thetao + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_water_potential_temperature + Diagnostic should be contributed even for models using conservative temperature as prognostic field. + Sea Water Potential Temperature + none + degC + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Oday + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + tos + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_surface_temperature + This may differ from "surface temperature" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature. + Sea Surface Temperature + none + degC + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Oday + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + tossq + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + square_of_sea_surface_temperature + Square of temperature of liquid ocean, averaged over the day. + Square of Sea Surface Temperature + none + degC2 + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Oday + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + zos + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_surface_height_above_geoid + This is the dynamic sea level, so should have zero global area mean. zos is the effective sea level as if sea ice (and snow) at a grid cell were converted to liquid seawater (Campin et al., 2008). For OMIP, do _not _record inverse barometer responses from sea-ice (and snow) loading in zos. See (Griffies et al, 2016, https://doi.org/10.5194/gmd-9-3231-2016). + Sea Surface Height Above Geoid + none + m + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Oday + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + zostoga + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + global_average_thermosteric_sea_level_change + Global Average Thermosteric Sea Level Change + Global Average Thermosteric Sea Level Change + none + m + area: mean where sea time: mean + undef + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + 2 + fx + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Ofx + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + areacello + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cell_area + Cell areas for any grid used to report ocean variables and variables which are requested as used on the model ocean grid (e.g. hfsso, which is a downward heat flux from the atmosphere interpolated onto the ocean grid). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). + Grid-Cell Area for Ocean Variables + none + m2 + area: sum + undef + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + fx + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Ofx + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + deptho + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_floor_depth_below_geoid + Ocean bathymetry. Reported here is the sea floor depth for present day relative to z=0 geoid. Reported as missing for land grid cells. + Sea Floor Depth Below Geoid + none + m + area: mean where sea + area: areacello + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello volcello + 2 + fx + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Ofx + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + masscello + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_water_mass_per_unit_area + Tracer grid-cell mass per unit area used for computing tracer budgets. For Boussinesq models with static ocean grid cell thickness, masscello = rhozero\*thickcello, where thickcello is static cell thickness and rhozero is constant Boussinesq reference density. More generally, masscello is time dependent and reported as part of Omon. + Ocean Grid-Cell Mass per Area + none + kg m-2 + area: mean where sea + area: areacello volume: volcello + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + seaIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + SIday + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + siconc + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_ice_area_fraction + Areal fraction of a given grid cell that is covered by sea ice on the ocean grid, independent of the thickness of that ice. + Sea-Ice Area Fraction (Ocean Grid) + none + 1 + area: time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + seaIce,ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + SIday + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + sithick + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_ice_thickness + Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Sea-Ice Thickness + none + m + area: time: mean where sea_ice (mask=siconc) + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + seaIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + SIday + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + siu + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_ice_x_velocity + X-component of sea-ice velocity on native model grid. + X-Component of Sea-Ice Velocity + none + m s-1 + area: time: mean where sea_ice (mask=siconc) + ::MODEL + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + seaIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + SIday + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + siv + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_ice_y_velocity + Y-component of sea-ice velocity on native model grid. + Y-Component of Sea-Ice Velocity + none + m s-1 + area: time: mean where sea_ice (mask=siconc) + ::MODEL + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Nonemon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + tos + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_surface_temperature + temperature of surface of open ocean, sampled synoptically. + Sea Surface Temperature + none + degC + area: mean where sea time: point + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello volcello + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Omon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + bigthetao + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_water_conservative_temperature + Diagnostic should be contributed only for models using conservative temperature as prognostic field. + Sea Water Conservative Temperature + none + degC + area: mean where sea time: mean + area: areacello volume: volcello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello volcello + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Omon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + so + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_water_salinity + Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. + Sea Water Salinity + none + 1E-03 + area: mean where sea time: mean + area: areacello volume: volcello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello volcello + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Omon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + thetao + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_water_potential_temperature + Diagnostic should be contributed even for models using conservative temperature as prognostic field. + Sea Water Potential Temperature + none + degC + area: mean where sea time: mean + area: areacello volume: volcello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello volcello + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Omon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + wo + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + upward_sea_water_velocity + Prognostic z-ward velocity component resolved by the model. + Sea Water Vertical Velocity + none + m s-1 + area: mean where sea time: mean + area: areacello volume: volcello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Omon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + mlotstmax + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + ocean_mixed_layer_thickness_defined_by_sigma_t + Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. + Maximum Ocean Mixed Layer Thickness Defined by Sigma T + none + m + area: mean where sea time: maximum + area: areacella + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Omon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + mlotstmin + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + ocean_mixed_layer_thickness_defined_by_sigma_t + Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. + Minimum Ocean Mixed Layer Thickness Defined by Sigma T + none + m + area: mean where sea time: minimum + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Omon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + sos + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_surface_salinity + Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. + Sea Surface Salinity + none + 1E-03 + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Omon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + tos + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_surface_temperature + This may differ from "surface temperature" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature. + Sea Surface Temperature + none + degC + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Omon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + zos + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_surface_height_above_geoid + This is the dynamic sea level, so should have zero global area mean. It should not include inverse barometer depressions from sea ice. + Sea Surface Height Above Geoid + none + m + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Omon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + zossq + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + square_of_sea_surface_height_above_geoid + Surface ocean geoid defines z=0. + Square of Sea Surface Height Above Geoid + none + m2 + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Omon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + zostoga + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + global_average_thermosteric_sea_level_change + There is no CMIP6 request for zosga nor zossga. + Global Average Thermosteric Sea Level Change + none + m + area: mean where sea time: mean + undef + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + seaIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + SImon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + siconc + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_ice_area_fraction + Areal fraction of a given grid cell that is covered by sea ice on the ocean grid, independent of the thickness of that ice. + Sea-Ice Area Fraction (Ocean Grid) + none + 1 + area: time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + seaIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + SImon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + simass + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_ice_amount + Total mass of sea ice divided by grid-cell area. + Sea-Ice Mass + none + kg m-2 + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + seaIce,ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + SImon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + sithick + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_ice_thickness + Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Sea-Ice Thickness + none + m + area: time: mean where sea_ice (mask=siconc) + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + seaIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + SImon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + siu + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_ice_x_velocity + X-component of sea-ice velocity on native model grid. + X-Component of Sea-Ice Velocity + none + m s-1 + area: time: mean where sea_ice (mask=siconc) + ::MODEL + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + seaIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + SImon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + siv + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_ice_y_velocity + Y-component of sea-ice velocity on native model grid. + Y-Component of Sea-Ice Velocity + none + m s-1 + area: time: mean where sea_ice (mask=siconc) + ::MODEL + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + 6hr + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + None6hr + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + sos + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_surface_salinity + Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. + Sea Surface Salinity + none + 1E-03 + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + 6hr + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + None6hr + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + tos + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_surface_temperature + This may differ from "surface temperature" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature. + Sea Surface Temperature + none + degC + area: mean where sea time: mean + area: areacello + 1800 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacello + 2 + 6hr + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + native ocean tri-polar grid with 105 k ocean cells + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + ocean + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + None6hr + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + zos + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + sea_surface_height_above_geoid + This is the dynamic sea level, so should have zero global area mean. It should not include inverse barometer depressions from sea ice. + Sea Surface Height Above Geoid + none + m + area: mean where sea time: mean + area: areacello + 1800 s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/test_AOESM_historical_CMIP7_stdCMIP6/reference_outputs/dr2xml_surfex.xml b/tests/test_AOESM_historical_CMIP7_stdCMIP6/reference_outputs/dr2xml_surfex.xml new file mode 100644 index 00000000..0d1985ca --- /dev/null +++ b/tests/test_AOESM_historical_CMIP7_stdCMIP6/reference_outputs/dr2xml_surfex.xml @@ -0,0 +1,2045 @@ + + + + + + + + + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + pr + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_pr_average + precipitation_flux + at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) + Precipitation + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + psl + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_psl_average + air_pressure_at_mean_sea_level + Sea Level Pressure + Sea Level Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + sfcWind + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_sfcWind_average + wind_speed + near-surface (usually, 10 meters) wind speed. + Near-Surface Wind Speed + none + m s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + tas + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_tas_average + air_temperature + near-surface (usually, 2 meter) air temperature + Near-Surface Air Temperature + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + tasmax + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + air_temperature + maximum near-surface (usually, 2 meter) air temperature (add cell\_method attribute "time: max") + Daily Maximum Near-Surface Air Temperature + none + K + area: mean time: maximum + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + tasmin + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + air_temperature + minimum near-surface (usually, 2 meter) air temperature (add cell\_method attribute "time: min") + Daily Minimum Near-Surface Air Temperature + none + K + area: mean time: minimum + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + ta + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_ta_plev19_average + air_temperature + Air Temperature + Air Temperature + none + K + area: time: mean where air + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + day + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + zg + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_zg_plev19_average + geopotential_height + Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. + Geopotential Height + none + m + area: time: mean where air + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + 2 + fx + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos,land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + fx + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + areacella + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cell_area + Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). + Grid-Cell Area for Atmospheric Grid Variables + none + m2 + area: sum + undef + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + fx + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + fx + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + orog + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + surface_altitude + height above the geoid; as defined here, "the geoid" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Reported here is the height above the present-day geoid (0.0 over ocean). + Surface Altitude + none + m + area: mean + area: areacella + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + fx + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + fx + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + rootd + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + root_depth + report the maximum soil depth reachable by plant roots (if defined in model), i.e., the maximum soil depth from which they can extract moisture; report as "missing" where the land fraction is 0. + Maximum Root Depth + none + m + area: mean where land + area: areacella + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + fx + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + fx + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + sftlf + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + land_area_fraction + Percentage of horizontal area occupied by land. + Percentage of the Grid Cell Occupied by Land (Including Lakes) + none + % + area: mean + area: areacella + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + 2 + 1hr + https://furtherinfo.es-doc.org/PERSO.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + PERSO + piControl + PERSO + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + hr + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + wilt + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @wilt_average + 100 * ISBA Wilting Point in m3/m3 + None + None + none + time: mean + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + ta + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_ta_plev19_average + air_temperature + Air Temperature + Air Temperature + none + K + area: time: mean where air + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + zg + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_zg_plev19_average + geopotential_height + Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. + Geopotential Height + none + m + area: time: mean where air + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + pr + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_pr_average + precipitation_flux + at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) + Precipitation + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + prc + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_prc_average + convective_precipitation_flux + at surface; includes both liquid and solid phases. + Convective Precipitation + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + sfcWind + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_sfcWind_average + wind_speed + This is the mean of the speed, not the speed computed from the mean u and v components of wind + Near-Surface Wind Speed + none + m s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + tas + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_tas_average + air_temperature + near-surface (usually, 2 meter) air temperature + Near-Surface Air Temperature + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + tasmax + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_tasmax_average + air_temperature + monthly mean of the daily-maximum near-surface air temperature. + Daily Maximum Near-Surface Air Temperature + none + K + area: mean time: maximum within days time: mean over days + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + tasmin + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_tasmin_average + air_temperature + monthly mean of the daily-minimum near-surface air temperature. + Daily Minimum Near-Surface Air Temperature + none + K + area: mean time: minimum within days time: mean over days + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + ts + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_ts_average + surface_temperature + Surface temperature (skin for open ocean) + Surface Temperature + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + landIce,land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + LImon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + snc + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_snc_average + ISBA snow cover over bare ground comparable with stallite data (Psng in equation C1 in Decharme et al. 2016) + surface_snow_area_fraction + Fraction of each grid cell that is occupied by snow that rests on land portion of cell. + Snow Area Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + lai + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_lai_average + leaf_area_index + A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows. + Leaf Area Index + none + 1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + mrso + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_mrso_average + mass_content_of_water_in_soil + the mass per unit area (summed over all soil layers) of water in all phases. + Total Soil Moisture Content + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + areacella + 2 + mon + https://furtherinfo.es-doc.org/False.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + False + piControl + False + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + mrsos + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP7_mrsos_average + mass_content_of_water_in_soil_layer + the mass of water in all phases in a thin surface soil layer. + Moisture in Upper Portion of Soil Column + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + Software current_cmip7_dr_software - Content test + current_version + historical + CMIP6 historical + CMIP6 historical + all-forcing simulation of the recent past + 2 + 6hr + https://furtherinfo.es-doc.org/DEV.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-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 http://www.umr-cnrm.fr/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. + DEV + piControl + DEV + CMIP + CNRM-ESM2-1 + days since 1850-01-01 00:00:00 + r1i1p1f2 + standard + 36524.0D + 0.0D + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: TACTIC_v2 +atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) +atmosChem: REPROBUS-C_v2 +land: Surfex 8.0c +ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: Pisces 2.s +seaIce: Gelato 6.1 + CNRM-ESM2-1 + AOGCM BGC AER CHEM + none + none + 6hr + CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical + wilt + r1i1p1f2 + cv=6.2.3.0-7-g2019642 + CNRM-ESM2-1_historical_r1i1p1f2_v2 + 7040f60f6bf3118dc6c58b9fb8727d87 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @wilt_average + 100 * ISBA Wilting Point in m3/m3 + wilt + None + Wilting Point over land + none + fraction + time: mean + 900 s + + + + + + + + + + + + + + + + @CMIP7_pfull + @CMIP7_ta_with_instant + + + + @CMIP7_zg_with_instant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/test_AOESM_historical_CMIP7_stdCMIP6/reference_outputs/dr2xml_trip.xml b/tests/test_AOESM_historical_CMIP7_stdCMIP6/reference_outputs/dr2xml_trip.xml new file mode 100644 index 00000000..d6207011 --- /dev/null +++ b/tests/test_AOESM_historical_CMIP7_stdCMIP6/reference_outputs/dr2xml_trip.xml @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/test_RCSM6_CTL/reference_outputs/dr2xml_log b/tests/test_RCSM6_CTL/reference_outputs/dr2xml_log index aee2573b..a9256819 100644 --- a/tests/test_RCSM6_CTL/reference_outputs/dr2xml_log +++ b/tests/test_RCSM6_CTL/reference_outputs/dr2xml_log @@ -203,7 +203,7 @@ processing file current_directory/test_RCSM6_CTL/input/xml/ping_surfex.xml: OK current_directory/test_RCSM6_CTL/input/xml/ping_surfex.xml processing file current_directory/test_RCSM6_CTL/input/xml/ping_trip.xml: OK current_directory/test_RCSM6_CTL/input/xml/ping_trip.xml -Model component AOGCM is required by CMIP6 CV for experiment historical and not present (present=['AORCM', 'AER']) +Model component aogcm is required by CMIP6 CV for experiment historical and not present (present=['aorcm', 'aer']) Reading split_freqs from file current_directory/test_RCSM6_CTL/input/home_data_request/split_freqs.dat TBD: Cannot yet compute maximum hourly rate for prhmax in table Eday -> averaging TBD: Cannot yet compute maximum hourly rate for prhmax in table Eday -> averaging @@ -1535,7 +1535,7 @@ processing file current_directory/test_RCSM6_CTL/input/xml/ping_surfex.xml: OK current_directory/test_RCSM6_CTL/input/xml/ping_surfex.xml processing file current_directory/test_RCSM6_CTL/input/xml/ping_trip.xml: OK current_directory/test_RCSM6_CTL/input/xml/ping_trip.xml -Model component AOGCM is required by CMIP6 CV for experiment historical and not present (present=['AORCM', 'AER']) +Model component aogcm is required by CMIP6 CV for experiment historical and not present (present=['aorcm', 'aer']) Reading split_freqs from file current_directory/test_RCSM6_CTL/input/home_data_request/split_freqs.dat file_def written as current_directory/test_RCSM6_CTL/test_outputs/dr2xml_trip.xml diff --git a/tests/test_amip_ESM_DR12/__init__.py b/tests/test_amip_ESM_DR12/__init__.py new file mode 100644 index 00000000..febf34fa --- /dev/null +++ b/tests/test_amip_ESM_DR12/__init__.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +Tests for simulation amip ESM +""" + +from __future__ import division, print_function, unicode_literals, absolute_import + +import copy +import unittest +import sys +import os + +sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) + +from tests.tools_for_tests import TestSimulation, create_config_elements + + +class TestAmipESM_DR12(unittest.TestCase, TestSimulation): + """ + Test output generation for amip_ESM + """ + def setUp(self): + config = create_config_elements( + simulation="amip_ESM_DR12", + contexts=["surfex", "trip"], + year="1979", + enddate="19800101", + pingfiles="{path_xml}/ping_surfex.xml {path_xml}/ping_trip.xml", + attributes=[('EXPID', 'amipESM-CEDS2021-aerdiffus'), + ('CMIP6_CV_version', 'cv=6.2.3.0-7-g2019642'), + ('dr2xml_md5sum', '7a4dce8aef3dd4c1443dcfc57c36cbe7')] + ) + for elt in config: + setattr(self, elt, copy.deepcopy(config[elt])) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_amip_ESM_DR12/input/CV b/tests/test_amip_ESM_DR12/input/CV new file mode 120000 index 00000000..26d2058b --- /dev/null +++ b/tests/test_amip_ESM_DR12/input/CV @@ -0,0 +1 @@ +../../common/CMIP6_CVs_last \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/input/DR_config b/tests/test_amip_ESM_DR12/input/DR_config new file mode 120000 index 00000000..51fc394f --- /dev/null +++ b/tests/test_amip_ESM_DR12/input/DR_config @@ -0,0 +1 @@ +../../common/dr_cmip6_config/1_2 \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/input/__init__.py b/tests/test_amip_ESM_DR12/input/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_amip.txt b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_amip.txt new file mode 120000 index 00000000..ab02fdb4 --- /dev/null +++ b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_amip.txt @@ -0,0 +1 @@ +../../../common/home_data_request/home_data_request_amip.txt \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_arpege_ESM_AddOn.txt b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_arpege_ESM_AddOn.txt new file mode 120000 index 00000000..c8f0fe5e --- /dev/null +++ b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_arpege_ESM_AddOn.txt @@ -0,0 +1 @@ +../../../common/home_data_request/home_data_request_arpege_ESM_AddOn.txt \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_arpege_GCM.txt b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_arpege_GCM.txt new file mode 120000 index 00000000..de75dcf1 --- /dev/null +++ b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_arpege_GCM.txt @@ -0,0 +1 @@ +../../../common/home_data_request/home_data_request_arpege_GCM.txt \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_surfex_ESM_AddOn.txt b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_surfex_ESM_AddOn.txt new file mode 120000 index 00000000..36c70e6c --- /dev/null +++ b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_surfex_ESM_AddOn.txt @@ -0,0 +1 @@ +../../../common/home_data_request/home_data_request_surfex_ESM_AddOn.txt \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_surfex_GCM.txt b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_surfex_GCM.txt new file mode 120000 index 00000000..6c12078c --- /dev/null +++ b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_surfex_GCM.txt @@ -0,0 +1 @@ +../../../common/home_data_request/home_data_request_surfex_GCM.txt \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_trip_ESM_AddOn.txt b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_trip_ESM_AddOn.txt new file mode 120000 index 00000000..51c7e579 --- /dev/null +++ b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_trip_ESM_AddOn.txt @@ -0,0 +1 @@ +../../../common/home_data_request/home_data_request_trip_ESM_AddOn.txt \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_trip_GCM.txt b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_trip_GCM.txt new file mode 120000 index 00000000..4400a0c3 --- /dev/null +++ b/tests/test_amip_ESM_DR12/input/home_data_request/home_data_request_trip_GCM.txt @@ -0,0 +1 @@ +../../../common/home_data_request/home_data_request_trip_GCM.txt \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/input/lab_and_model_settings.py b/tests/test_amip_ESM_DR12/input/lab_and_model_settings.py new file mode 100644 index 00000000..28108a68 --- /dev/null +++ b/tests/test_amip_ESM_DR12/input/lab_and_model_settings.py @@ -0,0 +1,228 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + + +lab_and_model_settings = { + 'project_settings': "CMIP6_esgvoc", + 'path_to_parse': '{path_xml}/', + 'data_request_content_version': '{path_DR_config}', + 'comment': '', + 'tierMax': 1, + 'references': 'http://www.umr-cnrm.fr/cmip6/references', + 'excluded_tables': ['Eyr', 'Oyr', 'Odec', 'IfxAnt', 'ImonAnt'], + 'realms_per_context': { + 'nemo': ['seaIce', 'ocean', 'ocean seaIce', 'ocnBgChem', 'seaIce ocean'], + 'surfex': ['atmos', 'atmos atmosChem', 'atmosChem', 'aerosol', 'atmos land', 'land', 'landIce land', 'aerosol', + 'land landIce', 'landIce'], + 'trip': [] + }, + 'fx_from_file': { + 'areacella': { + 'complete': { + 'HR': 'areacella_complete_CMIP6_tl359', + 'LR': 'areacella_complete_CMIP6_tl127' + } + } + }, + 'grid_choice': { + 'CNRM-ESM2-1': 'LR', + 'CNRM-ESM2-1-HR': 'HR', + 'CNRM-CM6-1': 'LR', + 'CNRM-CM6-1-HR': 'HR' + }, + 'print_stats_per_var_label': True, + 'vertical_interpolation_sample_freq': '3h', + 'vertical_interpolation_operation': 'instant', + 'orphan_variables': { + 'nemo': [''], + 'surfex': ['siconca'], + 'trip': ['areacellr', 'dgw', 'drivw', 'qgwr', 'rivi', 'rivo', 'waterDpth', 'wtd', 'fwtd', 'fldf', 'carbw', + 'carbdis', 'carbin'] + }, + 'CFsubhr_frequency': '2ts', + 'excluded_request_links': ['RFMIP-AeroIrf'], + 'max_priority': 1, + 'info_url': 'http://www.umr-cnrm.fr/cmip6/', + 'use_cmorvar_label_in_filename': False, + 'allow_duplicates_in_same_table': False, + 'allow_pseudo_standard_names': True, + 'sampling_timestep': { + 'HR': { + 'nemo': 1800.0, + 'surfex': 900.0, + 'trip': 1800.0 + }, + 'LR': { + 'nemo': 1800.0, + 'surfex': 900.0, + 'trip': 1800.0 + } + }, + 'sizes': { + 'HR': [1514100, 75, 259200, 91, 30, 14, 128], + 'LR': [106428, 75, 32768, 91, 30, 14, 128] + }, + 'source_types': { + 'CNRM-ESM2-1': 'AOGCM BGC AER CHEM', + 'CNRM-ESM2-1-HR': 'AOGCM BGC AER', + 'CNRM-CM6-1': 'AOGCM', + 'CNRM-CM6-1-HR': 'AOGCM' + }, + 'configurations': { + 'AOESMHR': ('CNRM-ESM2-1-HR', 'AOGCM BGC AER', []), + 'AESM': ('CNRM-ESM2-1', 'AGCM BGC AER CHEM', ['nemo']), + 'OESMHR': ('CNRM-ESM2-1-HR', 'OGCM BGC', ['surfex', 'trip']), + 'AOESM': ('CNRM-ESM2-1', 'AOGCM BGC AER CHEM', []), + 'LESM': ('CNRM-ESM2-1', 'LAND BGC', ['nemo']), + 'AGCM': ('CNRM-CM6-1', 'AGCM', ['nemo']), + 'OGCMHR': ('CNRM-CM6-1-HR', 'OGCM', ['surfex', 'trip']), + 'AOGCMHR': ('CNRM-CM6-1-HR', 'AOGCM', []), + 'AGCMHR': ('CNRM-CM6-1-HR', 'AGCM', ['nemo']), + 'OESM': ('CNRM-ESM2-1', 'OGCM BGC', ['surfex', 'trip']), + 'AESMHR': ('CNRM-ESM2-1-HR', 'AGCM BGC AER', []), + 'AOGCM': ('CNRM-CM6-1', 'AOGCM', []), + 'LGCM': ('CNRM-CM6-1', 'LAND', ['nemo']), + 'OGCM': ('CNRM-CM6-1', 'OGCM', ['surfex', 'trip']) + }, + 'grids': { + 'HR': { + 'nemo': ['gn', '', '', '25 km', 'native ocean tri-polar grid with 1.47 M ocean cells'], + 'surfex': ['gr', 'complete', 'glat', '50 km', 'data regridded to a 359 gaussian grid (360x720 latlon) from' + ' a native atmosphere T359l reduced gaussian grid'], + 'trip': ['gn', '', '', '50 km', 'regular 1/2 deg lat-lon grid'] + }, + 'LR': { + 'nemo': ['gn', '', '', '100 km', 'native ocean tri-polar grid with 105 k ocean cells'], + 'surfex': ['gr', 'complete', 'glat', '250 km', 'data regridded to a T127 gaussian grid (128x256 latlon) ' + 'from a native atmosphere T127l reduced gaussian grid'], + 'trip': ['gn', '', '', '50 km', 'regular 1/2 deg lat-lon grid'] + } + }, + 'excluded_pairs': [('sfdsi', 'SImon')], + 'dr2xml_manages_enddate': True, + 'excluded_vars': ['pfull', 'phalf', 'n2oClim', 'ch4globalClim', 'co2massClim', 'n2oglobalClim', 'ch4Clim', 'o3Clim', + 'co2Clim'], + 'too_long_periods': ['dec', 'yr'], + 'ping_variables_prefix': 'CMIP6_', + 'debug_parsing': False, + 'comments': { + 'htovovrt': 'This variable has an axis labelled j-mean, while CMIP6 calls for an axis labelled latitude. We want here to pinpoint that we provide values which are averaged over the X-axis of our tripolar grid, along which latitude do vary. This axis begins South.Please refer to the lat/lon coordinate variables in this file for further details.', + 'tpf': 'Region where always 0m correspond to none-permafrost areas', + 'sivols': 'The sector attribute is erroneous, this variable is indeed integrated over the southern hemisphere.', + 'snc': 'ISBA snow cover over bare ground comparable with stallite data (Psng in equation C1 in Decharme et al. 2016)', + 'siextentn': 'The sector attribute is erroneous, this variable is indeed integrated over the northern hemisphere.', + 'rivi': 'CTRIP river grid-cell inflow considering upstream grdi-cell water fluxes and total runoff input (mrro) from ISBA', + 'snovols': 'The sector attribute is erroneous, this variable is indeed integrated over the southern hemisphere.', + 'snovoln': 'The sector attribute is erroneous, this variable is indeed integrated over the northern hemisphere.', + 'hfbasinpmad': 'This variable has an axis labelled j-mean, while CMIP6 calls for an axis labelled latitude. We want here to pinpoint that we provide values which are averaged over the X-axis of our tripolar grid, along which latitude do vary. This axis begins South.Please refer to the lat/lon coordinate variables in this file for further details.', + 'dgw': 'CTRIP river water budget = (drivw+dgw)/dt - (rivi-rivo)*1000/areacellr - qgwr', + 'dcw': 'ISBA land water budget = (dslw+dcw+dsn+dsw)/dt - (pr-et-mrro) ; dt is given by netcdf attribute : interval_operation', + 'siextents': 'The sector attribute is erroneous, this variable is indeed integrated over the southern hemisphere.', + 'sivoln': 'The sector attribute is erroneous, this variable is indeed integrated over the northern hemisphere.', + 'zomsf_3bsn': 'This variable has an axis labelled j-mean, while CMIP6 calls for an axis labelled latitude. We want here to pinpoint that we provide values which are averaged over the X-axis of our tripolar grid, along which latitude do vary. This axis begins South.Please refer to the lat/lon coordinate variables in this file for further details.', + 'hfbasin': 'This variable has an axis labelled j-mean, while CMIP6 calls for an axis labelled latitude. We want here to pinpoint that we provide values which are averaged over the X-axis of our tripolar grid, along which latitude do vary. This axis begins South.Please refer to the lat/lon coordinate variables in this file for further details.', + 'sltbasin': 'This variable has an axis labelled j-mean, while CMIP6 calls for an axis labelled latitude. We want here to pinpoint that we provide values which are averaged over the X-axis of our tripolar grid, along which latitude do vary. This axis begins South.Please refer to the lat/lon coordinate variables in this file for further details.', + 'dslw': 'ISBA land water budget = (dslw+dcw+dsn+dsw)/dt - (pr-et-mrro) ; dt is given by netcdf attribute : interval_operation', + 'dtes': 'ISBA land energy budget = (dtes+dtesn)/dt + hfmlt - hfdsl ; dt is given by netcdf attribute : interval_operation', + 'htovgyre ': 'This variable has an axis labelled j-mean, while CMIP6 calls for an axis labelled latitude. We want here to pinpoint that we provide values which are averaged over the X-axis of our tripolar grid, along which latitude do vary. This axis begins South.Please refer to the lat/lon coordinate variables in this file for further details.', + 'fldcapacity': '100 * ISBA Field Capacity in m3/m3', + 'sltovovrt': 'This variable has an axis labelled j-mean, while CMIP6 calls for an axis labelled latitude. We want here to pinpoint that we provide values which are averaged over the X-axis of our tripolar grid, along which latitude do vary. This axis begins South.Please refer to the lat/lon coordinate variables in this file for further details.', + 'dsw': 'Change in floodplains water ; ISBA land water budget = (dslw+dcw+dsn+dsw)/dt - (pr-et-mrro) ; dt is given by netcdf attribute : interval_operation', + 'sw': 'Surface floodplains water storage (e.g. Decharme et al. 2018)', + 'siareas': 'The sector attribute is erroneous, this variable is indeed integrated over the southern hemisphere.', + 'siarean': 'The sector attribute is erroneous, this variable is indeed integrated over the northern hemisphere.', + 'wilt': '100 * ISBA Wilting Point in m3/m3', + 'eow': 'Liquid water evaporation from floodplains (e.g. Decharme et al. 2018)', + 'prsnsn': 'In ISBA, prsnsn is always 1 because all snowfall falls onto snowpack', + 'dtesn': 'ISBA land energy budget = (dtes+dtesn)/dt + hfmlt - hfdsl ; dt is given by netcdf attribute : interval_operation', + 'sltnortha': 'This variable has an axis labelled j-mean, while CMIP6 calls for an axis labelled latitude. We want here to pinpoint that we provide values which are averaged over the X-axis of our tripolar grid, along which latitude do vary. This axis begins South.Please refer to the lat/lon coordinate variables in this file for further details.', + 'mrtws': 'ISBA-CTRIP total water storage (soil+canopy+snow+rivers+groundwater+floodplains; e.g. Decharme et al. 2018)', + 'sltovgyre': 'This variable has an axis labelled j-mean, while CMIP6 calls for an axis labelled latitude. We want here to pinpoint that we provide values which are averaged over the X-axis of our tripolar grid, along which latitude do vary. This axis begins South.Please refer to the lat/lon coordinate variables in this file for further details.', + 'dsn': 'ISBA land water budget = (dslw+dcw+dsn+dsw)/dt - (pr-et-mrro) ; dt is given by netcdf attribute : interval_operation', + 'dmlt': 'Region where always 12m correspond to none-permafrost areas', + 'drivw': 'CTRIP river water budget = (drivw+dgw)/dt - (rivi-rivo)*1000/areacellr - qgwr' + }, + 'max_file_size_in_floats': 4000000000.0, + 'non_standard_attributes': { + 'xios_commit': '1442-shuffle', + 'nemo_gelato_commit': '49095b3accd5d4c_6524fe19b00467a', + 'arpege_minor_version': '6.3.2' + }, + 'special_timestep_vars': { + '60mi': ['cllcalipso', 'clmcalipso', 'clhcalipso', 'cltcalipso', 'cllcalipsoice', 'clmcalipsoice', + 'clhcalipsoice', 'cltcalipsoice', 'cllcalipsoliq', 'clmcalipsoliq', 'clhcalipsoliq', 'cltcalipsoliq', + 'cllcalipsoun', 'clmcalipsoun', 'clhcalipsoun', 'cltcalipsoun', 'clcalipso', 'clcalipsoice', + 'clcalipsoliq', 'clcalipsoun', 'clcalipsotmp', 'clcalipsotmpice', 'clcalipsotmpliq', 'clcalipsotmpun', + 'cfadLidarsr532', 'parasolRefl', 'parasolCRefl', 'cltlidarradar', 'clcalipso2', 'cfadDbze94', + 'cltisccp', 'pctisccp', 'tauisccp', 'albisccp', 'meantbisccp', 'meantbclrisccp', 'clisccp', 'cltmodis', + 'clwmodis', 'climodis', 'clhmodis', 'clmmodis', 'cllmodis', 'tautmodis', 'tauwmodis', 'tauimodis', + 'reffclwmodis', 'reffclimodis', 'pctmodis', 'lwpmodis', 'iwpmodis', 'clmodis', 'jpdftaureliqmodis', + 'jpdftaureicemodis', 'clmisr'] + }, + 'institution_id': 'CNRM-CERFACS', + 'excluded_spshapes': ['XYA-na', 'XYG-na', 'na-A'], + 'mips': { + 'HR': set(['ScenarioMIP', 'CMIP', 'CMIP6', 'OMIP']), + 'LR': set(['C4MIP', 'DCPP', 'CORDEX', 'ISMIP6', 'GMMIP', 'RFMIP', 'LUMIP', 'CFMIP', 'FAFMIP', 'DAMIP', + 'AerChemMIP', 'SIMIP', 'CMIP', 'PMIP', 'CMIP6', 'ScenarioMIP', 'LS3MIP', 'OMIP', 'GeoMIP', + 'HighResMIP']) + }, + 'non_standard_axes': { + 'siline': 'siline', + 'dbze': 'dbze', + 'klev': 'alevel', + 'soil_carbon_pools': ('soilpools', 'fast medium slow'), + 'effectRadL': 'effectRadL', + 'vegtype': ('vegtype', 'Bare_soil Rock Permanent_snow Temperate_broad-leaved_decidus Boreal_needleaf_evergreen Tropical_broad-leaved_evergreen C3_crop C4_crop Irrigated_crop C3_grass C4_grass Wetland Tropical_broad-leaved_decidus Temperate_broad-leaved_evergreen Temperate_needleaf_evergreen Boreal_broad-leaved_decidus Boreal_needleaf_decidus Tundra_grass Shrub'), + 'sza5': 'sza5', + 'effectRadIc': 'effectRadIc', + 'oline': 'oline', + 'basin': ('basin', 'global_ocean atlantic_arctic_ocean indian_pacific_ocean dummy dummy'), + 'klev_half': 'alevel' + }, 'branching': { + 'CNRM-ESM2-1': { + 'historical': (1850, [1850, 1883, 1941]) + }, + 'CNRM-CM6-1': { + 'historical': (1850, [1850, 1883, 1941, 1960, 1990, 2045, 2079, 2108, 2214, 2269]) + }, + 'CNRM-CM6-1-HR': { + 'historical': (1850, [1850, 1883, 1941]) + } + }, + 'excluded_vars_per_config': { + 'AGCM': ['ch4', 'co2', 'co', 'concdust', 'ec550aer', 'h2o', 'hcho', 'hcl', 'hno3', 'mmrbc', 'mmrdust', 'mmroa', + 'mmrso4', 'mmrss', 'n2o', 'no2', 'no', 'o3Clim', 'o3loss', 'o3prod', 'oh', 'so2', 'mmrpm1', 'fco2antt', + 'fco2fos', 'fco2nat', 'loadbc', 'loaddust', 'loadoa', 'loadso4', 'loadss', 'oxloss', 'oxprod', 'vmrox', + 'bry', 'cly', 'ho2', 'meanage', 'noy', 'drybc', 'drydust', 'dryoa', 'dryso2', 'dryso4', 'dryss', + 'emibc', 'emidust', 'emioa', 'emiso2', 'emiso4', 'emiss', 'od440aer', 'od870aer', 'od550lt1aer', + 'wetbc', 'wetdust', 'wetoa', 'wetso4', 'wetss', 'cLand', 'cSoil', 'fAnthDisturb', 'fDeforestToProduct', + 'fFireNat', 'fLuc', 'fProductDecomp', 'netAtmosLandCO2Flux', 'od443dust', 'od865dust', 'sconcdust', + 'sconcso4', 'sconcss', 'sedustCI', 'burntFractionAll', 'cLitter', 'cProduct', 'cVeg', 'fFire', + 'fLitterSoil', 'fVegLitter', 'nbp', 'shrubFrac'], + 'AESM': ['co2mass', 'ch4global', 'n2oglobal'], + 'AOGCM': ['ch4', 'co2', 'co', 'concdust', 'ec550aer', 'h2o', 'hcho', 'hcl', 'hno3', 'mmrbc', 'mmrdust', 'mmroa', + 'mmrso4', 'mmrss', 'n2o', 'no2', 'no', 'o3Clim', 'o3loss', 'o3prod', 'oh', 'so2', 'mmrpm1', + 'fco2antt', 'fco2fos', 'fco2nat', 'loadbc', 'loaddust', 'loadoa', 'loadso4', 'loadss', 'oxloss', + 'oxprod', 'vmrox', 'bry', 'cly', 'ho2', 'meanage', 'noy', 'drybc', 'drydust', 'dryoa', 'dryso2', + 'dryso4', 'dryss', 'emibc', 'emidust', 'emioa', 'emiso2', 'emiso4', 'emiss', 'od440aer', 'od870aer', + 'od550lt1aer', 'wetbc', 'wetdust', 'wetoa', 'wetso4', 'wetss', 'cLand', 'cSoil', 'fAnthDisturb', + 'fDeforestToProduct', 'fFireNat', 'fLuc', 'fProductDecomp', 'netAtmosLandCO2Flux', 'od443dust', + 'od865dust', 'sconcdust', 'sconcso4', 'sconcss', 'sedustCI', 'burntFractionAll', 'cLitter', + 'cProduct', 'cVeg', 'fFire', 'fLitterSoil', 'fVegLitter', 'nbp', 'shrubFrac'], + 'LGCM': ['ch4', 'co2', 'hur', 'hus', 'n2o', 'o3', 'ta', 'ua', 'va', 'wap', 'zg', 'clt', 'ccb', 'cct', 'ci', + 'clivi', 'clt', 'clwvi', 'evspsbl', 'fco2antt', 'fco2fos', 'pr', 'prc', 'prsn', 'prw', 'ps', 'psl', + 'rldscs', 'rlut', 'rlutcs', 'rsdscs', 'rsdt', 'rsuscs', 'rsut', 'rsutcs', 'ch4global', 'co2mass', + 'n2oglobal', 'mc', 'cl', 'cli', 'clw'], + 'AOESM': ['co2mass', 'ch4global', 'n2oglobal'], + 'LESM': ['ch4', 'co2', 'hur', 'hus', 'n2o', 'o3', 'ta', 'ua', 'va', 'wap', 'zg', 'clt', 'ccb', 'cct', 'ci', + 'clivi', 'clt', 'clwvi', 'evspsbl', 'fco2antt', 'fco2fos', 'pr', 'prc', 'prsn', 'prw', 'ps', 'psl', + 'rldscs', 'rlut', 'rlutcs', 'rsdscs', 'rsdt', 'rsuscs', 'rsut', 'rsutcs', 'ch4global', 'co2mass', + 'n2oglobal', 'mc', 'cl', 'cli', 'clw'] + }, + 'allow_tos_3hr_1deg': True, + 'contact': 'contact.cmip@meteo.fr', + 'compression_level': 4, + 'grid_policy': 'adhoc', + 'bytes_per_float': 2.4 +} \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/input/simulation_settings.py b/tests/test_amip_ESM_DR12/input/simulation_settings.py new file mode 100644 index 00000000..adf547fb --- /dev/null +++ b/tests/test_amip_ESM_DR12/input/simulation_settings.py @@ -0,0 +1,34 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + + +simulation_settings ={ + 'comment': '', + 'listof_home_vars': '{path_homedr}/home_data_request_arpege_GCM.txt ' + '{path_homedr}/home_data_request_surfex_GCM.txt ' + '{path_homedr}/home_data_request_trip_GCM.txt ' + '{path_homedr}/home_data_request_arpege_ESM_AddOn.txt ' + '{path_homedr}/home_data_request_surfex_ESM_AddOn.txt ' + '{path_homedr}/home_data_request_trip_ESM_AddOn.txt ' + '{path_homedr}/home_data_request_amip.txt ', + 'child_time_ref_year': 1850, + 'variant_info': '', + 'parent_time_ref_year': 1850, + 'physics_index': 1, + 'excluded_vars': [], + 'excluded_tables': ['3hr', '6hrLev', '6hrPlev', '6hrPlevPt', 'AERhr', 'CF3hr', 'CFsubhr', 'E1hr', 'E3hr'], + 'sub_experiment': 'none', + 'path_extra_tables': "{path_tables}", + 'realization_index': 1, + 'comments': {}, + 'forcing_index': 3, + 'branch_year_in_child': 1850, + 'expid_in_filename': 'amip', + 'configuration': 'AESM', + 'sub_experiment_id': 'none', + 'branch_method': 'standard', + 'initialization_index': 1, + 'experiment_id': 'amip', + 'branch_year_in_parent': 1850, + 'history': 'none' +} \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/input/tables b/tests/test_amip_ESM_DR12/input/tables new file mode 120000 index 00000000..598fff67 --- /dev/null +++ b/tests/test_amip_ESM_DR12/input/tables @@ -0,0 +1 @@ +../../common/Tables \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/input/xml b/tests/test_amip_ESM_DR12/input/xml new file mode 120000 index 00000000..24386d4c --- /dev/null +++ b/tests/test_amip_ESM_DR12/input/xml @@ -0,0 +1 @@ +../../common/xml_files \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/reference_outputs/dr2xml_log b/tests/test_amip_ESM_DR12/reference_outputs/dr2xml_log new file mode 100644 index 00000000..3673cde0 --- /dev/null +++ b/tests/test_amip_ESM_DR12/reference_outputs/dr2xml_log @@ -0,0 +1,2430 @@ +sync universe +Universe is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +sync projects +Project cmip6 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +Project cmip7 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository + + ************************************************** +* +* dr2xml version: current_version +* CMIP6 conventions version: v6.2.4 +* CMIP6 Data Request version: current_cmip6_dr + +* + ************************************************** + +************************************************** + +Processing context surfex + +************************************************** + +Number of Request Links which apply to MIPS ['AerChemMIP', 'C4MIP', 'CFMIP', 'CMIP', 'CMIP6', 'CORDEX', 'DAMIP', 'DCPP', 'FAFMIP', 'GMMIP', 'GeoMIP', 'HighResMIP', 'ISMIP6', 'LS3MIP', 'LUMIP', 'OMIP', 'PMIP', 'RFMIP', 'SIMIP', 'ScenarioMIP'] is: 263 +Number of Request Links after filtering by excluded_request_links is: 262 +Number of Request Links after filtering by included_request_links is: 262 +Filtering for experiment amip, covering years [ 1979 , 2014 ] in DR +Number of Request Links which apply to experiment amip member 1 and MIPs ['AerChemMIP', 'C4MIP', 'CFMIP', 'CMIP', 'CMIP6', 'CORDEX', 'DAMIP', 'DCPP', 'FAFMIP', 'GMMIP', 'GeoMIP', 'HighResMIP', 'ISMIP6', 'LS3MIP', 'LUMIP', 'OMIP', 'PMIP', 'RFMIP', 'SIMIP', 'ScenarioMIP'] is: 109 +Number of (CMOR variable, grid) pairs for these requestLinks is: 1391 +Number once filtered by excluded/included vars and tables and spatial shapes is: 1132 +Number of distinct CMOR variables (whatever the grid): 673 + These variables will be processed with multiple grids (rerun with print_multiple_grids set to True for details): ['tos'] +Number of distinct var labels is: 517 +Number of simplified vars is: 673 +Issues with standard names are: [] +homevars file: current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_arpege_GCM.txt current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_surfex_GCM.txt current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_trip_GCM.txt current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_arpege_ESM_AddOn.txt current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_surfex_ESM_AddOn.txt current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_trip_ESM_AddOn.txt current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_amip.txt +For extra table CNRM_HOMEPmon (which has 9 variables): + Variables which dim was found in extra coordinates table: + Plev39hm: co no2 o3 + + plev7hm: hus ta ua va wap zg + + Dynamical XY-xxx spatial shapes (shapes not found in DR): + XY-Plev39hm: co no2 o3 + + XY-plev7hm: hus ta ua va wap zg + +For extra table CNRM_HOMALmon (which has 93 variables): + Variables which dim was found in extra coordinates table: + temp: clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun + + Dynamical XY-xxx spatial shapes (shapes not found in DR): + XY-sza5: parasolCRefl + + XY-tau|plev7c: clmodis + + XY-temp: clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun + +For extra table CNRM_HOMAL3hrPt (which has 93 variables): + Variables which dim was found in extra coordinates table: + temp: clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun + + Dynamical XY-xxx spatial shapes (shapes not found in DR): + XY-sza5: parasolCRefl + + XY-tau|plev7c: clmodis + + XY-temp: clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun + +Number of 'cmor', 'dev' and 'perso' among home variables: 245 +Number of 'extra' among home variables: 132 +homevars list: psl ps pr prsn prc rsdscs rsuscs rldscs rsdt rsut rsutcs rsutaf rsutcsaf rlut rlutcs rlutaf rlutcsaf prw clt clwvi clivi intuaw intvaw intuadse intvadse toz ta ua va zg hus hur wap ztp ptp clc cls clic clis clwc clws mcd mcu clc cls clic clis clwc clws prlsns prlsprof prcprof prsnc ta zfull zhalf hus ua va wap tas rsds rsus rlds rlus mrso mrsos mrfso mrros mrro tsl snd snw snc lwsnl mrtws dmlt prveg gpp npp ts evspsbl evspsblpot sbl hfls hfss tasmin tasmax hfdsl albsn cw rzwc mrsow et uas vas sfcWind sfcWindmax hurs huss tauu tauv wtd rivo od550aer od550ss od550dust od550so4 od550bc od550oa abs550aer emiso2 emiss emidust emiso4 emibc emioa dryso2 dryss drydust dryso4 drybc dryoa wetss wetdust wetso4 wetbc wetoa sconcss sconcdust sconcso4 bry ch4 cly h2o hcl hno3 ho2 meanage n2o noy o3 oh lai gppGrass gppTree ra raGrass raTree rh rhSoil rhLitter rhGrass rhTree nppGrass nppTree nep cVeg cVegGrass cVegTree cLitter cSoil cSoilFast cSoilSlow cSoilGrass cSoilTree cSoilMedium cProduct cLand cLeaf cStem cWood cRoot cLitterSurf cLitterSubSurf cLitterBelow cLitterGrass cLitterTree fVegLitter fLitterSoil burntFractionAll fFireNat fFireAll fVegFire fDeforestToAtmos fDeforestToProduct fProductDecomp fLuc nbp cSoilPools tSoilPools airmass areacella cdnc clc cltc co co2 cod h2o hcho hcl hno3 hur hus lwp mcu mmrpm1 n2o no no2 o3 o3loss o3prod od870aer oh orog ps rsdsdiff sftlf so2 ta ta tatp tnhus tnhusa tnhusc tnhusmp tnhusscpbl tnt tnta tntc tntmp tntr tntrl tntrs tntscpbl ttop ua ua va va wa zg zg ta ua va zg hus wap cltl cltm clth rluscs rsdsaf rsusaf rldsaf rlusaf rldscsaf rluscsaf rsdscsaf rsuscsaf lcod icod reffclwtopcnrm reffclitop cdnctop RADasy550aer RADssa550aer RADod550aer RADabs550aer cllcalipsoice clmcalipsoice clhcalipsoice cltcalipsoice cllcalipsoliq clmcalipsoliq clhcalipsoliq cltcalipsoliq cllcalipsoun clmcalipsoun clhcalipsoun cltcalipsoun clcalipsoun clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun parasolCRefl cltlidarradar tauisccp meantbisccp meantbclrisccp clhmodis clmmodis cllmodis tautmodis tauwmodis tauimodis reffclwmodis reffclimodis pctmodis lwpmodis iwpmodis clmodis cllcalipsoice clmcalipsoice clhcalipsoice cltcalipsoice cllcalipsoliq clmcalipsoliq clhcalipsoliq cltcalipsoliq cllcalipsoun clmcalipsoun clhcalipsoun cltcalipsoun clcalipsoun clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun parasolCRefl cltlidarradar tauisccp meantbisccp meantbclrisccp clhmodis clmmodis cllmodis tautmodis tauwmodis tauimodis reffclwmodis reffclimodis pctmodis lwpmodis iwpmodis clmodis albsrfc vegstress snct fsat albsrfcLa sndLa icedLa tsLa tmxlLa fldf fwtd o3 co no2 asy550aer ssa550aer od550acldaer od550ssbin1 od550ssbin2 od550dustbin1 od550dustbin2 TACabs550aer sconcbc sconcoa ext550ss ext550dust ext550so4 ext550bc ext550oa necb fDeforestToL fRegrowth burntArea fFireBCarb carbw carbdis carbin +Error: {'varname': 'et', 'realm': 'land', 'freq': 'mon', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. +(cSoilPools Emon) HOMEVar: Spatial and Temporal Shapes specified DO NOT match CMORvar ones. -> Provided: (XY-na, time-point) Expected: (XY-na, time-mean) +Error: {'varname': 'cSoilPools', 'realm': 'land', 'freq': 'mon', 'table': 'Emon'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. +(tSoilPools Emon) HOMEVar: Spatial and Temporal Shapes specified DO NOT match CMORvar ones. -> Provided: (XY-na, time-point) Expected: (XY-na, time-mean) +Error: {'varname': 'tSoilPools', 'realm': 'land', 'freq': 'mon', 'table': 'Emon'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. + +Realms for these CMORvars: aerosol atmos atmos atmosChem atmos land atmosChem land land landIce landIce landIce land ocean ocnBgchem seaIce seaIce ocean +Processing realm 'aerosol' of context 'surfex' +Processing realm 'atmos' of context 'surfex' +The following pairs (variable,table) have been excluded for these reasons: + They are in exclusion list: ('co2Clim', 'Amon') +Processing realm 'atmos atmosChem' of context 'surfex' +The following pairs (variable,table) have been excluded for these reasons: + They are in exclusion list: ('ch4Clim', 'Amon'), ('n2oClim', 'Amon'), ('o3Clim', 'Amon') +Processing realm 'atmos land' of context 'surfex' +Processing realm 'atmosChem' of context 'surfex' +Processing realm 'land' of context 'surfex' +The following pairs (variable,table) have been excluded for these reasons: + They have excluded spatial shape : XYG-na: ('orog', 'ImonGre') +Processing realm 'land landIce' of context 'surfex' +Processing realm 'landIce' of context 'surfex' +The following pairs (variable,table) have been excluded for these reasons: + They have excluded spatial shape : XYG-na: ('sbl', 'ImonGre') +Processing realm 'landIce land' of context 'surfex' +The following pairs (variable,table) have been excluded for these reasons: + They have excluded spatial shape : XYG-na: ('hfls', 'ImonGre'), ('hfss', 'ImonGre'), ('mrroLi', 'ImonGre'), ('prra', 'ImonGre'), ('prsn', 'ImonGre'), ('rlds', 'ImonGre'), ('rlus', 'ImonGre'), ('rsds', 'ImonGre'), ('rsus', 'ImonGre'), ('snc', 'ImonGre'), ('snm', 'ImonGre'), ('ts', 'ImonGre'), ('tsn', 'ImonGre') +processing file current_directory/test_amip_ESM_DR12/input/xml/ping_surfex.xml: +OK current_directory/test_amip_ESM_DR12/input/xml/ping_surfex.xml +processing file current_directory/test_amip_ESM_DR12/input/xml/ping_trip.xml: +OK current_directory/test_amip_ESM_DR12/input/xml/ping_trip.xml +Note: assuming that for albisccp in table CFday is well handled by 'detect_missing' +Note: assuming that for pctisccp in table CFday is well handled by 'detect_missing' +Note: assuming that for albisccp in table CFmon is well handled by 'detect_missing' +Note: assuming that for pctisccp in table CFmon is well handled by 'detect_missing' +TBD: Cannot yet compute maximum hourly rate for prhmax in table Eday -> averaging +Note: assuming that 'time: mean where natural_grasses' for cLitterGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for cLitterTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where natural_grasses' for cSoilGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for cSoilTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where natural_grasses' for cVegGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for cVegTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where natural_grasses' for gppGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for gppTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where natural_grasses' for nppGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for nppTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where natural_grasses' for raGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for raTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where natural_grasses' for rhGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for rhTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where vegetation' for vegHeight in table Emon is well handled by 'detect_missing' +Warning: issue when analyzing cell_time_method area: sum for areacellg in table IfxGre, assuming it is once +Note: assuming that 'time: mean where ice_sheet' for tas in table ImonGre is well handled by 'detect_missing' +Will not explicitly handle time: mean (with samples weighted by snow mass) for agesno in table LImon -> averaging +Note: assuming that 'time: mean where ice_sheet' for hflsIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for hfssIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for mrroIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for orogIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for prraIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for prsnIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for rldsIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for rlusIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for rsdsIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for rsusIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for sblIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for sncIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for snmIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for tasIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for tsIs in table LImon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for tsnIs in table LImon is well handled by 'detect_missing' +Will not explicitly handle time: mean (with samples weighted by snow mass) for tsn in table LImon -> averaging +Note: assuming that for albisccp in table CFday is well handled by 'detect_missing' +Note: assuming that for pctisccp in table CFday is well handled by 'detect_missing' +Warning: Cannot complement model levels with psol for table fx for frequency 1d +Note: assuming that for albisccp in table CFmon is well handled by 'detect_missing' +Note: assuming that for pctisccp in table CFmon is well handled by 'detect_missing' +Note: assuming that 'time: mean where natural_grasses' for cLitterGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for cLitterTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where natural_grasses' for cSoilGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for cSoilTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where natural_grasses' for cVegGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for cVegTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where natural_grasses' for gppGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for gppTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where natural_grasses' for nppGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for nppTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where natural_grasses' for raGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for raTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where natural_grasses' for rhGrass in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where trees' for rhTree in table Emon is well handled by 'detect_missing' +Note: assuming that 'time: mean where ice_sheet' for tas in table ImonGre is well handled by 'detect_missing' +Will not explicitly handle time: mean (with samples weighted by snow mass) for agesno in table LImon -> averaging +Will not explicitly handle time: mean (with samples weighted by snow mass) for tsn in table LImon -> averaging + +file_def written as current_directory/test_amip_ESM_DR12/test_outputs/dr2xml_surfex.xml + +Skipped variables (i.e. whose alias is not present in the pingfile): +>>> TABLE: AERday 03/11 ----> maxpblz(1) minpblz(1) sfo3max(1) + +>>> TABLE: AERmon 55/124 ----> aoanh(1) bldep(1) c2h2(1) c2h6(1) c3h6(1) c3h8(1) ccn(1) ch3coch3(1) cheaqpso4(1) chegpso4(1) chepasoa(1) chepsoa(1) dms(1) drynh3(1) drynh4(1) drynoy(1) dryo3(1) emiaco(1) emianox(1) emiaoa(1) emibvoc(1) emico(1) emidms(1) emiisop(1) emilnox(1) eminh3(1) eminox(1) emivoc(1) isop(1) jno2(1) lossch4(1) lossco(1) lossn2o(1) mmraerh2o(1) mmrnh4(1) mmrno3(1) mmrpm10(1) mmrpm2p5(1) mmrsoa(1) nh50(1) o3ste(1) od550aerh2o(1) od550bb(1) od550csaer(1) od550no3(1) od550soa(1) pan(1) photo1d(1) pod0(1) reffclwtop(1) tropoz(1) wetnh3(1) wetnh4(1) wetnoy(1) wetso2(1) + +>>> TABLE: Amon 02/59 ----> rtmt(1) sci(1) + +>>> TABLE: CFmon 03/54 ----> edt(1) evu(1) tnhusd(1) + +>>> TABLE: Eday 13/32 ----> ccldncl(1) cldnci(1) cldnvi(1) loadnh4(1) loadno3(1) loadpoa(1) loadsoa(1) prhmax(1) reffcclwtop(1) reffsclwtop(1) rsdscsdiff(1) scldncl(1) zmla(1) + +>>> TABLE: Efx 01/02 ----> sftflf(1) + +>>> TABLE: Emon 59/145 ----> cSoilAbove1m(1) depdust(1) diabdrag(1) fBNF(1) fCLandToOcean(1) fHarvestToProduct(1) fN2O(1) fNAnthDisturb(1) fNLandToOcean(1) fNLitterSoil(1) fNProduct(1) fNVegLitter(1) fNVegSoil(1) fNdep(1) fNfert(1) fNgas(1) fNleach(1) fNloss(1) fNnetmin(1) fNup(1) flashrate(1) lwsrfasdust(1) lwsrfcsdust(1) lwtoaasdust(1) lwtoacsaer(1) lwtoacsdust(1) md(1) mmrno3(1) mrsol(1) nLand(1) nLitter(1) nMineral(1) nProduct(1) nSoil(1) nVeg(1) od550aerso(1) od550so4so(1) pastureFracC3(1) pastureFracC4(1) pr17O(1) pr18O(1) pr2h(1) prsn17O(1) prsn18O(1) prsn2h(1) prw17O(1) prw2H(1) swsrfasdust(1) swsrfcsdust(1) swtoaasdust(1) swtoacsdust(1) tdps(1) tntd(1) treeFracBdlDcd(1) treeFracBdlEvg(1) treeFracNdlDcd(1) treeFracNdlEvg(1) vegHeight(1) wetlandFrac(1) + +>>> TABLE: EmonZ 07/11 ----> epfy(1) epfz(1) jo2(1) jo3(1) utendepfd(1) vtem(1) wtem(1) + +>>> TABLE: Esubhr 01/07 ----> tntd(1) + +>>> TABLE: IfxGre 01/01 ----> areacellg(1) + +>>> TABLE: LImon 17/29 ----> hflsIs(1) hfssIs(1) mrroIs(1) orogIs(1) prraIs(1) prsnIs(1) rldsIs(1) rlusIs(1) rsdsIs(1) rsusIs(1) sblIs(1) sftflf(1) sncIs(1) snmIs(1) tasIs(1) tsIs(1) tsnIs(1) + +>>> TABLE: Lmon 09/46 ----> fGrazing(1) fHarvest(1) fVegSoil(1) pastureFrac(1) shrubFrac(1) treeFracPrimDec(1) treeFracPrimEver(1) treeFracSecDec(1) treeFracSecEver(1) + + + + +Some Statistics on actually written variables per frequency+shape... + E1hrClimMon P1 5: rlut rlutcs rsdt rsut rsutcs + 1hrCM XY-na -------- --- 5 + + 1hrCM -------- -------- --- 5 + + CF3hr P2 8: clc clic clis cls clwc clws ta zfull + E3hrPt P1 1: hus + None3hrPt P1 2: ua va + None3hrPt P3 1: wap + 3hrPt XY-A -------- --- 12 + + CF3hr P2 5: prcprof prlsns prlsprof prsnc zhalf + 3hrPt XY-AH -------- --- 5 + + E3hrPt P1 1: clmisr + 3hrPt XY-H16 -------- --- 1 + + E3hrPt P1 4: cfadDbze94 cfadLidarsr532 clcalipso clcalipso2 + HOMAL3hrPt P1 1: clcalipsoun + 3hrPt XY-H40 -------- --- 5 + + E3hrPt P1 1: clisccp + 3hrPt XY-P7 -------- --- 1 + + E3hrPt P1 7: clhcalipso cllcalipso clmcalipso cltcalipso jpdftaureicemodis jpdftaureliqmodis parasolRefl + HOMAL3hrPt P1 27: clhcalipsoice clhcalipsoliq clhcalipsoun clhmodis cllcalipsoice cllcalipsoliq cllcalipsoun cllmodis clmcalipsoice clmcalipsoliq clmcalipsoun clmmodis cltcalipsoice cltcalipsoliq cltcalipsoun cltlidarradar iwpmodis lwpmodis meantbclrisccp meantbisccp pctmodis reffclimodis reffclwmodis tauimodis tauisccp tautmodis tauwmodis + 3hrPt XY-na -------- --- 34 + + HOMAL3hrPt P1 1: parasolCRefl + 3hrPt XY-sza5 -------- --- 1 + + HOMAL3hrPt P1 1: clmodis + 3hrPt XY-tau|P7C -------- --- 1 + + HOMAL3hrPt P1 4: clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun + 3hrPt XY-temp -------- --- 4 + + 3hrPt -------- -------- --- 64 + + CFday P1 10: cl cli clw hur hus ta ua va wap zg + day XY-A -------- --- 10 + + CFday P1 1: mc + day XY-AH -------- --- 1 + + CFday P1 1: clcalipso + day XY-H40 -------- --- 1 + + Eday P1 2: ua va + day XY-P19 -------- --- 2 + + CFday P1 1: clisccp + day XY-P7 -------- --- 1 + + day P1 6: hur hus ta ua va wap + day XY-P8 -------- --- 6 + + AERday P1 8: cod od550aer toz ua10 zg10 zg100 zg1000 zg500 + CFday P1 21: albisccp ccb cct clhcalipso clivi cllcalipso clmcalipso cltcalipso cltisccp clwvi pctisccp ps rldscs rlutcs rsdscs rsdt rsuscs rsut rsutcs ta700 wap500 + Eday P1 17: clivic clwvic hus850 jpdftaureicemodis jpdftaureliqmodis loadbc loaddust loadoa loadso4 loadss parasolRefl rsdsdiff ta500 ta850 tauu tauv ts + SIday P1 1: siconca + day P1 29: clt hfls hfss hurs hursmax hursmin huss mrro mrso mrsos pr prc prsn psl rlds rlus rlut rsds rsus sfcWind sfcWindmax snc snw tas tasmax tasmin tslsi uas vas + day XY-na -------- --- 76 + + EdayZ P1 4: hus ta va zg + day Y-P19 -------- --- 4 + + EdayZ P1 1: ua + day Y-P39 -------- --- 1 + + day -------- -------- --- 102 + + fx P1 1: zfull + fx XY-A -------- --- 1 + + Efx P1 1: sftgrf + fx P1 6: areacella mrsofc orog rootd sftgif sftlf + fx XY-na -------- --- 7 + + fx -------- -------- --- 8 + + AERmon P1 29: airmass cdnc ch4 co co2 h2o hcho hcl hno3 mmrbc mmrdust mmroa mmrpm1 mmrso4 mmrss n2o no no2 o3 o3loss o3prod oh so2 tntrl tntrs ua va wa zg + Amon P1 3: cl cli clw + CFmon P1 16: clc cls hur hus ta tnhus tnhusa tnhusc tnhusmp tnhusscpbl tnt tnta tntc tntmp tntr tntscpbl + CFmon P2 4: clic clis clwc clws + Emon P1 7: concdust tnhuspbl tnhusscp tntpbl tntrlcs tntrscs tntscp + mon XY-A -------- --- 59 + + Amon P1 1: mc + CFmon P1 17: mcu rld rld4co2 rldcs rldcs4co2 rlu rlu4co2 rlucs rlucs4co2 rsd rsd4co2 rsdcs rsdcs4co2 rsu rsu4co2 rsucs rsucs4co2 + CFmon P2 1: mcd + mon XY-AH -------- --- 19 + + Emon P1 1: clmisr + mon XY-H16 -------- --- 1 + + CFmon P1 1: clcalipso + Emon P1 4: cfadDbze94 cfadLidarsr532 clcalipsoice clcalipsoliq + HOMALmon P1 1: clcalipsoun + mon XY-H40 -------- --- 6 + + Amon P1 11: ch4 co2 hur hus n2o o3 ta ua va wap zg + Emon P1 2: utendnogw utendogw + HOMALmon P1 5: ext550bc ext550dust ext550oa ext550so4 ext550ss + mon XY-P19 -------- --- 18 + + CFmon P1 1: clisccp + mon XY-P7 -------- --- 1 + + HOMEPmon P1 6: hus ta ua va wap zg + mon XY-P7HM -------- --- 6 + + Emon P1 3: hus ua va + mon XY-P7T -------- --- 3 + + HOMEPmon P1 3: co no2 o3 + mon XY-Plev39hm -------- --- 3 + + Emon P1 2: mrsfl mrsll + Lmon P1 1: tsl + mon XY-S -------- --- 3 + + AERmon P1 40: abs550aer cltc cod drybc drydust dryoa dryso2 dryso4 dryss emibc emidust emioa emiso2 emiso4 emiss lwp od440aer od550aer od550bc od550dust od550lt1aer od550oa od550so4 od550ss od870aer ps ptp rlutaf rlutcsaf rsutaf rsutcsaf tatp toz ttop wetbc wetdust wetoa wetso4 wetss ztp + Amon P1 42: ccb cct ci clivi clt clwvi evspsbl fco2antt fco2fos fco2nat hfls hfss hurs huss pr prc prsn prw ps psl rlds rldscs rlus rlut rlutcs rsds rsdscs rsdt rsus rsuscs rsut rsutcs sbl sfcWind tas tasmax tasmin tauu tauv ts uas vas + CFmon P1 11: albisccp clhcalipso cllcalipso clmcalipso cltcalipso cltisccp pctisccp rlut4co2 rlutcs4co2 rsut4co2 rsutcs4co2 + Emon P1 43: cLand cSoil climodis cltmodis clwmodis clwvic cropFracC3 cropFracC4 evspsblpot fAnthDisturb fDeforestToProduct fFireNat fLuc fProductDecomp fracLut grassFracC3 grassFracC4 intuadse intuaw intvadse intvaw jpdftaureicemodis jpdftaureliqmodis loaddust mrlso nep netAtmosLandCO2Flux nwdFracLut od443dust od865dust orog parasolRefl rls rsdsdiff rss sconcdust sconcso4 sconcss sedustCI sfcWindmax uqint vegFrac vqint + Emon P2 24: cLitterGrass cLitterSubSurf cLitterSurf cLitterTree cSoilGrass cSoilTree cStem cVegGrass cVegTree cWood fDeforestToAtmos fFireAll fVegFire gppGrass gppTree mrtws nppGrass nppTree raGrass raTree rhGrass rhLitter rhSoil rhTree + HOMALmon P1 72: RADabs550aer RADasy550aer RADod550aer RADssa550aer TACabs550aer albsrfc albsrfcLa asy550aer burntArea cdnctop clhcalipsoice clhcalipsoliq clhcalipsoun clhmodis cllcalipsoice cllcalipsoliq cllcalipsoun cllmodis clmcalipsoice clmcalipsoliq clmcalipsoun clmmodis cltcalipsoice cltcalipsoliq cltcalipsoun clth cltl cltlidarradar cltm fDeforestToL fFireBCarb fRegrowth fsat icedLa icod iwpmodis lcod lwpmodis meantbclrisccp meantbisccp necb od550acldaer od550dustbin1 od550dustbin2 od550ssbin1 od550ssbin2 pctmodis reffclimodis reffclitop reffclwmodis reffclwtopcnrm rldsaf rldscsaf rlusaf rluscs rluscsaf rsdsaf rsdscsaf rsusaf rsuscsaf sconcbc sconcoa snct sndLa ssa550aer tauimodis tauisccp tautmodis tauwmodis tmxlLa tsLa vegstress + LImon P1 11: agesno hfdsn sbl sftgif sftgrf snc snd snm snw tpf tsn + LImon P2 1: lwsnl + Lmon P1 29: baresoilFrac burntFractionAll c3PftFrac c4PftFrac cLitter cProduct cVeg cropFrac evspsblsoi evspsblveg fFire fLitterSoil fVegLitter gpp grassFrac lai landCoverFrac mrfso mrro mrros mrso mrsos nbp npp ra residualFrac rh tran treeFrac + Lmon P2 7: cLeaf cLitterBelow cRoot cSoilFast cSoilMedium cSoilSlow prveg + Nonemon P1 6: albsn cw dmlt hfdsl mrsow rzwc + SImon P1 1: siconca + mon XY-na -------- --- 287 + + HOMALmon P1 1: parasolCRefl + mon XY-sza5 -------- --- 1 + + HOMALmon P1 1: clmodis + mon XY-tau|P7C -------- --- 1 + + HOMALmon P1 4: clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun + mon XY-temp -------- --- 4 + + AERmonZ P1 16: bry ch4 cly h2o hcl hno3 ho2 meanage n2o noy o3 oh ta ua va zg + EmonZ P1 4: oxloss oxprod vmrox zmtnt + mon Y-P39 -------- --- 20 + + AERmonZ P1 1: vt100 + mon Y-na -------- --- 1 + + ImonGre P1 1: tas + mon na-na -------- --- 1 + + mon -------- -------- --- 434 + + Esubhr P1 6: tnhuspbl tnhusscp tntpbl tntrlcs tntrscs tntscp + subhrPt S-A -------- --- 6 + + subhrPt -------- -------- --- 6 + + +---------- -------- -------- --- 619 + + +Some Statistics on actually written variables per variable... +-------------------------- +--- VARNAME: RADabs550aer: Absorption Aerosol Optical Depth at 550nm as seen in the radiative scheme +-------------------------- + * mon_HOMALmon_XY-na_1.0 RADabs550aer +-------------------------- +--- VARNAME: RADasy550aer: Asymmetry parameter at 550nm as seen in the radiative scheme +-------------------------- + * mon_HOMALmon_XY-na_1.0 RADasy550aer +------------------------- +--- VARNAME: RADod550aer: Aerosol Optical Depth at 550nm as seen in the radiative scheme +------------------------- + * mon_HOMALmon_XY-na_1.0 RADod550aer +-------------------------- +--- VARNAME: RADssa550aer: Single Scattering Albedo at 550nm as seen in the radiative scheme +-------------------------- + * mon_HOMALmon_XY-na_1.0 RADssa550aer +-------------------------- +--- VARNAME: TACabs550aer: Absorption Aerosol Optical Depth at 550nm in the aerosol scheme +-------------------------- + * mon_HOMALmon_XY-na_1.0 TACabs550aer +----------------------- +--- VARNAME: abs550aer: Ambient Aerosol Absorption Optical Thickness at 550nm +----------------------- + * mon_AERmon_XY-na_1 abs550aer +-------------------- +--- VARNAME: agesno: Mean Age of Snow +-------------------- + * mon_LImon_XY-na_1 agesno +--------------------- +--- VARNAME: airmass: Vertically Integrated Mass Content of Air in Layer +--------------------- + * mon_AERmon_XY-A_1 airmass +---------------------- +--- VARNAME: albisccp: ISCCP Mean Cloud Albedo +---------------------- + * day_CFday_XY-na_1 albisccp + * mon_CFmon_XY-na_1 albisccp +------------------- +--- VARNAME: albsn: Snow Albedo +------------------- + * mon_Nonemon_XY-na_1 albsn +--------------------- +--- VARNAME: albsrfc: Surface albedo +--------------------- + * mon_HOMALmon_XY-na_1.0 albsrfc +----------------------- +--- VARNAME: albsrfcLa: Albedo over Lakes +----------------------- + * mon_HOMALmon_XY-na_1.0 albsrfcLa +----------------------- +--- VARNAME: areacella: Grid-Cell Area for Atmospheric Grid Variables +----------------------- + * fx_fx_XY-na_1 areacella +----------------------- +--- VARNAME: asy550aer: Aerosol Asymmetry Parameter at 550 nm +----------------------- + * mon_HOMALmon_XY-na_1.0 asy550aer +-------------------------- +--- VARNAME: baresoilFrac: Bare Soil Percentage Area Coverage +-------------------------- + * mon_Lmon_XY-na_1 baresoilFrac +----------------- +--- VARNAME: bry: Total Inorganic Bromine Volume Mixing Ratio +----------------- + * mon_AERmonZ_Y-P39_1 bry +----------------------- +--- VARNAME: burntArea: natural burnt area fraction +----------------------- + * mon_HOMALmon_XY-na_1.0 burntArea +------------------------------ +--- VARNAME: burntFractionAll: Percentage of Entire Grid Cell That Is Covered by Burnt Vegetation (All Classes) +------------------------------ + * mon_Lmon_XY-na_1 burntFractionAll +----------------------- +--- VARNAME: c3PftFrac: Percentage Cover by C3 Plant Functional Type +----------------------- + * mon_Lmon_XY-na_1 c3PftFrac +----------------------- +--- VARNAME: c4PftFrac: Percentage Cover by C4 Plant Functional Type +----------------------- + * mon_Lmon_XY-na_1 c4PftFrac +------------------- +--- VARNAME: cLand: Total Carbon in All Terrestrial Carbon Pools +------------------- + * mon_Emon_XY-na_1 cLand +------------------- +--- VARNAME: cLeaf: Carbon Mass in Leaves +------------------- + * mon_Lmon_XY-na_2 cLeaf +--------------------- +--- VARNAME: cLitter: Carbon Mass in Litter Pool +--------------------- + * mon_Lmon_XY-na_1 cLitter +-------------------------- +--- VARNAME: cLitterBelow: Carbon Mass in Below-Ground Litter +-------------------------- + * mon_Lmon_XY-na_2 cLitterBelow +-------------------------- +--- VARNAME: cLitterGrass: Carbon Mass in Litter on Grass Tiles +-------------------------- + * mon_Emon_XY-na_2 cLitterGrass +---------------------------- +--- VARNAME: cLitterSubSurf: Carbon Mass in Below-Ground Litter +---------------------------- + * mon_Emon_XY-na_2 cLitterSubSurf +------------------------- +--- VARNAME: cLitterSurf: Carbon Mass in Above-Ground Litter +------------------------- + * mon_Emon_XY-na_2 cLitterSurf +------------------------- +--- VARNAME: cLitterTree: Carbon Mass in Litter on Tree Tiles +------------------------- + * mon_Emon_XY-na_2 cLitterTree +---------------------- +--- VARNAME: cProduct: Carbon Mass in Products of Land-Use Change +---------------------- + * mon_Lmon_XY-na_1 cProduct +------------------- +--- VARNAME: cRoot: Carbon Mass in Roots +------------------- + * mon_Lmon_XY-na_2 cRoot +------------------- +--- VARNAME: cSoil: Carbon Mass in Model Soil Pool +------------------- + * mon_Emon_XY-na_1 cSoil +----------------------- +--- VARNAME: cSoilFast: Carbon Mass in Fast Soil Pool +----------------------- + * mon_Lmon_XY-na_2 cSoilFast +------------------------ +--- VARNAME: cSoilGrass: Carbon Mass in Soil on Grass Tiles +------------------------ + * mon_Emon_XY-na_2 cSoilGrass +------------------------- +--- VARNAME: cSoilMedium: Carbon Mass in Medium Soil Pool +------------------------- + * mon_Lmon_XY-na_2 cSoilMedium +----------------------- +--- VARNAME: cSoilSlow: Carbon Mass in Slow Soil Pool +----------------------- + * mon_Lmon_XY-na_2 cSoilSlow +----------------------- +--- VARNAME: cSoilTree: Carbon Mass in Soil on Tree Tiles +----------------------- + * mon_Emon_XY-na_2 cSoilTree +------------------- +--- VARNAME: cStem: Carbon Mass in Stem +------------------- + * mon_Emon_XY-na_2 cStem +------------------ +--- VARNAME: cVeg: Carbon Mass in Vegetation +------------------ + * mon_Lmon_XY-na_1 cVeg +----------------------- +--- VARNAME: cVegGrass: Carbon Mass in Vegetation on Grass Tiles +----------------------- + * mon_Emon_XY-na_2 cVegGrass +---------------------- +--- VARNAME: cVegTree: Carbon Mass in Vegetation on Tree Tiles +---------------------- + * mon_Emon_XY-na_2 cVegTree +------------------- +--- VARNAME: cWood: Carbon Mass in Wood +------------------- + * mon_Emon_XY-na_2 cWood +----------------- +--- VARNAME: ccb: Air Pressure at Convective Cloud Base +----------------- + * day_CFday_XY-na_1 ccb + * mon_Amon_XY-na_1 ccb +----------------- +--- VARNAME: cct: Air Pressure at Convective Cloud Top +----------------- + * day_CFday_XY-na_1 cct + * mon_Amon_XY-na_1 cct +------------------ +--- VARNAME: cdnc: Cloud Liquid Droplet Number Concentration +------------------ + * mon_AERmon_XY-A_1 cdnc +--------------------- +--- VARNAME: cdnctop: Liquid Cloud Droplet Number Concentration at Cloud Top +--------------------- + * mon_HOMALmon_XY-na_1.0 cdnctop +------------------------ +--- VARNAME: cfadDbze94: CloudSat Radar Reflectivity CFAD +------------------------ + * mon_Emon_XY-H40_1 cfadDbze94 + * 3hrPt_E3hrPt_XY-H40_1 cfadDbze94 +---------------------------- +--- VARNAME: cfadLidarsr532: CALIPSO Scattering Ratio CFAD +---------------------------- + * mon_Emon_XY-H40_1 cfadLidarsr532 + * 3hrPt_E3hrPt_XY-H40_1 cfadLidarsr532 +----------------- +--- VARNAME: ch4: Mole Fraction of CH4 +----------------- + * mon_AERmon_XY-A_1 ch4 + * mon_AERmonZ_Y-P39_1 ch4 + * mon_Amon_XY-P19_1 ch4 +---------------- +--- VARNAME: ci: Fraction of Time Convection Occurs in Cell +---------------- + * mon_Amon_XY-na_1 ci +---------------- +--- VARNAME: cl: Percentage Cloud Cover +---------------- + * day_CFday_XY-A_1 cl + * mon_Amon_XY-A_1 cl +----------------- +--- VARNAME: clc: Convective Cloud Area Percentage +----------------- + * mon_CFmon_XY-A_1 clc + * 3hrPt_CF3hr_XY-A_2 clc +----------------------- +--- VARNAME: clcalipso: CALIPSO Percentage Cloud Cover +----------------------- + * day_CFday_XY-H40_1 clcalipso + * mon_CFmon_XY-H40_1 clcalipso + * 3hrPt_E3hrPt_XY-H40_1 clcalipso +------------------------ +--- VARNAME: clcalipso2: CALIPSO Cloud Cover Percentage Undetected by CloudSat (as Percentage of Area Covered) +------------------------ + * 3hrPt_E3hrPt_XY-H40_1 clcalipso2 +-------------------------- +--- VARNAME: clcalipsoice: CALIPSO Ice Cloud Percentage +-------------------------- + * mon_Emon_XY-H40_1 clcalipsoice +-------------------------- +--- VARNAME: clcalipsoliq: CALIPSO Liquid Cloud Percentage +-------------------------- + * mon_Emon_XY-H40_1 clcalipsoliq +-------------------------- +--- VARNAME: clcalipsotmp: CALIPSO Cloud Fraction +-------------------------- + * mon_HOMALmon_XY-temp_1.0 clcalipsotmp + * 3hrPt_HOMAL3hrPt_XY-temp_1.0 clcalipsotmp +----------------------------- +--- VARNAME: clcalipsotmpice: CALIPSO Cloud Fraction +----------------------------- + * mon_HOMALmon_XY-temp_1.0 clcalipsotmpice + * 3hrPt_HOMAL3hrPt_XY-temp_1.0 clcalipsotmpice +----------------------------- +--- VARNAME: clcalipsotmpliq: CALIPSO Cloud Fraction +----------------------------- + * mon_HOMALmon_XY-temp_1.0 clcalipsotmpliq + * 3hrPt_HOMAL3hrPt_XY-temp_1.0 clcalipsotmpliq +---------------------------- +--- VARNAME: clcalipsotmpun: CALIPSO Cloud Fraction +---------------------------- + * mon_HOMALmon_XY-temp_1.0 clcalipsotmpun + * 3hrPt_HOMAL3hrPt_XY-temp_1.0 clcalipsotmpun +------------------------- +--- VARNAME: clcalipsoun: CALIPSO Cloud Fraction +------------------------- + * mon_HOMALmon_XY-H40_1.0 clcalipsoun + * 3hrPt_HOMAL3hrPt_XY-H40_1.0 clcalipsoun +------------------------ +--- VARNAME: clhcalipso: CALIPSO High Level Cloud Area Percentage +------------------------ + * day_CFday_XY-na_1 clhcalipso + * mon_CFmon_XY-na_1 clhcalipso + * 3hrPt_E3hrPt_XY-na_1 clhcalipso +--------------------------- +--- VARNAME: clhcalipsoice: CALIPSO Ice High Level Cloud Fraction +--------------------------- + * mon_HOMALmon_XY-na_1.0 clhcalipsoice + * 3hrPt_HOMAL3hrPt_XY-na_1.0 clhcalipsoice +--------------------------- +--- VARNAME: clhcalipsoliq: CALIPSO Liquid High Level Cloud Fraction +--------------------------- + * mon_HOMALmon_XY-na_1.0 clhcalipsoliq + * 3hrPt_HOMAL3hrPt_XY-na_1.0 clhcalipsoliq +-------------------------- +--- VARNAME: clhcalipsoun: CALIPSO Undefined-Phase High Level Cloud Fraction +-------------------------- + * mon_HOMALmon_XY-na_1.0 clhcalipsoun + * 3hrPt_HOMAL3hrPt_XY-na_1.0 clhcalipsoun +---------------------- +--- VARNAME: clhmodis: MODIS High Level Cloud Fraction +---------------------- + * mon_HOMALmon_XY-na_1.0 clhmodis + * 3hrPt_HOMAL3hrPt_XY-na_1.0 clhmodis +----------------- +--- VARNAME: cli: Mass Fraction of Cloud Ice +----------------- + * day_CFday_XY-A_1 cli + * mon_Amon_XY-A_1 cli +------------------ +--- VARNAME: clic: Mass Fraction of Convective Cloud Ice +------------------ + * mon_CFmon_XY-A_2 clic + * 3hrPt_CF3hr_XY-A_2 clic +---------------------- +--- VARNAME: climodis: MODIS Ice Cloud Area Percentage +---------------------- + * mon_Emon_XY-na_1 climodis +------------------ +--- VARNAME: clis: Mass Fraction of Stratiform Cloud Ice +------------------ + * mon_CFmon_XY-A_2 clis + * 3hrPt_CF3hr_XY-A_2 clis +--------------------- +--- VARNAME: clisccp: ISCCP Cloud Area Percentage +--------------------- + * day_CFday_XY-P7_1 clisccp + * mon_CFmon_XY-P7_1 clisccp + * 3hrPt_E3hrPt_XY-P7_1 clisccp +------------------- +--- VARNAME: clivi: Ice Water Path +------------------- + * day_CFday_XY-na_1 clivi + * mon_Amon_XY-na_1 clivi +-------------------- +--- VARNAME: clivic: Convective Ice Water Path +-------------------- + * day_Eday_XY-na_1 clivic +------------------------ +--- VARNAME: cllcalipso: CALIPSO Low Level Cloud Cover Percentage +------------------------ + * day_CFday_XY-na_1 cllcalipso + * mon_CFmon_XY-na_1 cllcalipso + * 3hrPt_E3hrPt_XY-na_1 cllcalipso +--------------------------- +--- VARNAME: cllcalipsoice: CALIPSO Low Level Cloud Fraction +--------------------------- + * mon_HOMALmon_XY-na_1.0 cllcalipsoice + * 3hrPt_HOMAL3hrPt_XY-na_1.0 cllcalipsoice +--------------------------- +--- VARNAME: cllcalipsoliq: CALIPSO Liquid Low Level Cloud Fraction +--------------------------- + * mon_HOMALmon_XY-na_1.0 cllcalipsoliq + * 3hrPt_HOMAL3hrPt_XY-na_1.0 cllcalipsoliq +-------------------------- +--- VARNAME: cllcalipsoun: CALIPSO Undefined-Phase Low Level Cloud Fraction +-------------------------- + * mon_HOMALmon_XY-na_1.0 cllcalipsoun + * 3hrPt_HOMAL3hrPt_XY-na_1.0 cllcalipsoun +---------------------- +--- VARNAME: cllmodis: MODIS Low Level Cloud Fraction +---------------------- + * mon_HOMALmon_XY-na_1.0 cllmodis + * 3hrPt_HOMAL3hrPt_XY-na_1.0 cllmodis +------------------------ +--- VARNAME: clmcalipso: CALIPSO Mid Level Cloud Cover Percentage +------------------------ + * day_CFday_XY-na_1 clmcalipso + * mon_CFmon_XY-na_1 clmcalipso + * 3hrPt_E3hrPt_XY-na_1 clmcalipso +--------------------------- +--- VARNAME: clmcalipsoice: CALIPSO Ice Mid Level Cloud Fraction +--------------------------- + * mon_HOMALmon_XY-na_1.0 clmcalipsoice + * 3hrPt_HOMAL3hrPt_XY-na_1.0 clmcalipsoice +--------------------------- +--- VARNAME: clmcalipsoliq: CALIPSO Liquid Mid Level Cloud Fraction +--------------------------- + * mon_HOMALmon_XY-na_1.0 clmcalipsoliq + * 3hrPt_HOMAL3hrPt_XY-na_1.0 clmcalipsoliq +-------------------------- +--- VARNAME: clmcalipsoun: CALIPSO Undefined-Phase Mid Level Cloud Fraction +-------------------------- + * mon_HOMALmon_XY-na_1.0 clmcalipsoun + * 3hrPt_HOMAL3hrPt_XY-na_1.0 clmcalipsoun +-------------------- +--- VARNAME: clmisr: Percentage Cloud Cover as Calculated by the MISR Simulator (Including Error Flag) +-------------------- + * mon_Emon_XY-H16_1 clmisr + * 3hrPt_E3hrPt_XY-H16_1 clmisr +---------------------- +--- VARNAME: clmmodis: MODIS Mid Level Cloud Fraction +---------------------- + * mon_HOMALmon_XY-na_1.0 clmmodis + * 3hrPt_HOMAL3hrPt_XY-na_1.0 clmmodis +--------------------- +--- VARNAME: clmodis: MODIS Cloud Area Fraction +--------------------- + * mon_HOMALmon_XY-tau|P7C_1.0 clmodis + * 3hrPt_HOMAL3hrPt_XY-tau|P7C_1.0 clmodis +----------------- +--- VARNAME: cls: Percentage Cover of Stratiform Cloud +----------------- + * mon_CFmon_XY-A_1 cls + * 3hrPt_CF3hr_XY-A_2 cls +----------------- +--- VARNAME: clt: Total Cloud Cover Percentage +----------------- + * day_day_XY-na_1 clt + * mon_Amon_XY-na_1 clt +------------------ +--- VARNAME: cltc: Convective Cloud Cover Percentage +------------------ + * mon_AERmon_XY-na_1 cltc +------------------------ +--- VARNAME: cltcalipso: CALIPSO Total Cloud Cover Percentage +------------------------ + * day_CFday_XY-na_1 cltcalipso + * mon_CFmon_XY-na_1 cltcalipso + * 3hrPt_E3hrPt_XY-na_1 cltcalipso +--------------------------- +--- VARNAME: cltcalipsoice: CALIPSO Ice Total Cloud Fraction +--------------------------- + * mon_HOMALmon_XY-na_1.0 cltcalipsoice + * 3hrPt_HOMAL3hrPt_XY-na_1.0 cltcalipsoice +--------------------------- +--- VARNAME: cltcalipsoliq: CALIPSO Liquid Total Cloud Fraction +--------------------------- + * mon_HOMALmon_XY-na_1.0 cltcalipsoliq + * 3hrPt_HOMAL3hrPt_XY-na_1.0 cltcalipsoliq +-------------------------- +--- VARNAME: cltcalipsoun: CALIPSO Undefined-Phase Total Cloud Fraction +-------------------------- + * mon_HOMALmon_XY-na_1.0 cltcalipsoun + * 3hrPt_HOMAL3hrPt_XY-na_1.0 cltcalipsoun +------------------ +--- VARNAME: clth: High Troposphere Cloud Area Fraction +------------------ + * mon_HOMALmon_XY-na_1.0 clth +---------------------- +--- VARNAME: cltisccp: ISCCP Total Cloud Cover Percentage +---------------------- + * day_CFday_XY-na_1 cltisccp + * mon_CFmon_XY-na_1 cltisccp +------------------ +--- VARNAME: cltl: Low Troposphere Cloud Area Fraction +------------------ + * mon_HOMALmon_XY-na_1.0 cltl +--------------------------- +--- VARNAME: cltlidarradar: Lidar and Radar Total Cloud Fraction +--------------------------- + * mon_HOMALmon_XY-na_1.0 cltlidarradar + * 3hrPt_HOMAL3hrPt_XY-na_1.0 cltlidarradar +------------------ +--- VARNAME: cltm: Mid Troposphere Cloud Area Fraction +------------------ + * mon_HOMALmon_XY-na_1.0 cltm +---------------------- +--- VARNAME: cltmodis: MODIS Total Cloud Cover Percentage +---------------------- + * mon_Emon_XY-na_1 cltmodis +----------------- +--- VARNAME: clw: Mass Fraction of Cloud Liquid Water +----------------- + * day_CFday_XY-A_1 clw + * mon_Amon_XY-A_1 clw +------------------ +--- VARNAME: clwc: Mass Fraction of Convective Cloud Liquid Water +------------------ + * mon_CFmon_XY-A_2 clwc + * 3hrPt_CF3hr_XY-A_2 clwc +---------------------- +--- VARNAME: clwmodis: MODIS Liquid Cloud Percentage +---------------------- + * mon_Emon_XY-na_1 clwmodis +------------------ +--- VARNAME: clws: Mass Fraction of Stratiform Cloud Liquid Water +------------------ + * mon_CFmon_XY-A_2 clws + * 3hrPt_CF3hr_XY-A_2 clws +------------------- +--- VARNAME: clwvi: Condensed Water Path +------------------- + * day_CFday_XY-na_1 clwvi + * mon_Amon_XY-na_1 clwvi +-------------------- +--- VARNAME: clwvic: Convective Condensed Water Path +-------------------- + * day_Eday_XY-na_1 clwvic + * mon_Emon_XY-na_1 clwvic +----------------- +--- VARNAME: cly: Total Inorganic Chlorine Volume Mixing Ratio +----------------- + * mon_AERmonZ_Y-P39_1 cly +---------------- +--- VARNAME: co: CO Volume Mixing Ratio +---------------- + * mon_AERmon_XY-A_1 co + * mon_HOMEPmon_XY-Plev39hm_1.0 co + Warning: several long names are available: + - CO Volume Mixing Ratio + - CO volume mixing ratio +----------------- +--- VARNAME: co2: Mole Fraction of CO2 +----------------- + * mon_AERmon_XY-A_1 co2 + * mon_Amon_XY-P19_1 co2 +----------------- +--- VARNAME: cod: Cloud Optical Depth +----------------- + * day_AERday_XY-na_1 cod + * mon_AERmon_XY-na_1 cod +---------------------- +--- VARNAME: concdust: Concentration of Dust +---------------------- + * mon_Emon_XY-A_1 concdust +---------------------- +--- VARNAME: cropFrac: Percentage Crop Cover +---------------------- + * mon_Lmon_XY-na_1 cropFrac +------------------------ +--- VARNAME: cropFracC3: Percentage Cover by C3 Crops +------------------------ + * mon_Emon_XY-na_1 cropFracC3 +------------------------ +--- VARNAME: cropFracC4: Percentage Cover by C4 Crops +------------------------ + * mon_Emon_XY-na_1 cropFracC4 +---------------- +--- VARNAME: cw: Total Canopy Water Storage +---------------- + * mon_Nonemon_XY-na_1 cw +------------------ +--- VARNAME: dmlt: Depth to Soil Thaw +------------------ + * mon_Nonemon_XY-na_1 dmlt +------------------- +--- VARNAME: drybc: Dry Deposition Rate of Black Carbon Aerosol Mass +------------------- + * mon_AERmon_XY-na_1 drybc +--------------------- +--- VARNAME: drydust: Dry Deposition Rate of Dust +--------------------- + * mon_AERmon_XY-na_1 drydust +------------------- +--- VARNAME: dryoa: Dry Deposition Rate of Dry Aerosol Total Organic Matter +------------------- + * mon_AERmon_XY-na_1 dryoa +-------------------- +--- VARNAME: dryso2: Dry Deposition Rate of SO2 +-------------------- + * mon_AERmon_XY-na_1 dryso2 +-------------------- +--- VARNAME: dryso4: Dry Deposition Rate of SO4 +-------------------- + * mon_AERmon_XY-na_1 dryso4 +------------------- +--- VARNAME: dryss: Dry Deposition Rate of Sea-Salt Aerosol +------------------- + * mon_AERmon_XY-na_1 dryss +------------------- +--- VARNAME: emibc: Total Emission Rate of Black Carbon Aerosol Mass +------------------- + * mon_AERmon_XY-na_1 emibc +--------------------- +--- VARNAME: emidust: Total Emission Rate of Dust +--------------------- + * mon_AERmon_XY-na_1 emidust +------------------- +--- VARNAME: emioa: Primary Emission and Chemical Production of Dry Aerosol Organic Matter +------------------- + * mon_AERmon_XY-na_1 emioa +-------------------- +--- VARNAME: emiso2: Total Emission Rate of SO2 +-------------------- + * mon_AERmon_XY-na_1 emiso2 +-------------------- +--- VARNAME: emiso4: Total Direct Emission Rate of SO4 +-------------------- + * mon_AERmon_XY-na_1 emiso4 +------------------- +--- VARNAME: emiss: Total Emission Rate of Sea-Salt Aerosol +------------------- + * mon_AERmon_XY-na_1 emiss +--------------------- +--- VARNAME: evspsbl: Evaporation Including Sublimation and Transpiration +--------------------- + * mon_Amon_XY-na_1 evspsbl +------------------------ +--- VARNAME: evspsblpot: Potential Evapotranspiration +------------------------ + * mon_Emon_XY-na_1 evspsblpot +------------------------ +--- VARNAME: evspsblsoi: Water Evaporation from Soil +------------------------ + * mon_Lmon_XY-na_1 evspsblsoi +------------------------ +--- VARNAME: evspsblveg: Evaporation from Canopy +------------------------ + * mon_Lmon_XY-na_1 evspsblveg +---------------------- +--- VARNAME: ext550bc: Black Carbon Aerosol Extinction Coefficient at 550 nm +---------------------- + * mon_HOMALmon_XY-P19_1.0 ext550bc +------------------------ +--- VARNAME: ext550dust: Dust Aerosol Extinction Coefficient at 550 nm +------------------------ + * mon_HOMALmon_XY-P19_1.0 ext550dust +---------------------- +--- VARNAME: ext550oa: Organic Matter Aerosol Extinction Coefficient at 550 nm +---------------------- + * mon_HOMALmon_XY-P19_1.0 ext550oa +----------------------- +--- VARNAME: ext550so4: Sulfate Aerosol Extinction Coefficient at 550 nm +----------------------- + * mon_HOMALmon_XY-P19_1.0 ext550so4 +---------------------- +--- VARNAME: ext550ss: Sea-Salt Aerosol Extinction Coefficient at 550 nm +---------------------- + * mon_HOMALmon_XY-P19_1.0 ext550ss +-------------------------- +--- VARNAME: fAnthDisturb: Carbon Mass Flux from Vegetation, Litter or Soil Pools into the Atmosphere Due to any Human Activity [kgC m-2 s-1] +-------------------------- + * mon_Emon_XY-na_1 fAnthDisturb +------------------------------ +--- VARNAME: fDeforestToAtmos: Deforested Biomass That Goes into Atmosphere as a Result of Anthropogenic Land-Use Change [kgC m-2 s-1] +------------------------------ + * mon_Emon_XY-na_2 fDeforestToAtmos +-------------------------- +--- VARNAME: fDeforestToL: carbon transferred to soil or litter pools due to lulucf processes +-------------------------- + * mon_HOMALmon_XY-na_1.0 fDeforestToL +-------------------------------- +--- VARNAME: fDeforestToProduct: Deforested Biomass That Goes into Product Pool as a Result of Anthropogenic Land-Use Change +-------------------------------- + * mon_Emon_XY-na_1 fDeforestToProduct +------------------- +--- VARNAME: fFire: Carbon Mass Flux into Atmosphere Due to CO2 Emission from Fire Excluding Land-Use Change [kgC m-2 s-1] +------------------- + * mon_Lmon_XY-na_1 fFire +---------------------- +--- VARNAME: fFireAll: Carbon Mass Flux into Atmosphere Due to CO2 Emission from Fire Including All Sources [kgC m-2 s-1] +---------------------- + * mon_Emon_XY-na_2 fFireAll +------------------------ +--- VARNAME: fFireBCarb: Black Carbon Flux into Atmosphere due to Emission from natural Fire +------------------------ + * mon_HOMALmon_XY-na_1.0 fFireBCarb +---------------------- +--- VARNAME: fFireNat: Carbon Mass Flux into Atmosphere Due to CO2 Emission from Natural Fire [kgC m-2 s-1] +---------------------- + * mon_Emon_XY-na_1 fFireNat +------------------------- +--- VARNAME: fLitterSoil: Total Carbon Mass Flux from Litter to Soil +------------------------- + * mon_Lmon_XY-na_1 fLitterSoil +------------------ +--- VARNAME: fLuc: Net Carbon Mass Flux into Atmosphere Due to Land-Use Change [kgC m-2 s-1] +------------------ + * mon_Emon_XY-na_1 fLuc +---------------------------- +--- VARNAME: fProductDecomp: Decomposition out of Product Pools to CO2 in Atmosphere as Carbon Mass Flux [kgC m-2 s-1] +---------------------------- + * mon_Emon_XY-na_1 fProductDecomp +----------------------- +--- VARNAME: fRegrowth: carbon flux due to plant regrowth related to land-use or land-cover change processes +----------------------- + * mon_HOMALmon_XY-na_1.0 fRegrowth +---------------------- +--- VARNAME: fVegFire: Carbon Mass Flux from Vegetation into Atmosphere Due to CO2 Emission from All Fire [kgC m-2 s-1] +---------------------- + * mon_Emon_XY-na_2 fVegFire +------------------------ +--- VARNAME: fVegLitter: Total Carbon Mass Flux from Vegetation to Litter +------------------------ + * mon_Lmon_XY-na_1 fVegLitter +---------------------- +--- VARNAME: fco2antt: Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2 [kgC m-2 s-1] +---------------------- + * mon_Amon_XY-na_1 fco2antt +--------------------- +--- VARNAME: fco2fos: Carbon Mass Flux into Atmosphere Due to Fossil Fuel Emissions of CO2 [kgC m-2 s-1] +--------------------- + * mon_Amon_XY-na_1 fco2fos +--------------------- +--- VARNAME: fco2nat: Surface Carbon Mass Flux into the Atmosphere Due to Natural Sources [kgC m-2 s-1] +--------------------- + * mon_Amon_XY-na_1 fco2nat +--------------------- +--- VARNAME: fracLut: Percentage of Grid Cell for Each Land-Use Tile +--------------------- + * mon_Emon_XY-na_1 fracLut +------------------ +--- VARNAME: fsat: soil saturated fraction +------------------ + * mon_HOMALmon_XY-na_1.0 fsat +----------------- +--- VARNAME: gpp: Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land [kgC m-2 s-1] +----------------- + * mon_Lmon_XY-na_1 gpp +---------------------- +--- VARNAME: gppGrass: Gross Primary Production on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1] +---------------------- + * mon_Emon_XY-na_2 gppGrass +--------------------- +--- VARNAME: gppTree: Gross Primary Production on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1] +--------------------- + * mon_Emon_XY-na_2 gppTree +----------------------- +--- VARNAME: grassFrac: Natural Grass Area Percentage +----------------------- + * mon_Lmon_XY-na_1 grassFrac +------------------------- +--- VARNAME: grassFracC3: C3 Natural Grass Area Percentage +------------------------- + * mon_Emon_XY-na_1 grassFracC3 +------------------------- +--- VARNAME: grassFracC4: C4 Natural Grass Area Percentage +------------------------- + * mon_Emon_XY-na_1 grassFracC4 +----------------- +--- VARNAME: h2o: Mass Fraction of Water +----------------- + * mon_AERmon_XY-A_1 h2o + * mon_AERmonZ_Y-P39_1 h2o +------------------ +--- VARNAME: hcho: Formaldehyde Volume Mixing Ratio +------------------ + * mon_AERmon_XY-A_1 hcho +----------------- +--- VARNAME: hcl: HCl Volume Mixing Ratio +----------------- + * mon_AERmon_XY-A_1 hcl + * mon_AERmonZ_Y-P39_1 hcl +------------------- +--- VARNAME: hfdsl: Downward Heat Flux at Land Surface +------------------- + * mon_Nonemon_XY-na_1 hfdsl +------------------- +--- VARNAME: hfdsn: Downward Heat Flux into Snow Where Land over Land +------------------- + * mon_LImon_XY-na_1 hfdsn +------------------ +--- VARNAME: hfls: Surface Upward Latent Heat Flux +------------------ + * day_day_XY-na_1 hfls + * mon_Amon_XY-na_1 hfls +------------------ +--- VARNAME: hfss: Surface Upward Sensible Heat Flux +------------------ + * day_day_XY-na_1 hfss + * mon_Amon_XY-na_1 hfss +------------------ +--- VARNAME: hno3: HNO3 Volume Mixing Ratio +------------------ + * mon_AERmon_XY-A_1 hno3 + * mon_AERmonZ_Y-P39_1 hno3 +----------------- +--- VARNAME: ho2: HO2 Volume Mixing Ratio +----------------- + * mon_AERmonZ_Y-P39_1 ho2 +----------------- +--- VARNAME: hur: Relative Humidity +----------------- + * day_CFday_XY-A_1 hur + * day_day_XY-P8_1 hur + * mon_Amon_XY-P19_1 hur + * mon_CFmon_XY-A_1 hur +------------------ +--- VARNAME: hurs: Near-Surface Relative Humidity +------------------ + * day_day_XY-na_1 hurs + * mon_Amon_XY-na_1 hurs +--------------------- +--- VARNAME: hursmax: Daily Maximum Near-Surface Relative Humidity +--------------------- + * day_day_XY-na_1 hursmax +--------------------- +--- VARNAME: hursmin: Daily Minimum Near-Surface Relative Humidity +--------------------- + * day_day_XY-na_1 hursmin +----------------- +--- VARNAME: hus: Specific Humidity +----------------- + * day_CFday_XY-A_1 hus + * day_EdayZ_Y-P19_1 hus + * day_day_XY-P8_1 hus + * mon_Amon_XY-P19_1 hus + * mon_CFmon_XY-A_1 hus + * mon_Emon_XY-P7T_1 hus + * mon_HOMEPmon_XY-P7HM_1.0 hus + * 3hrPt_E3hrPt_XY-A_1 hus +-------------------- +--- VARNAME: hus850: Specific Humidity +-------------------- + * day_Eday_XY-na_1 hus850 +------------------ +--- VARNAME: huss: Near-Surface Specific Humidity +------------------ + * day_day_XY-na_1 huss + * mon_Amon_XY-na_1 huss +-------------------- +--- VARNAME: icedLa: ice thickness over lake +-------------------- + * mon_HOMALmon_XY-na_1.0 icedLa +------------------ +--- VARNAME: icod: Ice_Cloud_Optical_Depth +------------------ + * mon_HOMALmon_XY-na_1.0 icod +---------------------- +--- VARNAME: intuadse: Vertically Integrated Eastward Dry Statice Energy Transport +---------------------- + * mon_Emon_XY-na_1 intuadse +-------------------- +--- VARNAME: intuaw: Vertically Integrated Eastward Moisture Transport +-------------------- + * mon_Emon_XY-na_1 intuaw +---------------------- +--- VARNAME: intvadse: Vertically Integrated Northward Dry Static Energy Transport +---------------------- + * mon_Emon_XY-na_1 intvadse +-------------------- +--- VARNAME: intvaw: Vertically Integrated Northward Moisture Transport +-------------------- + * mon_Emon_XY-na_1 intvaw +---------------------- +--- VARNAME: iwpmodis: MODIS Cloud Ice Water Path +---------------------- + * mon_HOMALmon_XY-na_1.0 iwpmodis + * 3hrPt_HOMAL3hrPt_XY-na_1.0 iwpmodis +------------------------------- +--- VARNAME: jpdftaureicemodis: MODIS Joint Distribution of Optical Thickness and Particle Size, Ice +------------------------------- + * day_Eday_XY-na_1 jpdftaureicemodis + * mon_Emon_XY-na_1 jpdftaureicemodis + * 3hrPt_E3hrPt_XY-na_1 jpdftaureicemodis +------------------------------- +--- VARNAME: jpdftaureliqmodis: MODIS Optical Thickness-Particle Size Joint Distribution, Liquid +------------------------------- + * day_Eday_XY-na_1 jpdftaureliqmodis + * mon_Emon_XY-na_1 jpdftaureliqmodis + * 3hrPt_E3hrPt_XY-na_1 jpdftaureliqmodis +----------------- +--- VARNAME: lai: Leaf Area Index +----------------- + * mon_Lmon_XY-na_1 lai +--------------------------- +--- VARNAME: landCoverFrac: Percentage of Area by Vegetation or Land-Cover Category +--------------------------- + * mon_Lmon_XY-na_1 landCoverFrac +------------------ +--- VARNAME: lcod: Liquid Cloud Optical Depth +------------------ + * mon_HOMALmon_XY-na_1.0 lcod +-------------------- +--- VARNAME: loadbc: Load of Black Carbon Aerosol +-------------------- + * day_Eday_XY-na_1 loadbc +---------------------- +--- VARNAME: loaddust: Load of Dust +---------------------- + * day_Eday_XY-na_1 loaddust + * mon_Emon_XY-na_1 loaddust +-------------------- +--- VARNAME: loadoa: Load of Dry Aerosol Organic Matter +-------------------- + * day_Eday_XY-na_1 loadoa +--------------------- +--- VARNAME: loadso4: Load of SO4 +--------------------- + * day_Eday_XY-na_1 loadso4 +-------------------- +--- VARNAME: loadss: Load of Sea-Salt Aerosol +-------------------- + * day_Eday_XY-na_1 loadss +----------------- +--- VARNAME: lwp: Liquid Water Path +----------------- + * mon_AERmon_XY-na_1 lwp +---------------------- +--- VARNAME: lwpmodis: MODIS Cloud Liquid Water Path +---------------------- + * mon_HOMALmon_XY-na_1.0 lwpmodis + * 3hrPt_HOMAL3hrPt_XY-na_1.0 lwpmodis +------------------- +--- VARNAME: lwsnl: Liquid Water Content of Snow Layer +------------------- + * mon_LImon_XY-na_2 lwsnl +---------------- +--- VARNAME: mc: Convective Mass Flux +---------------- + * day_CFday_XY-AH_1 mc + * mon_Amon_XY-AH_1 mc +----------------- +--- VARNAME: mcd: Downdraft Convective Mass Flux +----------------- + * mon_CFmon_XY-AH_2 mcd +----------------- +--- VARNAME: mcu: Convective Updraft Mass Flux +----------------- + * mon_CFmon_XY-AH_1 mcu +--------------------- +--- VARNAME: meanage: Mean Age of Stratospheric Air +--------------------- + * mon_AERmonZ_Y-P39_1 meanage +---------------------------- +--- VARNAME: meantbclrisccp: Mean clear-sky 10.5 micron brightness temperature as calculated by the ISCCP Simulator +---------------------------- + * mon_HOMALmon_XY-na_1.0 meantbclrisccp + * 3hrPt_HOMAL3hrPt_XY-na_1.0 meantbclrisccp +------------------------- +--- VARNAME: meantbisccp: Mean all-sky 10.5 micron brightness temperature as calculated by the ISCCP Simulator +------------------------- + * mon_HOMALmon_XY-na_1.0 meantbisccp + * 3hrPt_HOMAL3hrPt_XY-na_1.0 meantbisccp +------------------- +--- VARNAME: mmrbc: Elemental Carbon Mass Mixing Ratio +------------------- + * mon_AERmon_XY-A_1 mmrbc +--------------------- +--- VARNAME: mmrdust: Dust Aerosol Mass Mixing Ratio +--------------------- + * mon_AERmon_XY-A_1 mmrdust +------------------- +--- VARNAME: mmroa: Total Organic Aerosol Mass Mixing Ratio +------------------- + * mon_AERmon_XY-A_1 mmroa +-------------------- +--- VARNAME: mmrpm1: PM1.0 Mass Mixing Ratio +-------------------- + * mon_AERmon_XY-A_1 mmrpm1 +-------------------- +--- VARNAME: mmrso4: Aerosol Sulfate Mass Mixing Ratio +-------------------- + * mon_AERmon_XY-A_1 mmrso4 +------------------- +--- VARNAME: mmrss: Sea-Salt Aerosol Mass Mixing Ratio +------------------- + * mon_AERmon_XY-A_1 mmrss +------------------- +--- VARNAME: mrfso: Soil Frozen Water Content +------------------- + * mon_Lmon_XY-na_1 mrfso +------------------- +--- VARNAME: mrlso: Soil Liquid Water Content +------------------- + * mon_Emon_XY-na_1 mrlso +------------------ +--- VARNAME: mrro: Total Runoff +------------------ + * day_day_XY-na_1 mrro + * mon_Lmon_XY-na_1 mrro +------------------- +--- VARNAME: mrros: Surface Runoff +------------------- + * mon_Lmon_XY-na_1 mrros +------------------- +--- VARNAME: mrsfl: Frozen Water Content of Soil Layer +------------------- + * mon_Emon_XY-S_1 mrsfl +------------------- +--- VARNAME: mrsll: Liquid Water Content of Soil Layer +------------------- + * mon_Emon_XY-S_1 mrsll +------------------ +--- VARNAME: mrso: Total Soil Moisture Content +------------------ + * day_day_XY-na_1 mrso + * mon_Lmon_XY-na_1 mrso +-------------------- +--- VARNAME: mrsofc: Capacity of Soil to Store Water (Field Capacity) +-------------------- + * fx_fx_XY-na_1 mrsofc +------------------- +--- VARNAME: mrsos: Moisture in Upper Portion of Soil Column +------------------- + * day_day_XY-na_1 mrsos + * mon_Lmon_XY-na_1 mrsos +------------------- +--- VARNAME: mrsow: Total Soil Wetness +------------------- + * mon_Nonemon_XY-na_1 mrsow +------------------- +--- VARNAME: mrtws: Terrestrial Water Storage +------------------- + * mon_Emon_XY-na_2 mrtws +----------------- +--- VARNAME: n2o: Mole Fraction of N2O +----------------- + * mon_AERmon_XY-A_1 n2o + * mon_AERmonZ_Y-P39_1 n2o + * mon_Amon_XY-P19_1 n2o +----------------- +--- VARNAME: nbp: Carbon Mass Flux out of Atmosphere Due to Net Biospheric Production on Land [kgC m-2 s-1] +----------------- + * mon_Lmon_XY-na_1 nbp +------------------ +--- VARNAME: necb: net rate of C accumulation (or loss) +------------------ + * mon_HOMALmon_XY-na_1.0 necb +----------------- +--- VARNAME: nep: Net Carbon Mass Flux out of Atmosphere Due to Net Ecosystem Productivity on Land [kgC m-2 s-1] +----------------- + * mon_Emon_XY-na_1 nep +--------------------------------- +--- VARNAME: netAtmosLandCO2Flux: Net Flux of CO2 Between Atmosphere and Land (Positive into Land) as a Result of All Processes [kgC m-2 s-1] +--------------------------------- + * mon_Emon_XY-na_1 netAtmosLandCO2Flux +---------------- +--- VARNAME: no: NO Volume Mixing Ratio +---------------- + * mon_AERmon_XY-A_1 no +----------------- +--- VARNAME: no2: NO2 Volume Mixing Ratio +----------------- + * mon_AERmon_XY-A_1 no2 + * mon_HOMEPmon_XY-Plev39hm_1.0 no2 + Warning: several long names are available: + - NO2 Volume Mixing Ratio + - NO2 volume mixing ratio +----------------- +--- VARNAME: noy: Total Reactive Nitrogen Volume Mixing Ratio +----------------- + * mon_AERmonZ_Y-P39_1 noy +----------------- +--- VARNAME: npp: Net Primary Production on Land as Carbon Mass Flux [kgC m-2 s-1] +----------------- + * mon_Lmon_XY-na_1 npp +---------------------- +--- VARNAME: nppGrass: Net Primary Production on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1] +---------------------- + * mon_Emon_XY-na_2 nppGrass +--------------------- +--- VARNAME: nppTree: Net Primary Production on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1] +--------------------- + * mon_Emon_XY-na_2 nppTree +------------------------ +--- VARNAME: nwdFracLut: Non-Woody Vegetation Percentage Cover +------------------------ + * mon_Emon_XY-na_1 nwdFracLut +---------------- +--- VARNAME: o3: Mole Fraction of O3 +---------------- + * mon_AERmon_XY-A_1 o3 + * mon_AERmonZ_Y-P39_1 o3 + * mon_Amon_XY-P19_1 o3 + * mon_HOMEPmon_XY-Plev39hm_1.0 o3 + Warning: several long names are available: + - Mole Fraction of O3 + - Ozone volume mixing ratio +-------------------- +--- VARNAME: o3loss: O3 Destruction Rate +-------------------- + * mon_AERmon_XY-A_1 o3loss +-------------------- +--- VARNAME: o3prod: O3 Production Rate +-------------------- + * mon_AERmon_XY-A_1 o3prod +---------------------- +--- VARNAME: od440aer: Ambient Aerosol Optical Thickness at 440nm +---------------------- + * mon_AERmon_XY-na_1 od440aer +----------------------- +--- VARNAME: od443dust: Optical Thickness at 443nm Dust +----------------------- + * mon_Emon_XY-na_1 od443dust +-------------------------- +--- VARNAME: od550acldaer: Above-cloud Aerosol Optical Depth at 550 nm +-------------------------- + * mon_HOMALmon_XY-na_1.0 od550acldaer +---------------------- +--- VARNAME: od550aer: Ambient Aerosol Optical Thickness at 550nm +---------------------- + * day_AERday_XY-na_1 od550aer + * mon_AERmon_XY-na_1 od550aer +--------------------- +--- VARNAME: od550bc: Black Carbon Optical Thickness at 550nm +--------------------- + * mon_AERmon_XY-na_1 od550bc +----------------------- +--- VARNAME: od550dust: Dust Optical Thickness at 550nm +----------------------- + * mon_AERmon_XY-na_1 od550dust +--------------------------- +--- VARNAME: od550dustbin1: Dust Bin 1 Aerosol Optical Depth at 550 nm +--------------------------- + * mon_HOMALmon_XY-na_1.0 od550dustbin1 +--------------------------- +--- VARNAME: od550dustbin2: Dust Bin 2 Aerosol Optical Depth at 550 nm +--------------------------- + * mon_HOMALmon_XY-na_1.0 od550dustbin2 +------------------------- +--- VARNAME: od550lt1aer: Ambient Fine Aerosol Optical Depth at 550nm +------------------------- + * mon_AERmon_XY-na_1 od550lt1aer +--------------------- +--- VARNAME: od550oa: Total Organic Aerosol Optical Depth at 550nm +--------------------- + * mon_AERmon_XY-na_1 od550oa +---------------------- +--- VARNAME: od550so4: Sulfate Aerosol Optical Depth at 550nm +---------------------- + * mon_AERmon_XY-na_1 od550so4 +--------------------- +--- VARNAME: od550ss: Sea-Salt Aerosol Optical Depth at 550nm +--------------------- + * mon_AERmon_XY-na_1 od550ss +------------------------- +--- VARNAME: od550ssbin1: Sea-salt Bin 1 Aerosol Optical Depth at 550 nm +------------------------- + * mon_HOMALmon_XY-na_1.0 od550ssbin1 +------------------------- +--- VARNAME: od550ssbin2: Sea-salt Bin 2 Aerosol Optical Depth at 550 nm +------------------------- + * mon_HOMALmon_XY-na_1.0 od550ssbin2 +----------------------- +--- VARNAME: od865dust: Dust Optical Depth at 865nm +----------------------- + * mon_Emon_XY-na_1 od865dust +---------------------- +--- VARNAME: od870aer: Ambient Aerosol Optical Depth at 870nm +---------------------- + * mon_AERmon_XY-na_1 od870aer +---------------- +--- VARNAME: oh: OH Volume Mixing Ratio +---------------- + * mon_AERmon_XY-A_1 oh + * mon_AERmonZ_Y-P39_1 oh +------------------ +--- VARNAME: orog: Surface Altitude +------------------ + * fx_fx_XY-na_1 orog + * mon_Emon_XY-na_1 orog +-------------------- +--- VARNAME: oxloss: Total Odd Oxygen (Ox) Loss Rate +-------------------- + * mon_EmonZ_Y-P39_1 oxloss +-------------------- +--- VARNAME: oxprod: Total Odd Oxygen (Ox) Production Rate +-------------------- + * mon_EmonZ_Y-P39_1 oxprod +-------------------------- +--- VARNAME: parasolCRefl: PARASOL Cloud Reflectance +-------------------------- + * mon_HOMALmon_XY-sza5_1.0 parasolCRefl + * 3hrPt_HOMAL3hrPt_XY-sza5_1.0 parasolCRefl +------------------------- +--- VARNAME: parasolRefl: PARASOL Reflectance +------------------------- + * day_Eday_XY-na_1 parasolRefl + * mon_Emon_XY-na_1 parasolRefl + * 3hrPt_E3hrPt_XY-na_1 parasolRefl +---------------------- +--- VARNAME: pctisccp: ISCCP Mean Cloud Top Pressure +---------------------- + * day_CFday_XY-na_1 pctisccp + * mon_CFmon_XY-na_1 pctisccp +---------------------- +--- VARNAME: pctmodis: MODIS Cloud Top Pressure +---------------------- + * mon_HOMALmon_XY-na_1.0 pctmodis + * 3hrPt_HOMAL3hrPt_XY-na_1.0 pctmodis +---------------- +--- VARNAME: pr: Precipitation +---------------- + * day_day_XY-na_1 pr + * mon_Amon_XY-na_1 pr +----------------- +--- VARNAME: prc: Convective Precipitation +----------------- + * day_day_XY-na_1 prc + * mon_Amon_XY-na_1 prc +--------------------- +--- VARNAME: prcprof: Convective Rainfall Flux +--------------------- + * 3hrPt_CF3hr_XY-AH_2 prcprof +-------------------- +--- VARNAME: prlsns: Stratiform Snowfall Flux +-------------------- + * 3hrPt_CF3hr_XY-AH_2 prlsns +---------------------- +--- VARNAME: prlsprof: Stratiform Rainfall Flux +---------------------- + * 3hrPt_CF3hr_XY-AH_2 prlsprof +------------------ +--- VARNAME: prsn: Snowfall Flux +------------------ + * day_day_XY-na_1 prsn + * mon_Amon_XY-na_1 prsn +------------------- +--- VARNAME: prsnc: Convective Snowfall Flux +------------------- + * 3hrPt_CF3hr_XY-AH_2 prsnc +------------------- +--- VARNAME: prveg: Precipitation onto Canopy +------------------- + * mon_Lmon_XY-na_2 prveg +----------------- +--- VARNAME: prw: Water Vapor Path +----------------- + * mon_Amon_XY-na_1 prw +---------------- +--- VARNAME: ps: Surface Air Pressure +---------------- + * day_CFday_XY-na_1 ps + * mon_AERmon_XY-na_1 ps + * mon_Amon_XY-na_1 ps +----------------- +--- VARNAME: psl: Sea Level Pressure +----------------- + * day_day_XY-na_1 psl + * mon_Amon_XY-na_1 psl +----------------- +--- VARNAME: ptp: Tropopause Air Pressure +----------------- + * mon_AERmon_XY-na_1 ptp +---------------- +--- VARNAME: ra: Carbon Mass Flux into Atmosphere Due to Autotrophic (Plant) Respiration on Land [kgC m-2 s-1] +---------------- + * mon_Lmon_XY-na_1 ra +--------------------- +--- VARNAME: raGrass: Autotrophic Respiration on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1] +--------------------- + * mon_Emon_XY-na_2 raGrass +-------------------- +--- VARNAME: raTree: Autotrophic Respiration on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1] +-------------------- + * mon_Emon_XY-na_2 raTree +-------------------------- +--- VARNAME: reffclimodis: MODIS Ice Cloud Particle Size +-------------------------- + * mon_HOMALmon_XY-na_1.0 reffclimodis + * 3hrPt_HOMAL3hrPt_XY-na_1.0 reffclimodis +------------------------ +--- VARNAME: reffclitop: Ice Cloud Droplet Effective Radius +------------------------ + * mon_HOMALmon_XY-na_1.0 reffclitop +-------------------------- +--- VARNAME: reffclwmodis: MODIS Liquid Cloud Particle Size +-------------------------- + * mon_HOMALmon_XY-na_1.0 reffclwmodis + * 3hrPt_HOMAL3hrPt_XY-na_1.0 reffclwmodis +---------------------------- +--- VARNAME: reffclwtopcnrm: Liquid Cloud Droplet Effective Radius +---------------------------- + * mon_HOMALmon_XY-na_1.0 reffclwtopcnrm +-------------------------- +--- VARNAME: residualFrac: Percentage of Grid Cell That Is Land but neither Vegetation Covered nor Bare Soil +-------------------------- + * mon_Lmon_XY-na_1 residualFrac +---------------- +--- VARNAME: rh: Total Heterotrophic Respiration on Land as Carbon Mass Flux [kgC m-2 s-1] +---------------- + * mon_Lmon_XY-na_1 rh +--------------------- +--- VARNAME: rhGrass: Heterotrophic Respiration on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1] +--------------------- + * mon_Emon_XY-na_2 rhGrass +---------------------- +--- VARNAME: rhLitter: Carbon Mass Flux into Atmosphere Due to Heterotrophic Respiration from Litter on Land +---------------------- + * mon_Emon_XY-na_2 rhLitter +-------------------- +--- VARNAME: rhSoil: Carbon Mass Flux into Atmosphere Due to Heterotrophic Respiration from Soil on Land +-------------------- + * mon_Emon_XY-na_2 rhSoil +-------------------- +--- VARNAME: rhTree: Heterotrophic Respiration on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1] +-------------------- + * mon_Emon_XY-na_2 rhTree +----------------- +--- VARNAME: rld: Downwelling Longwave Radiation +----------------- + * mon_CFmon_XY-AH_1 rld +--------------------- +--- VARNAME: rld4co2: Downwelling Longwave Radiation 4XCO2 Atmosphere +--------------------- + * mon_CFmon_XY-AH_1 rld4co2 +------------------- +--- VARNAME: rldcs: Downwelling Clear-Sky Longwave Radiation +------------------- + * mon_CFmon_XY-AH_1 rldcs +----------------------- +--- VARNAME: rldcs4co2: Downwelling Clear-Sky Longwave Radiation 4XCO2 Atmosphere +----------------------- + * mon_CFmon_XY-AH_1 rldcs4co2 +------------------ +--- VARNAME: rlds: Surface Downwelling Longwave Radiation +------------------ + * day_day_XY-na_1 rlds + * mon_Amon_XY-na_1 rlds +-------------------- +--- VARNAME: rldsaf: Surface Aerosol-Free Downwelling Longwave Radiation +-------------------- + * mon_HOMALmon_XY-na_1.0 rldsaf +-------------------- +--- VARNAME: rldscs: Surface Downwelling Clear-Sky Longwave Radiation +-------------------- + * day_CFday_XY-na_1 rldscs + * mon_Amon_XY-na_1 rldscs +---------------------- +--- VARNAME: rldscsaf: Surface Clear-Sky Aerosol-Free Downwelling Longwave Radiation +---------------------- + * mon_HOMALmon_XY-na_1.0 rldscsaf +----------------- +--- VARNAME: rls: Net Longwave Surface Radiation +----------------- + * mon_Emon_XY-na_1 rls +----------------- +--- VARNAME: rlu: Upwelling Longwave Radiation +----------------- + * mon_CFmon_XY-AH_1 rlu +--------------------- +--- VARNAME: rlu4co2: Upwelling Longwave Radiation 4XCO2 Atmosphere +--------------------- + * mon_CFmon_XY-AH_1 rlu4co2 +------------------- +--- VARNAME: rlucs: Upwelling Clear-Sky Longwave Radiation +------------------- + * mon_CFmon_XY-AH_1 rlucs +----------------------- +--- VARNAME: rlucs4co2: Upwelling Clear-Sky Longwave Radiation 4XCO2 Atmosphere +----------------------- + * mon_CFmon_XY-AH_1 rlucs4co2 +------------------ +--- VARNAME: rlus: Surface Upwelling Longwave Radiation +------------------ + * day_day_XY-na_1 rlus + * mon_Amon_XY-na_1 rlus +-------------------- +--- VARNAME: rlusaf: Surface Aerosol-Free Upwelling Longwave Radiation +-------------------- + * mon_HOMALmon_XY-na_1.0 rlusaf +-------------------- +--- VARNAME: rluscs: Surface Upwelling Longwave Flux in Air Assuming Clear Sky +-------------------- + * mon_HOMALmon_XY-na_1.0 rluscs +---------------------- +--- VARNAME: rluscsaf: Surface Clear-Sky Aerosol-Free Upwelling Longwave Radiation +---------------------- + * mon_HOMALmon_XY-na_1.0 rluscsaf +------------------ +--- VARNAME: rlut: TOA Outgoing Longwave Radiation +------------------ + * day_day_XY-na_1 rlut + * mon_Amon_XY-na_1 rlut + * 1hrCM_E1hrClimMon_XY-na_1 rlut +---------------------- +--- VARNAME: rlut4co2: TOA Outgoing Longwave Radiation 4XCO2 Atmosphere +---------------------- + * mon_CFmon_XY-na_1 rlut4co2 +-------------------- +--- VARNAME: rlutaf: TOA Outgoing Aerosol-Free Longwave Radiation +-------------------- + * mon_AERmon_XY-na_1 rlutaf +-------------------- +--- VARNAME: rlutcs: TOA Outgoing Clear-Sky Longwave Radiation +-------------------- + * day_CFday_XY-na_1 rlutcs + * mon_Amon_XY-na_1 rlutcs + * 1hrCM_E1hrClimMon_XY-na_1 rlutcs +------------------------ +--- VARNAME: rlutcs4co2: TOA Outgoing Clear-Sky Longwave Radiation 4XCO2 Atmosphere +------------------------ + * mon_CFmon_XY-na_1 rlutcs4co2 +---------------------- +--- VARNAME: rlutcsaf: TOA Outgoing Clear-Sky, Aerosol-Free Longwave Radiation +---------------------- + * mon_AERmon_XY-na_1 rlutcsaf +------------------- +--- VARNAME: rootd: Maximum Root Depth +------------------- + * fx_fx_XY-na_1 rootd +----------------- +--- VARNAME: rsd: Downwelling Shortwave Radiation +----------------- + * mon_CFmon_XY-AH_1 rsd +--------------------- +--- VARNAME: rsd4co2: Downwelling Shortwave Radiation 4XCO2 Atmosphere +--------------------- + * mon_CFmon_XY-AH_1 rsd4co2 +------------------- +--- VARNAME: rsdcs: Downwelling Clear-Sky Shortwave Radiation +------------------- + * mon_CFmon_XY-AH_1 rsdcs +----------------------- +--- VARNAME: rsdcs4co2: Downwelling Clear-Sky Shortwave Radiation 4XCO2 Atmosphere +----------------------- + * mon_CFmon_XY-AH_1 rsdcs4co2 +------------------ +--- VARNAME: rsds: Surface Downwelling Shortwave Radiation +------------------ + * day_day_XY-na_1 rsds + * mon_Amon_XY-na_1 rsds +-------------------- +--- VARNAME: rsdsaf: Surface Aerosol-Free Downwelling Shortwave Radiation +-------------------- + * mon_HOMALmon_XY-na_1.0 rsdsaf +-------------------- +--- VARNAME: rsdscs: Surface Downwelling Clear-Sky Shortwave Radiation +-------------------- + * day_CFday_XY-na_1 rsdscs + * mon_Amon_XY-na_1 rsdscs +---------------------- +--- VARNAME: rsdscsaf: Surface Clear-Sky Aerosol-Free Downwelling Shortwave Radiation +---------------------- + * mon_HOMALmon_XY-na_1.0 rsdscsaf +---------------------- +--- VARNAME: rsdsdiff: Surface Diffuse Downwelling Shortwave Radiation +---------------------- + * day_Eday_XY-na_1 rsdsdiff + * mon_Emon_XY-na_1 rsdsdiff +------------------ +--- VARNAME: rsdt: TOA Incident Shortwave Radiation +------------------ + * day_CFday_XY-na_1 rsdt + * mon_Amon_XY-na_1 rsdt + * 1hrCM_E1hrClimMon_XY-na_1 rsdt +----------------- +--- VARNAME: rss: Net Shortwave Surface Radiation +----------------- + * mon_Emon_XY-na_1 rss +----------------- +--- VARNAME: rsu: Upwelling Shortwave Radiation +----------------- + * mon_CFmon_XY-AH_1 rsu +--------------------- +--- VARNAME: rsu4co2: Upwelling Shortwave Radiation 4XCO2 Atmosphere +--------------------- + * mon_CFmon_XY-AH_1 rsu4co2 +------------------- +--- VARNAME: rsucs: Upwelling Clear-Sky Shortwave Radiation +------------------- + * mon_CFmon_XY-AH_1 rsucs +----------------------- +--- VARNAME: rsucs4co2: Upwelling Clear-Sky Shortwave Radiation 4XCO2 Atmosphere +----------------------- + * mon_CFmon_XY-AH_1 rsucs4co2 +------------------ +--- VARNAME: rsus: Surface Upwelling Shortwave Radiation +------------------ + * day_day_XY-na_1 rsus + * mon_Amon_XY-na_1 rsus +-------------------- +--- VARNAME: rsusaf: Surface Aerosol-Free Upwelling Shortwave Radiation +-------------------- + * mon_HOMALmon_XY-na_1.0 rsusaf +-------------------- +--- VARNAME: rsuscs: Surface Upwelling Clear-Sky Shortwave Radiation +-------------------- + * day_CFday_XY-na_1 rsuscs + * mon_Amon_XY-na_1 rsuscs +---------------------- +--- VARNAME: rsuscsaf: Surface Clear-Sky Aerosol-Free Upwelling Shortwave Radiation +---------------------- + * mon_HOMALmon_XY-na_1.0 rsuscsaf +------------------ +--- VARNAME: rsut: TOA Outgoing Shortwave Radiation +------------------ + * day_CFday_XY-na_1 rsut + * mon_Amon_XY-na_1 rsut + * 1hrCM_E1hrClimMon_XY-na_1 rsut +---------------------- +--- VARNAME: rsut4co2: TOA Outgoing Shortwave Radiation in 4XCO2 Atmosphere +---------------------- + * mon_CFmon_XY-na_1 rsut4co2 +-------------------- +--- VARNAME: rsutaf: TOA Outgoing Aerosol-Free Shortwave Radiation +-------------------- + * mon_AERmon_XY-na_1 rsutaf +-------------------- +--- VARNAME: rsutcs: TOA Outgoing Clear-Sky Shortwave Radiation +-------------------- + * day_CFday_XY-na_1 rsutcs + * mon_Amon_XY-na_1 rsutcs + * 1hrCM_E1hrClimMon_XY-na_1 rsutcs +------------------------ +--- VARNAME: rsutcs4co2: TOA Outgoing Clear-Sky Shortwave Radiation 4XCO2 Atmosphere +------------------------ + * mon_CFmon_XY-na_1 rsutcs4co2 +---------------------- +--- VARNAME: rsutcsaf: TOA Outgoing Clear-Sky, Aerosol-Free Shortwave Radiation +---------------------- + * mon_AERmon_XY-na_1 rsutcsaf +------------------ +--- VARNAME: rzwc: Root Zone Soil Moisture +------------------ + * mon_Nonemon_XY-na_1 rzwc +----------------- +--- VARNAME: sbl: Surface Snow and Ice Sublimation Flux +----------------- + * mon_Amon_XY-na_1 sbl + * mon_LImon_XY-na_1 sbl +--------------------- +--- VARNAME: sconcbc: Surface Concentration of Black Carbon +--------------------- + * mon_HOMALmon_XY-na_1.0 sconcbc +----------------------- +--- VARNAME: sconcdust: Surface Concentration of Dust +----------------------- + * mon_Emon_XY-na_1 sconcdust +--------------------- +--- VARNAME: sconcoa: Surface Concentration of Organic Matter +--------------------- + * mon_HOMALmon_XY-na_1.0 sconcoa +---------------------- +--- VARNAME: sconcso4: Surface Concentration of SO4 +---------------------- + * mon_Emon_XY-na_1 sconcso4 +--------------------- +--- VARNAME: sconcss: Surface Concentration of Sea-Salt Aerosol +--------------------- + * mon_Emon_XY-na_1 sconcss +---------------------- +--- VARNAME: sedustCI: Sedimentation Flux of Dust Mode Coarse Insoluble +---------------------- + * mon_Emon_XY-na_1 sedustCI +--------------------- +--- VARNAME: sfcWind: Daily-Mean Near-Surface Wind Speed +--------------------- + * day_day_XY-na_1 sfcWind + * mon_Amon_XY-na_1 sfcWind + Warning: several long names are available: + - Daily-Mean Near-Surface Wind Speed + - Near-Surface Wind Speed +------------------------ +--- VARNAME: sfcWindmax: Daily Maximum Near-Surface Wind Speed +------------------------ + * day_day_XY-na_1 sfcWindmax + * mon_Emon_XY-na_1 sfcWindmax +-------------------- +--- VARNAME: sftgif: Land Ice Area Percentage +-------------------- + * fx_fx_XY-na_1 sftgif + * mon_LImon_XY-na_1 sftgif +-------------------- +--- VARNAME: sftgrf: Grounded Ice Sheet Area Percentage +-------------------- + * fx_Efx_XY-na_1 sftgrf + * mon_LImon_XY-na_1 sftgrf +------------------- +--- VARNAME: sftlf: Percentage of the Grid Cell Occupied by Land (Including Lakes) +------------------- + * fx_fx_XY-na_1 sftlf +--------------------- +--- VARNAME: siconca: Sea-Ice Area Percentage (Atmospheric Grid) +--------------------- + * day_SIday_XY-na_1 siconca + * mon_SImon_XY-na_1 siconca +----------------- +--- VARNAME: snc: Snow Area Percentage +----------------- + * day_day_XY-na_1 snc + * mon_LImon_XY-na_1 snc +------------------ +--- VARNAME: snct: Snow Covered Fraction including vegetation masking over land +------------------ + * mon_HOMALmon_XY-na_1.0 snct +----------------- +--- VARNAME: snd: Snow Depth +----------------- + * mon_LImon_XY-na_1 snd +------------------- +--- VARNAME: sndLa: surface snow thickness over lake +------------------- + * mon_HOMALmon_XY-na_1.0 sndLa +----------------- +--- VARNAME: snm: Surface Snow Melt +----------------- + * mon_LImon_XY-na_1 snm +----------------- +--- VARNAME: snw: Surface Snow Amount +----------------- + * day_day_XY-na_1 snw + * mon_LImon_XY-na_1 snw +----------------- +--- VARNAME: so2: SO2 Volume Mixing Ratio +----------------- + * mon_AERmon_XY-A_1 so2 +----------------------- +--- VARNAME: ssa550aer: Aerosol Single Scattering Albedo at 550 nm +----------------------- + * mon_HOMALmon_XY-na_1.0 ssa550aer +---------------- +--- VARNAME: ta: Air Temperature +---------------- + * day_CFday_XY-A_1 ta + * day_EdayZ_Y-P19_1 ta + * day_day_XY-P8_1 ta + * mon_AERmonZ_Y-P39_1 ta + * mon_Amon_XY-P19_1 ta + * mon_CFmon_XY-A_1 ta + * mon_HOMEPmon_XY-P7HM_1.0 ta + * 3hrPt_CF3hr_XY-A_2 ta +------------------- +--- VARNAME: ta500: Air Temperature +------------------- + * day_Eday_XY-na_1 ta500 +------------------- +--- VARNAME: ta700: Air Temperature +------------------- + * day_CFday_XY-na_1 ta700 +------------------- +--- VARNAME: ta850: Air Temperature +------------------- + * day_Eday_XY-na_1 ta850 +----------------- +--- VARNAME: tas: Near-Surface Air Temperature +----------------- + * day_day_XY-na_1 tas + * mon_Amon_XY-na_1 tas + * mon_ImonGre_na-na_1 tas +-------------------- +--- VARNAME: tasmax: Daily Maximum Near-Surface Air Temperature +-------------------- + * day_day_XY-na_1 tasmax + * mon_Amon_XY-na_1 tasmax +-------------------- +--- VARNAME: tasmin: Daily Minimum Near-Surface Air Temperature +-------------------- + * day_day_XY-na_1 tasmin + * mon_Amon_XY-na_1 tasmin +------------------ +--- VARNAME: tatp: Tropopause Air Temperature +------------------ + * mon_AERmon_XY-na_1 tatp +----------------------- +--- VARNAME: tauimodis: MODIS Ice Cloud Optical Thickness +----------------------- + * mon_HOMALmon_XY-na_1.0 tauimodis + * 3hrPt_HOMAL3hrPt_XY-na_1.0 tauimodis +---------------------- +--- VARNAME: tauisccp: Mean Optical Depth as Calculated by the ISCCP Simulator +---------------------- + * mon_HOMALmon_XY-na_1.0 tauisccp + * 3hrPt_HOMAL3hrPt_XY-na_1.0 tauisccp +----------------------- +--- VARNAME: tautmodis: MODIS Total Cloud Optical Thickness +----------------------- + * mon_HOMALmon_XY-na_1.0 tautmodis + * 3hrPt_HOMAL3hrPt_XY-na_1.0 tautmodis +------------------ +--- VARNAME: tauu: Surface Downward Eastward Wind Stress +------------------ + * day_Eday_XY-na_1 tauu + * mon_Amon_XY-na_1 tauu +------------------ +--- VARNAME: tauv: Surface Downward Northward Wind Stress +------------------ + * day_Eday_XY-na_1 tauv + * mon_Amon_XY-na_1 tauv +----------------------- +--- VARNAME: tauwmodis: MODIS Liquid Cloud Optical Thickness +----------------------- + * mon_HOMALmon_XY-na_1.0 tauwmodis + * 3hrPt_HOMAL3hrPt_XY-na_1.0 tauwmodis +-------------------- +--- VARNAME: tmxlLa: Lake Mixed Layer Temperature +-------------------- + * mon_HOMALmon_XY-na_1.0 tmxlLa +------------------- +--- VARNAME: tnhus: Tendency of Specific Humidity +------------------- + * mon_CFmon_XY-A_1 tnhus +-------------------- +--- VARNAME: tnhusa: Tendency of Specific Humidity Due to Advection +-------------------- + * mon_CFmon_XY-A_1 tnhusa +-------------------- +--- VARNAME: tnhusc: Tendency of Specific Humidity Due to Convection +-------------------- + * mon_CFmon_XY-A_1 tnhusc +--------------------- +--- VARNAME: tnhusmp: Tendency of Specific Humidity Due to Model Physics +--------------------- + * mon_CFmon_XY-A_1 tnhusmp +---------------------- +--- VARNAME: tnhuspbl: Tendency of Specific Humidity Due to Boundary Layer Mixing +---------------------- + * mon_Emon_XY-A_1 tnhuspbl + * subhrPt_Esubhr_S-A_1 tnhuspbl +---------------------- +--- VARNAME: tnhusscp: Tendency of Specific Humidity Due to Stratiform Clouds and Precipitation +---------------------- + * mon_Emon_XY-A_1 tnhusscp + * subhrPt_Esubhr_S-A_1 tnhusscp +------------------------ +--- VARNAME: tnhusscpbl: Tendency of Specific Humidity Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing +------------------------ + * mon_CFmon_XY-A_1 tnhusscpbl +----------------- +--- VARNAME: tnt: Tendency of Air Temperature +----------------- + * mon_CFmon_XY-A_1 tnt +------------------ +--- VARNAME: tnta: Tendency of Air Temperature Due to Advection +------------------ + * mon_CFmon_XY-A_1 tnta +------------------ +--- VARNAME: tntc: Tendency of Air Temperature Due to Convection +------------------ + * mon_CFmon_XY-A_1 tntc +------------------- +--- VARNAME: tntmp: Tendency of Air Temperature Due to Model Physics +------------------- + * mon_CFmon_XY-A_1 tntmp +-------------------- +--- VARNAME: tntpbl: Tendency of Air Temperature Due to Boundary Layer Mixing +-------------------- + * mon_Emon_XY-A_1 tntpbl + * subhrPt_Esubhr_S-A_1 tntpbl +------------------ +--- VARNAME: tntr: Tendency of Air Temperature Due to Radiative Heating +------------------ + * mon_CFmon_XY-A_1 tntr +------------------- +--- VARNAME: tntrl: Tendency of Air Temperature Due to Longwave Radiative Heating +------------------- + * mon_AERmon_XY-A_1 tntrl +--------------------- +--- VARNAME: tntrlcs: Tendency of Air Temperature Due to Clear Sky Longwave Radiative Heating +--------------------- + * mon_Emon_XY-A_1 tntrlcs + * subhrPt_Esubhr_S-A_1 tntrlcs +------------------- +--- VARNAME: tntrs: Tendency of Air Temperature Due to Shortwave Radiative Heating +------------------- + * mon_AERmon_XY-A_1 tntrs +--------------------- +--- VARNAME: tntrscs: Tendency of Air Temperature Due to Clear Sky Shortwave Radiative Heating +--------------------- + * mon_Emon_XY-A_1 tntrscs + * subhrPt_Esubhr_S-A_1 tntrscs +-------------------- +--- VARNAME: tntscp: Tendency of Air Temperature Due to Stratiform Clouds and Precipitation +-------------------- + * mon_Emon_XY-A_1 tntscp + * subhrPt_Esubhr_S-A_1 tntscp +---------------------- +--- VARNAME: tntscpbl: Tendency of Air Temperature Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing +---------------------- + * mon_CFmon_XY-A_1 tntscpbl +----------------- +--- VARNAME: toz: Total Column Ozone +----------------- + * day_AERday_XY-na_1 toz + * mon_AERmon_XY-na_1 toz +----------------- +--- VARNAME: tpf: Permafrost Layer Thickness +----------------- + * mon_LImon_XY-na_1 tpf +------------------ +--- VARNAME: tran: Transpiration +------------------ + * mon_Lmon_XY-na_1 tran +---------------------- +--- VARNAME: treeFrac: Tree Cover Percentage +---------------------- + * mon_Lmon_XY-na_1 treeFrac +---------------- +--- VARNAME: ts: Surface Temperature +---------------- + * day_Eday_XY-na_1 ts + * mon_Amon_XY-na_1 ts +------------------ +--- VARNAME: tsLa: Surface Temperature over Lake +------------------ + * mon_HOMALmon_XY-na_1.0 tsLa +----------------- +--- VARNAME: tsl: Temperature of Soil +----------------- + * mon_Lmon_XY-S_1 tsl +------------------- +--- VARNAME: tslsi: Surface Temperature Where Land or Sea Ice +------------------- + * day_day_XY-na_1 tslsi +----------------- +--- VARNAME: tsn: Snow Internal Temperature +----------------- + * mon_LImon_XY-na_1 tsn +------------------ +--- VARNAME: ttop: Air Temperature at Cloud Top +------------------ + * mon_AERmon_XY-na_1 ttop +---------------- +--- VARNAME: ua: Eastward Wind +---------------- + * day_CFday_XY-A_1 ua + * day_Eday_XY-P19_1 ua + * day_EdayZ_Y-P39_1 ua + * day_day_XY-P8_1 ua + * mon_AERmon_XY-A_1 ua + * mon_AERmonZ_Y-P39_1 ua + * mon_Amon_XY-P19_1 ua + * mon_Emon_XY-P7T_1 ua + * mon_HOMEPmon_XY-P7HM_1.0 ua + * 3hrPt_None3hrPt_XY-A_1 ua +------------------ +--- VARNAME: ua10: Eastward Wind at 10hPa +------------------ + * day_AERday_XY-na_1 ua10 +----------------- +--- VARNAME: uas: Eastward Near-Surface Wind +----------------- + * day_day_XY-na_1 uas + * mon_Amon_XY-na_1 uas +------------------- +--- VARNAME: uqint: Eastward Humidity Transport +------------------- + * mon_Emon_XY-na_1 uqint +----------------------- +--- VARNAME: utendnogw: Eastward Acceleration Due to Non-Orographic Gravity Wave Drag +----------------------- + * mon_Emon_XY-P19_1 utendnogw +---------------------- +--- VARNAME: utendogw: Eastward Acceleration Due to Orographic Gravity Wave Drag +---------------------- + * mon_Emon_XY-P19_1 utendogw +---------------- +--- VARNAME: va: Northward Wind +---------------- + * day_CFday_XY-A_1 va + * day_Eday_XY-P19_1 va + * day_EdayZ_Y-P19_1 va + * day_day_XY-P8_1 va + * mon_AERmon_XY-A_1 va + * mon_AERmonZ_Y-P39_1 va + * mon_Amon_XY-P19_1 va + * mon_Emon_XY-P7T_1 va + * mon_HOMEPmon_XY-P7HM_1.0 va + * 3hrPt_None3hrPt_XY-A_1 va +----------------- +--- VARNAME: vas: Northward Near-Surface Wind +----------------- + * day_day_XY-na_1 vas + * mon_Amon_XY-na_1 vas +--------------------- +--- VARNAME: vegFrac: Total Vegetated Percentage Cover +--------------------- + * mon_Emon_XY-na_1 vegFrac +----------------------- +--- VARNAME: vegstress: Soil Water Stress Index for Plant Transpiration over Land +----------------------- + * mon_HOMALmon_XY-na_1.0 vegstress +------------------- +--- VARNAME: vmrox: Mole Fraction of Odd Oxygen (O, O3 and O1D) +------------------- + * mon_EmonZ_Y-P39_1 vmrox +------------------- +--- VARNAME: vqint: Northward Humidity Transport +------------------- + * mon_Emon_XY-na_1 vqint +------------------- +--- VARNAME: vt100: Northward Eddy Temperature Flux +------------------- + * mon_AERmonZ_Y-na_1 vt100 +---------------- +--- VARNAME: wa: Upward Air Velocity +---------------- + * mon_AERmon_XY-A_1 wa +----------------- +--- VARNAME: wap: Omega (=dp/dt) +----------------- + * day_CFday_XY-A_1 wap + * day_day_XY-P8_1 wap + * mon_Amon_XY-P19_1 wap + * mon_HOMEPmon_XY-P7HM_1.0 wap + * 3hrPt_None3hrPt_XY-A_3 wap + Warning: several long names are available: + - Omega (=dp/dt) + - omega (=dp/dt) +-------------------- +--- VARNAME: wap500: Pressure Tendency +-------------------- + * day_CFday_XY-na_1 wap500 +------------------- +--- VARNAME: wetbc: Wet Deposition Rate of Black Carbon Aerosol Mass +------------------- + * mon_AERmon_XY-na_1 wetbc +--------------------- +--- VARNAME: wetdust: Wet Deposition Rate of Dust +--------------------- + * mon_AERmon_XY-na_1 wetdust +------------------- +--- VARNAME: wetoa: Wet Deposition Rate of Dry Aerosol Total Organic Matter +------------------- + * mon_AERmon_XY-na_1 wetoa +-------------------- +--- VARNAME: wetso4: Wet Deposition Rate of SO4 +-------------------- + * mon_AERmon_XY-na_1 wetso4 +------------------- +--- VARNAME: wetss: Wet Deposition Rate of Sea-Salt Aerosol +------------------- + * mon_AERmon_XY-na_1 wetss +------------------- +--- VARNAME: zfull: Altitude of Model Full-Levels +------------------- + * fx_fx_XY-A_1 zfull + * 3hrPt_CF3hr_XY-A_2 zfull +---------------- +--- VARNAME: zg: Geopotential Height +---------------- + * day_CFday_XY-A_1 zg + * day_EdayZ_Y-P19_1 zg + * mon_AERmon_XY-A_1 zg + * mon_AERmonZ_Y-P39_1 zg + * mon_Amon_XY-P19_1 zg + * mon_HOMEPmon_XY-P7HM_1.0 zg +------------------ +--- VARNAME: zg10: Geopotential Height at 10hPa +------------------ + * day_AERday_XY-na_1 zg10 +------------------- +--- VARNAME: zg100: Geopotential Height at 100hPa +------------------- + * day_AERday_XY-na_1 zg100 +-------------------- +--- VARNAME: zg1000: Geopotential Height at 1000hPa +-------------------- + * day_AERday_XY-na_1 zg1000 +------------------- +--- VARNAME: zg500: Geopotential Height at 500hPa +------------------- + * day_AERday_XY-na_1 zg500 +------------------- +--- VARNAME: zhalf: Altitude of Model Half-Levels +------------------- + * 3hrPt_CF3hr_XY-AH_2 zhalf +------------------- +--- VARNAME: zmtnt: Zonal Mean Diabatic Heating Rates +------------------- + * mon_EmonZ_Y-P39_1 zmtnt +----------------- +--- VARNAME: ztp: Tropopause Altitude Above Geoid +----------------- + * mon_AERmon_XY-na_1 ztp + +Warnings about cell methods (with var list) + Will not explicitly handle time: mean where cloud for vars: {'albisccp', 'pctisccp'} + File structure for diurnal cycle is not yet CF-compliant for vars: {'rlut', 'rlutcs', 'rsdt', 'rsut', 'rsutcs'} + Cannot yet compute maximum hourly rate for vars: {'prhmax'} + time: mean where natural_grasses for vars: {'cLitterGrass', 'cSoilGrass', 'cVegGrass', 'gppGrass', 'nppGrass', 'raGrass', 'rhGrass'} + time: mean where trees for vars: {'cLitterTree', 'cSoilTree', 'cVegTree', 'gppTree', 'nppTree', 'raTree', 'rhTree'} + time: mean where vegetation for vars: {'vegHeight'} + time: mean where ice_sheet for vars: {'hflsIs', 'hfssIs', 'mrroIs', 'orogIs', 'prraIs', 'prsnIs', 'rldsIs', 'rlusIs', 'rsdsIs', 'rsusIs', 'sblIs', 'sncIs', 'snmIs', 'tas', 'tasIs', 'tsIs', 'tsnIs'} + Cannot yet handle time: mean (with samples weighted by snow mass) for vars: {'agesno', 'tsn'} +sync universe +Universe is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +sync projects +Project cmip6 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository +Project cmip7 is in offline mode +Running in offline mode - only using local repositories and databases +Cache db is uptodate from local repository + + ************************************************** +* +* dr2xml version: current_version +* CMIP6 conventions version: v6.2.4 +* CMIP6 Data Request version: current_cmip6_dr + +* + ************************************************** + +************************************************** + +Processing context trip + +************************************************** + +Number of distinct CMOR variables (whatever the grid): 673 + These variables will be processed with multiple grids (rerun with print_multiple_grids set to True for details): ['tos'] +Number of distinct var labels is: 517 +Number of simplified vars is: 673 +Issues with standard names are: [] +homevars file: current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_arpege_GCM.txt current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_surfex_GCM.txt current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_trip_GCM.txt current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_arpege_ESM_AddOn.txt current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_surfex_ESM_AddOn.txt current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_trip_ESM_AddOn.txt current_directory/test_amip_ESM_DR12/input/home_data_request/home_data_request_amip.txt +For extra table CNRM_HOMEPmon (which has 9 variables): + Variables which dim was found in extra coordinates table: + Plev39hm: co no2 o3 + + plev7hm: hus ta ua va wap zg + + Dynamical XY-xxx spatial shapes (shapes not found in DR): + XY-Plev39hm: co no2 o3 + + XY-plev7hm: hus ta ua va wap zg + +For extra table CNRM_HOMALmon (which has 93 variables): + Variables which dim was found in extra coordinates table: + temp: clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun + + Dynamical XY-xxx spatial shapes (shapes not found in DR): + XY-sza5: parasolCRefl + + XY-tau|plev7c: clmodis + + XY-temp: clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun + +For extra table CNRM_HOMAL3hrPt (which has 93 variables): + Variables which dim was found in extra coordinates table: + temp: clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun + + Dynamical XY-xxx spatial shapes (shapes not found in DR): + XY-sza5: parasolCRefl + + XY-tau|plev7c: clmodis + + XY-temp: clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun + +Number of 'cmor', 'dev' and 'perso' among home variables: 245 +Number of 'extra' among home variables: 132 +homevars list: psl ps pr prsn prc rsdscs rsuscs rldscs rsdt rsut rsutcs rsutaf rsutcsaf rlut rlutcs rlutaf rlutcsaf prw clt clwvi clivi intuaw intvaw intuadse intvadse toz ta ua va zg hus hur wap ztp ptp clc cls clic clis clwc clws mcd mcu clc cls clic clis clwc clws prlsns prlsprof prcprof prsnc ta zfull zhalf hus ua va wap tas rsds rsus rlds rlus mrso mrsos mrfso mrros mrro tsl snd snw snc lwsnl mrtws dmlt prveg gpp npp ts evspsbl evspsblpot sbl hfls hfss tasmin tasmax hfdsl albsn cw rzwc mrsow et uas vas sfcWind sfcWindmax hurs huss tauu tauv wtd rivo od550aer od550ss od550dust od550so4 od550bc od550oa abs550aer emiso2 emiss emidust emiso4 emibc emioa dryso2 dryss drydust dryso4 drybc dryoa wetss wetdust wetso4 wetbc wetoa sconcss sconcdust sconcso4 bry ch4 cly h2o hcl hno3 ho2 meanage n2o noy o3 oh lai gppGrass gppTree ra raGrass raTree rh rhSoil rhLitter rhGrass rhTree nppGrass nppTree nep cVeg cVegGrass cVegTree cLitter cSoil cSoilFast cSoilSlow cSoilGrass cSoilTree cSoilMedium cProduct cLand cLeaf cStem cWood cRoot cLitterSurf cLitterSubSurf cLitterBelow cLitterGrass cLitterTree fVegLitter fLitterSoil burntFractionAll fFireNat fFireAll fVegFire fDeforestToAtmos fDeforestToProduct fProductDecomp fLuc nbp cSoilPools tSoilPools airmass areacella cdnc clc cltc co co2 cod h2o hcho hcl hno3 hur hus lwp mcu mmrpm1 n2o no no2 o3 o3loss o3prod od870aer oh orog ps rsdsdiff sftlf so2 ta ta tatp tnhus tnhusa tnhusc tnhusmp tnhusscpbl tnt tnta tntc tntmp tntr tntrl tntrs tntscpbl ttop ua ua va va wa zg zg ta ua va zg hus wap cltl cltm clth rluscs rsdsaf rsusaf rldsaf rlusaf rldscsaf rluscsaf rsdscsaf rsuscsaf lcod icod reffclwtopcnrm reffclitop cdnctop RADasy550aer RADssa550aer RADod550aer RADabs550aer cllcalipsoice clmcalipsoice clhcalipsoice cltcalipsoice cllcalipsoliq clmcalipsoliq clhcalipsoliq cltcalipsoliq cllcalipsoun clmcalipsoun clhcalipsoun cltcalipsoun clcalipsoun clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun parasolCRefl cltlidarradar tauisccp meantbisccp meantbclrisccp clhmodis clmmodis cllmodis tautmodis tauwmodis tauimodis reffclwmodis reffclimodis pctmodis lwpmodis iwpmodis clmodis cllcalipsoice clmcalipsoice clhcalipsoice cltcalipsoice cllcalipsoliq clmcalipsoliq clhcalipsoliq cltcalipsoliq cllcalipsoun clmcalipsoun clhcalipsoun cltcalipsoun clcalipsoun clcalipsotmp clcalipsotmpice clcalipsotmpliq clcalipsotmpun parasolCRefl cltlidarradar tauisccp meantbisccp meantbclrisccp clhmodis clmmodis cllmodis tautmodis tauwmodis tauimodis reffclwmodis reffclimodis pctmodis lwpmodis iwpmodis clmodis albsrfc vegstress snct fsat albsrfcLa sndLa icedLa tsLa tmxlLa fldf fwtd o3 co no2 asy550aer ssa550aer od550acldaer od550ssbin1 od550ssbin2 od550dustbin1 od550dustbin2 TACabs550aer sconcbc sconcoa ext550ss ext550dust ext550so4 ext550bc ext550oa necb fDeforestToL fRegrowth burntArea fFireBCarb carbw carbdis carbin +Error: {'varname': 'et', 'realm': 'land', 'freq': 'mon', 'table': 'NONE'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. +(cSoilPools Emon) HOMEVar: Spatial and Temporal Shapes specified DO NOT match CMORvar ones. -> Provided: (XY-na, time-point) Expected: (XY-na, time-mean) +Error: {'varname': 'cSoilPools', 'realm': 'land', 'freq': 'mon', 'table': 'Emon'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. +(tSoilPools Emon) HOMEVar: Spatial and Temporal Shapes specified DO NOT match CMORvar ones. -> Provided: (XY-na, time-point) Expected: (XY-na, time-mean) +Error: {'varname': 'tSoilPools', 'realm': 'land', 'freq': 'mon', 'table': 'Emon'} HOMEVar announced as cmor but no corresponding CMORVar found => Not taken into account. + +Realms for these CMORvars: aerosol atmos atmos atmosChem atmos land atmosChem land land landIce landIce landIce land ocean ocnBgchem seaIce seaIce ocean +processing file current_directory/test_amip_ESM_DR12/input/xml/ping_surfex.xml: +OK current_directory/test_amip_ESM_DR12/input/xml/ping_surfex.xml +processing file current_directory/test_amip_ESM_DR12/input/xml/ping_trip.xml: +OK current_directory/test_amip_ESM_DR12/input/xml/ping_trip.xml + +file_def written as current_directory/test_amip_ESM_DR12/test_outputs/dr2xml_trip.xml + + +Some Statistics on actually written variables per frequency+shape... + Eday P1 1: rivo + day XY-na -------- --- 1 + + day -------- -------- --- 1 + + fx P1 1: areacellr + fx XY-na -------- --- 1 + + fx -------- -------- --- 1 + + Emon P2 1: wtd + HOMALmon P1 5: carbdis carbin carbw fldf fwtd + mon XY-na -------- --- 6 + + mon -------- -------- --- 6 + + +---------- -------- -------- --- 8 + + +Some Statistics on actually written variables per variable... +----------------------- +--- VARNAME: areacellr: Grid-Cell Area for River Model Variables +----------------------- + * fx_fx_XY-na_1 areacellr +--------------------- +--- VARNAME: carbdis: River carbon Outflow or discharge +--------------------- + * mon_HOMALmon_XY-na_1.0 carbdis +-------------------- +--- VARNAME: carbin: River carbon inflow +-------------------- + * mon_HOMALmon_XY-na_1.0 carbin +------------------- +--- VARNAME: carbw: River carbon storage +------------------- + * mon_HOMALmon_XY-na_1.0 carbw +------------------ +--- VARNAME: fldf: floodplain fraction over land +------------------ + * mon_HOMALmon_XY-na_1.0 fldf +------------------ +--- VARNAME: fwtd: grid-cell fraction allowing upward capillary fluxes from wtd +------------------ + * mon_HOMALmon_XY-na_1.0 fwtd +------------------ +--- VARNAME: rivo: River Discharge +------------------ + * day_Eday_XY-na_1 rivo +----------------- +--- VARNAME: wtd: Water Table Depth +----------------- + * mon_Emon_XY-na_2 wtd diff --git a/tests/test_amip_ESM_DR12/reference_outputs/dr2xml_surfex.xml b/tests/test_amip_ESM_DR12/reference_outputs/dr2xml_surfex.xml new file mode 100644 index 00000000..a1ad0a02 --- /dev/null +++ b/tests/test_amip_ESM_DR12/reference_outputs/dr2xml_surfex.xml @@ -0,0 +1,40791 @@ + + + + + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cod + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cod_average + atmosphere_optical_thickness_due_to_cloud + The optical thickness is the integral along the path of radiation of a volume scattering/absorption/attenuation coefficient. The radiative flux is reduced by a factor exp(-optical_thickness) on traversing the path. A coordinate variable of radiation_wavelength or radiation_frequency can be specified to indicate that the optical thickness applies at specific wavelengths or frequencies. The atmosphere optical thickness applies to radiation passing through the entire atmosphere. "Cloud" means the component of extinction owing to the presence of liquid or ice water particles. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. + Cloud Optical Depth + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od550aer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od550aer_Scallambda550nm_average + atmosphere_optical_thickness_due_to_ambient_aerosol_particles + AOD from the ambient aerosls (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute "wavelength: 550 nm" + Ambient Aerosol Optical Thickness at 550nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + toz + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_toz_average + equivalent_thickness_at_stp_of_atmosphere_ozone_content + Total ozone column + Total Column Ozone + none + m + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ua10 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ua10_p10_Scalp10_average + eastward_wind + Zonal wind on the 10 hPa surface + Eastward Wind at 10hPa + none + m s-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zg1000 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_zg1000_p1000_Scalp1000_average + geopotential_height + Geopotential height on the 1000 hPa surface + Geopotential Height at 1000hPa + none + m + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zg100 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_zg100_p100_Scalp100_average + geopotential_height + Geopotential height on the 100 hPa surface + Geopotential Height at 100hPa + none + m + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zg10 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_zg10_p10_Scalp10_average + geopotential_height + Geopotential height on the 10 hPa surface + Geopotential Height at 10hPa + none + m + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zg500 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_zg500_p500_Scalp500_average + geopotential_height + geopotential height on the 500 hPa surface + Geopotential Height at 500hPa + none + m + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + albisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_albisccp_average + cloud_albedo + time-means are weighted by the ISCCP Total Cloud Fraction - see http://cfmip.metoffice.com/COSP.html + ISCCP Mean Cloud Albedo + none + 1 + area: time: mean where cloud + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ccb + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ccb_average + air_pressure_at_convective_cloud_base + Where convective cloud is present in the grid cell, the instantaneous cloud base altitude should be that of the bottom of the lowest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period. + Air Pressure at Convective Cloud Base + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cct + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cct_average + air_pressure_at_convective_cloud_top + Where convective cloud is present in the grid cell, the instantaneous cloud top altitude should be that of the top of the highest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period. + Air Pressure at Convective Cloud Top + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clhcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clhcalipso_Scalp220_average + cloud_area_fraction_in_atmosphere_layer + Percentage cloud cover in layer centred on 220hPa + CALIPSO High Level Cloud Area Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clivi + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clivi_average + atmosphere_mass_content_of_cloud_ice + calculate mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). This includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Ice Water Path + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cllcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cllcalipso_Scalp840_average + cloud_area_fraction_in_atmosphere_layer + Percentage cloud cover in layer centred on 840hPa + CALIPSO Low Level Cloud Cover Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clmcalipso_Scalp560_average + cloud_area_fraction_in_atmosphere_layer + Percentage cloud cover in layer centred on 560hPa + CALIPSO Mid Level Cloud Cover Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltcalipso_average + cloud_area_fraction + Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observation (CALIPSO) instrument. Includes both large-scale and convective cloud. + CALIPSO Total Cloud Cover Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltisccp_average + cloud_area_fraction + Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the International Satellite Cloud Climatology Project (ISCCP) analysis. Includes both large-scale and convective cloud. (MODIS). Includes both large-scale and convective cloud. + ISCCP Total Cloud Cover Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clwvi + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clwvi_average + atmosphere_mass_content_of_cloud_condensed_water + calculate mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Condensed Water Path + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + pctisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_pctisccp_average + air_pressure_at_cloud_top + time-means are weighted by the ISCCP Total Cloud Fraction - see http://cfmip.metoffice.com/COSP.html + ISCCP Mean Cloud Top Pressure + none + Pa + area: time: mean where cloud + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ps + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rldscs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rldscs_average + surface_downwelling_longwave_flux_in_air_assuming_clear_sky + Surface downwelling clear-sky longwave radiation + Surface Downwelling Clear-Sky Longwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlutcs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlutcs_average + toa_outgoing_longwave_flux_assuming_clear_sky + Upwelling clear-sky longwave radiation at top of atmosphere + TOA Outgoing Clear-Sky Longwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsdscs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsdscs_average + surface_downwelling_shortwave_flux_in_air_assuming_clear_sky + Surface solar irradiance clear sky for UV calculations + Surface Downwelling Clear-Sky Shortwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsdt + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsdt_average + toa_incoming_shortwave_flux + Shortwave radiation incident at the top of the atmosphere + TOA Incident Shortwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsuscs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsuscs_average + surface_upwelling_shortwave_flux_in_air_assuming_clear_sky + Surface Upwelling Clear-sky Shortwave Radiation + Surface Upwelling Clear-Sky Shortwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsut + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsut_average + toa_outgoing_shortwave_flux + at the top of the atmosphere + TOA Outgoing Shortwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsutcs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsutcs_average + toa_outgoing_shortwave_flux_assuming_clear_sky + Calculated in the absence of clouds. + TOA Outgoing Clear-Sky Shortwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ta700 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ta700_p700_Scalp700_average + air_temperature + Air temperature at 700hPa + Air Temperature + none + K + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + wap500 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_wap500_p500_Scalp500_average + lagrangian_tendency_of_air_pressure + at 500 hPa level; commonly referred to as "omega", this represents the vertical component of velocity in pressure coordinates (positive down) + Pressure Tendency + none + Pa s-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cl_average + cloud_area_fraction_in_atmosphere_layer + Percentage cloud cover, including both large-scale and convective cloud. + Percentage Cloud Cover + none + % + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cli + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cli_average + mass_fraction_of_cloud_ice_in_air + Calculated as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Mass Fraction of Cloud Ice + none + kg kg-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clw + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clw_average + mass_fraction_of_cloud_liquid_water_in_air + Calculated as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Mass Fraction of Cloud Liquid Water + none + kg kg-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hur + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hur_average + relative_humidity + This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. + Relative Humidity + none + % + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hus + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hus_average + specific_humidity + Specific humidity is the mass fraction of water vapor in (moist) air. + Specific Humidity + none + 1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mc_average + atmosphere_net_upward_convective_mass_flux + The net mass flux should represent the difference between the updraft and downdraft components. This is calculated as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud). + Convective Mass Flux + up + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ta + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ta_average + air_temperature + Air Temperature + Air Temperature + none + K + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ua + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ua_average + eastward_wind + Zonal wind (positive in a eastward direction). + Eastward Wind + none + m s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + va + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_va_average + northward_wind + Meridional wind (positive in a northward direction). + Northward Wind + none + m s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + wap + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_wap_average + lagrangian_tendency_of_air_pressure + commonly referred to as "omega", this represents the vertical component of velocity in pressure coordinates (positive down) + Omega (=dp/dt) + none + Pa s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zg + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_zg_average + geopotential_height + Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. + Geopotential Height + none + m + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipso_average + cloud_area_fraction_in_atmosphere_layer + Percentage cloud cover in CALIPSO standard atmospheric layers. + CALIPSO Percentage Cloud Cover + none + % + time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clisccp_average + cloud_area_fraction_in_atmosphere_layer + Percentage cloud cover in optical depth categories. + ISCCP Cloud Area Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clivic + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clivic_average + atmosphere_mass_content_of_convective_cloud_ice + calculate mass of convective ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). This includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Convective Ice Water Path + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clwvic + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clwvic_average + atmosphere_mass_content_of_convective_cloud_condensed_water + calculate mass of convective condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Convective Condensed Water Path + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hus850 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hus850_p850_Scalp850_average + specific_humidity + Specific Humidity + Specific Humidity + none + 1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + loadbc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_loadbc_average + atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles + The total dry mass of black carbon aerosol particles per unit area. + Load of Black Carbon Aerosol + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + loaddust + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_loaddust_average + atmosphere_mass_content_of_dust_dry_aerosol_particles + The total dry mass of dust aerosol particles per unit area. + Load of Dust + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + loadoa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_loadoa_average + atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles + atmosphere dry organic content: This is the vertically integrated sum of atmosphere_primary_organic_content and atmosphere_secondary_organic_content (see next two table entries). + Load of Dry Aerosol Organic Matter + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + loadso4 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_loadso4_average + atmosphere_mass_content_of_sulfate_dry_aerosol_particles + The total dry mass of sulfate aerosol particles per unit area. + Load of SO4 + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + loadss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_loadss_average + atmosphere_mass_content_of_sea_salt_dry_aerosol_particles + The total dry mass of sea salt aerosol particles per unit area. + Load of Sea-Salt Aerosol + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsdsdiff + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsdsdiff_average + surface_diffuse_downwelling_shortwave_flux_in_air + Surface downwelling solar irradiance from diffuse radiation for UV calculations. + Surface Diffuse Downwelling Shortwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ta500 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ta500_p500_Scalp500_average + air_temperature + Temperature on the 500 hPa surface + Air Temperature + none + K + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ta850 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ta850_p850_Scalp850_average + air_temperature + Air temperature at 850hPa + Air Temperature + none + K + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tauu + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tauu_average + surface_downward_eastward_stress + Downward eastward wind stress at the surface + Surface Downward Eastward Wind Stress + down + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tauv + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tauv_average + surface_downward_northward_stress + surface, now requesting daily output. + Surface Downward Northward Wind Stress + down + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ts + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ts_average + surface_temperature + Surface temperature (skin for open ocean) + Surface Temperature + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + parasolRefl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_parasolRefl_average + toa_bidirectional_reflectance + PARASOL Reflectance + PARASOL Reflectance + none + 1 + area: mean where sea time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + jpdftaureicemodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_jpdftaureicemodis_average + cloud_area_fraction_in_atmosphere_layer + MODIS Optical Thickness-Particle Size joint distribution, ice + MODIS Joint Distribution of Optical Thickness and Particle Size, Ice + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + jpdftaureliqmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_jpdftaureliqmodis_average + cloud_area_fraction_in_atmosphere_layer + MODIS Optical Thickness-Particle Size joint distribution, liquid + MODIS Optical Thickness-Particle Size Joint Distribution, Liquid + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ua + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ua_plev19_average + eastward_wind + Zonal wind (positive in a eastward direction). + Eastward Wind + none + m s-1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + va + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_va_plev19_average + northward_wind + Meridional wind (positive in a northward direction). + Northward Wind + none + m s-1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + EdayZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hus + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hus_plev19_average_1d_glat_average + specific_humidity + zonal mean; hence YZT + Specific Humidity + none + 1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + EdayZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ta + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ta_plev19_average_1d_glat_average + air_temperature + zonal mean; hence YZT + Air Temperature + none + K + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + EdayZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ua + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ua_plev39_average_1d_glat_average + eastward_wind + zonal mean; hence YZT + Eastward Wind + none + m s-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + EdayZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + va + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_va_plev19_average_1d_glat_average + northward_wind + zonal mean; hence YZT + Northward Wind + none + m s-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + EdayZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zg + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_zg_plev19_average_1d_glat_average + geopotential_height + zonal mean; hence YZT + Geopotential Height + none + m + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + fx + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Efx + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sftgrf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + grounded_ice_sheet_area_fraction + This is needed to distinguish between grounded glaciated ice (grounded = ice sheet and glacier) and ice shelves (floating over sea water), since land_ice is by definition ice sheet, glacier and ice shelves + Grounded Ice Sheet Area Percentage + none + % + area: mean + area: areacella + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + seaIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + SIday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + siconca + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_siconca_Scaltypesi_average + sea_ice_area_fraction + Percentage of grid cell covered by sea ice + Sea-Ice Area Percentage (Atmospheric Grid) + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clt + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clt_average + cloud_area_fraction + for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud. + Total Cloud Cover Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hfls + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hfls_average + surface_upward_latent_heat_flux + The surface called "surface" means the lower boundary of the atmosphere. "Upward" indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, "flux" implies per unit area, called "flux density" in physics. + Surface Upward Latent Heat Flux + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hfss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hfss_average + surface_upward_sensible_heat_flux + The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air. + Surface Upward Sensible Heat Flux + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hurs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hurs_Scalheight2m_average + relative_humidity + This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. + Near-Surface Relative Humidity + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hursmax + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + relative_humidity + This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. + Daily Maximum Near-Surface Relative Humidity + none + % + area: mean time: maximum + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hursmin + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + relative_humidity + This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. + Daily Minimum Near-Surface Relative Humidity + none + % + area: mean time: minimum + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + huss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_huss_Scalheight2m_average + specific_humidity + Near-surface (usually, 2 meter) specific humidity. + Near-Surface Specific Humidity + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrro + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mrro_average + runoff_flux + computed as the total runoff (including "drainage" through the base of the soil model) leaving the land portion of the grid cell divided by the land area in the grid cell. + Total Runoff + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mrso_average + mass_content_of_water_in_soil + the mass per unit area (summed over all soil layers) of water in all phases. + Total Soil Moisture Content + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrsos + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mrsos_Scalsdepth1_average + mass_content_of_water_in_soil_layer + the mass of water in all phases in a thin surface soil layer. + Moisture in Upper Portion of Soil Column + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + pr + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_pr_average + precipitation_flux + at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) + Precipitation + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + prc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_prc_average + convective_precipitation_flux + at surface; includes both liquid and solid phases. + Convective Precipitation + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + prsn + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_prsn_average + snowfall_flux + at surface; includes precipitation of all forms of water in the solid phase + Snowfall Flux + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + psl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_psl_average + air_pressure_at_mean_sea_level + Sea Level Pressure + Sea Level Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlds + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlds_average + surface_downwelling_longwave_flux_in_air + The surface called "surface" means the lower boundary of the atmosphere. "longwave" means longwave radiation. Downwelling radiation is radiation from above. It does not mean "net downward". When thought of as being incident on a surface, a radiative flux is sometimes called "irradiance". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called "vector irradiance". In accordance with common usage in geophysical disciplines, "flux" implies per unit area, called "flux density" in physics. + Surface Downwelling Longwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlus + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlus_average + surface_upwelling_longwave_flux_in_air + The surface called "surface" means the lower boundary of the atmosphere. "longwave" means longwave radiation. Upwelling radiation is radiation from below. It does not mean "net upward". When thought of as being incident on a surface, a radiative flux is sometimes called "irradiance". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called "vector irradiance". In accordance with common usage in geophysical disciplines, "flux" implies per unit area, called "flux density" in physics. + Surface Upwelling Longwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlut + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlut_average + toa_outgoing_longwave_flux + at the top of the atmosphere. + TOA Outgoing Longwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsds + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsds_average + surface_downwelling_shortwave_flux_in_air + Surface solar irradiance for UV calculations. + Surface Downwelling Shortwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsus + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsus_average + surface_upwelling_shortwave_flux_in_air + The surface called "surface" means the lower boundary of the atmosphere. "shortwave" means shortwave radiation. Upwelling radiation is radiation from below. It does not mean "net upward". When thought of as being incident on a surface, a radiative flux is sometimes called "irradiance". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called "vector irradiance". In accordance with common usage in geophysical disciplines, "flux" implies per unit area, called "flux density" in physics. + Surface Upwelling Shortwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sfcWind + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sfcWind_Scalheight10m_average + wind_speed + near-surface (usually, 10 meters) wind speed. + Daily-Mean Near-Surface Wind Speed + none + m s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sfcWindmax + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + wind_speed + Daily maximum near-surface (usually, 10 meters) wind speed. + Daily Maximum Near-Surface Wind Speed + none + m s-1 + area: mean time: maximum + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + snc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_snc_average + ISBA snow cover over bare ground comparable with stallite data (Psng in equation C1 in Decharme et al. 2016) + surface_snow_area_fraction + Percentage of each grid cell that is occupied by snow that rests on land portion of cell. + Snow Area Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + snw + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_snw_average + surface_snow_amount + the mass of surface snow on the land portion of the grid cell divided by the land area in the grid cell; reported as missing where the land fraction is 0; excludes snow on vegetation canopy or on sea ice. + Surface Snow Amount + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tas + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tas_Scalheight2m_average + air_temperature + near-surface (usually, 2 meter) air temperature + Near-Surface Air Temperature + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tasmax + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + air_temperature + maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute "time: max") + Daily Maximum Near-Surface Air Temperature + none + K + area: mean time: maximum + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tasmin + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + air_temperature + minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute "time: min") + Daily Minimum Near-Surface Air Temperature + none + K + area: mean time: minimum + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tslsi + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tslsi_average + surface_temperature + Surface temperature of all surfaces except open ocean. + Surface Temperature Where Land or Sea Ice + none + K + area: time: mean (comment: over land and sea ice) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + uas + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_uas_Scalheight10m_average + eastward_wind + Eastward component of the near-surface (usually, 10 meters) wind + Eastward Near-Surface Wind + none + m s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + vas + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_vas_Scalheight10m_average + northward_wind + Northward component of the near surface wind + Northward Near-Surface Wind + none + m s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hur + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hur_plev8_average + relative_humidity + This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. + Relative Humidity + none + % + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hus + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hus_plev8_average + specific_humidity + Specific humidity is the mass fraction of water vapor in (moist) air. + Specific Humidity + none + 1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ta + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ta_plev8_average + air_temperature + Air Temperature + Air Temperature + none + K + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ua + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ua_plev8_average + eastward_wind + Zonal wind (positive in a eastward direction). + Eastward Wind + none + m s-1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + va + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_va_plev8_average + northward_wind + Meridional wind (positive in a northward direction). + Northward Wind + none + m s-1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + day + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + wap + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_wap_plev8_average + lagrangian_tendency_of_air_pressure + commonly referred to as "omega", this represents the vertical component of velocity in pressure coordinates (positive down) + Omega (=dp/dt) + none + Pa s-1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + fx + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + fx + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + areacella + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cell_area + Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). + Grid-Cell Area for Atmospheric Grid Variables + none + m2 + area: sum + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + fx + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + fx + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrsofc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + soil_moisture_content_at_field_capacity + reported "where land": divide the total water holding capacity of all the soil in the grid cell by the land area in the grid cell; reported as "missing" where the land fraction is 0. + Capacity of Soil to Store Water (Field Capacity) + none + kg m-2 + area: mean where land + area: areacella + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + fx + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + fx + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + orog + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + surface_altitude + height above the geoid; as defined here, "the geoid" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Reported here is the height above the present-day geoid (0.0 over ocean). + Surface Altitude + none + m + area: mean + area: areacella + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + fx + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + fx + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rootd + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + root_depth + report the maximum soil depth reachable by plant roots (if defined in model), i.e., the maximum soil depth from which they can extract moisture; report as "missing" where the land fraction is 0. + Maximum Root Depth + none + m + area: mean + area: areacella + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + fx + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + fx + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sftgif + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + land_ice_area_fraction + fraction of grid cell occupied by "permanent" ice (i.e., glaciers). + Land Ice Area Percentage + none + % + area: mean + area: areacella + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + fx + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + fx + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sftlf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + land_area_fraction + Percentage of horizontal area occupied by land. + Percentage of the Grid Cell Occupied by Land (Including Lakes) + none + % + area: mean + area: areacella + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + fx + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + fx + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zfull + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + height_above_reference_ellipsoid + Provide only if altitude of full model levels is fixed + Altitude of Model Full-Levels + none + m + area: mean + area: areacella + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + airmass + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_airmass_average + atmosphere_mass_of_air_per_unit_area + The mass of air in an atmospheric layer. + Vertically Integrated Mass Content of Air in Layer + none + kg m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cdnc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cdnc_average + number_concentration_of_cloud_liquid_water_particles_in_air + Cloud Droplet Number Concentration in liquid water clouds. + Cloud Liquid Droplet Number Concentration + none + m-3 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ch4 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ch4_average + mole_fraction_of_methane_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + Mole Fraction of CH4 + none + mol mol-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_co2_average + mole_fraction_of_carbon_dioxide_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + Mole Fraction of CO2 + none + mol mol-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + co + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_co_average + mole_fraction_of_carbon_monoxide_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + CO Volume Mixing Ratio + none + mol mol-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + h2o + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_h2o_average + mass_fraction_of_water_in_air + includes all phases of water + Mass Fraction of Water + none + 1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hcho + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hcho_average + mole_fraction_of_formaldehyde_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + Formaldehyde Volume Mixing Ratio + none + mol mol-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hcl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hcl_average + mole_fraction_of_hydrogen_chloride_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of hydrogen chloride is HCl. + HCl Volume Mixing Ratio + none + mol mol-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hno3 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hno3_average + mole_fraction_of_nitric_acid_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + HNO3 Volume Mixing Ratio + none + mol mol-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mmrbc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mmrbc_average + mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air + Dry mass fraction of black carbon aerosol particles in air. + Elemental Carbon Mass Mixing Ratio + none + kg kg-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mmrdust + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mmrdust_average + mass_fraction_of_dust_dry_aerosol_particles_in_air + Dry mass fraction of dust aerosol particles in air. + Dust Aerosol Mass Mixing Ratio + none + kg kg-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mmroa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mmroa_average + mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air + We recommend a scale factor of POM=1.4*OC, unless your model has more detailed info available. + Total Organic Aerosol Mass Mixing Ratio + none + kg kg-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mmrpm1 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mmrpm1_average + mass_fraction_of_pm1_dry_aerosol_particles_in_air + Mass fraction atmospheric particulate compounds with an aerodynamic diameter of less than or equal to 1 micrometers + PM1.0 Mass Mixing Ratio + none + kg kg-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mmrso4 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mmrso4_average + mass_fraction_of_sulfate_dry_aerosol_particles_in_air + Dry mass of sulfate (SO4) in aerosol particles as a fraction of air mass. + Aerosol Sulfate Mass Mixing Ratio + none + kg kg-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mmrss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mmrss_average + mass_fraction_of_sea_salt_dry_aerosol_particles_in_air + Mass fraction in the atmosphere of sea salt aerosol (dry mass). + Sea-Salt Aerosol Mass Mixing Ratio + none + kg kg-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + n2o + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_n2o_average + mole_fraction_of_nitrous_oxide_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of nitrous oxide is N2O. + Mole Fraction of N2O + none + mol mol-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + no2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_no2_average + mole_fraction_of_nitrogen_dioxide_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + NO2 Volume Mixing Ratio + none + mol mol-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + no + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_no_average + mole_fraction_of_nitrogen_monoxide_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + NO Volume Mixing Ratio + none + mol mol-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + o3 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_o3_average + mole_fraction_of_ozone_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + Mole Fraction of O3 + none + mol mol-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + o3loss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_o3loss_average + tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_destruction + ONLY provide the sum of the following reactions: (i) O(1D)+H2O; (ii) O3+HO2; (iii) O3+OH; (iv) O3+alkenes (isoprene, ethene,...) + O3 Destruction Rate + none + mol m-3 s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + o3prod + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_o3prod_average + tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_production + ONLY provide the sum of all the HO2/RO2 + NO reactions (as k*[HO2]*[NO]) + O3 Production Rate + none + mol m-3 s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + oh + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_oh_average + mole_fraction_of_hydroxyl_radical_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + OH Volume Mixing Ratio + none + mol mol-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + so2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_so2_average + mole_fraction_of_sulfur_dioxide_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + SO2 Volume Mixing Ratio + none + mol mol-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntrl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tntrl_average + tendency_of_air_temperature_due_to_longwave_heating + longwave heating rates + Tendency of Air Temperature Due to Longwave Radiative Heating + none + K s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntrs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tntrs_average + tendency_of_air_temperature_due_to_shortwave_heating + shortwave heating rates + Tendency of Air Temperature Due to Shortwave Radiative Heating + none + K s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ua + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ua_average + eastward_wind + Zonal wind (positive in a eastward direction). + Eastward Wind + none + m s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + va + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_va_average + northward_wind + Meridional wind (positive in a northward direction). + Northward Wind + none + m s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + wa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_wa_average + upward_air_velocity + A velocity is a vector quantity. "Upward" indicates a vector component which is positive when directed upward (negative downward). Upward air velocity is the vertical component of the 3D air velocity vector. The standard name downward_air_velocity may be used for a vector component with the opposite sign convention. + Upward Air Velocity + none + m s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zg + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_zg_average + geopotential_height + Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. + Geopotential Height + none + m + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + abs550aer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_abs550aer_Scallambda550nm_average + atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles + Optical thickness of atmospheric aerosols at wavelength 550 nanometers. + Ambient Aerosol Absorption Optical Thickness at 550nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltc_average + convective_cloud_area_fraction + Convective cloud fraction + Convective Cloud Cover Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cod + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cod_average + atmosphere_optical_thickness_due_to_cloud + The optical thickness is the integral along the path of radiation of a volume scattering/absorption/attenuation coefficient. The radiative flux is reduced by a factor exp(-optical_thickness) on traversing the path. A coordinate variable of radiation_wavelength or radiation_frequency can be specified to indicate that the optical thickness applies at specific wavelengths or frequencies. The atmosphere optical thickness applies to radiation passing through the entire atmosphere. "Cloud" means the component of extinction owing to the presence of liquid or ice water particles. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. + Cloud Optical Depth + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + drybc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_drybc_average + minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition + Dry Deposition Rate of Black Carbon Aerosol Mass + Dry Deposition Rate of Black Carbon Aerosol Mass + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + drydust + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_drydust_average + minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition + Dry Deposition Rate of Dust + Dry Deposition Rate of Dust + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + dryoa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_dryoa_average + minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition + Dry Deposition Rate of Dry Aerosol Total Organic Matter + Dry Deposition Rate of Dry Aerosol Total Organic Matter + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + dryso2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_dryso2_average + minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition + Dry Deposition Rate of SO2 + Dry Deposition Rate of SO2 + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + dryso4 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_dryso4_average + minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition + Dry Deposition Rate of SO4 + Dry Deposition Rate of SO4 + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + dryss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_dryss_average + minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition + Dry Deposition Rate of Sea-Salt Aerosol + Dry Deposition Rate of Sea-Salt Aerosol + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + emibc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_emibc_average + tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission + Integrate 3D emission field vertically to 2d field. + Total Emission Rate of Black Carbon Aerosol Mass + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + emidust + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_emidust_average + tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission + Integrate 3D emission field vertically to 2d field. + Total Emission Rate of Dust + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + emioa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_emioa_average + tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission + This is the sum of total emission of POA and total production of SOA (emipoa+chepsoa). ""Mass"" refers to the mass of organic matter, not mass of organic carbon alone. We recommend a scale factor of POM=1.4*OC, unless your model has more detailed info available. Integrate 3D chemical production and emission field vertically to 2d field. + Primary Emission and Chemical Production of Dry Aerosol Organic Matter + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + emiso2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_emiso2_average + tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission + Integrate 3D emission field vertically to 2d field. + Total Emission Rate of SO2 + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + emiso4 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_emiso4_average + tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_emission + Direct primary emission does not include secondary sulfate production. Integrate 3D emission field vertically to 2d field. + Total Direct Emission Rate of SO4 + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + emiss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_emiss_average + tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission + Integrate 3D emission field vertically to 2d field. + Total Emission Rate of Sea-Salt Aerosol + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + lwp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_lwp_average + atmosphere_mass_content_of_cloud_liquid_water + The total mass of liquid water in cloud per unit area. + Liquid Water Path + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od440aer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od440aer_average + atmosphere_optical_thickness_due_to_ambient_aerosol_particles + AOD from the ambient aerosls (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute "wavelength: 440 nm" + Ambient Aerosol Optical Thickness at 440nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od550aer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od550aer_Scallambda550nm_average + atmosphere_optical_thickness_due_to_ambient_aerosol_particles + AOD from ambient aerosols (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute "wavelength: 550 nm" + Ambient Aerosol Optical Thickness at 550nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od550bc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od550bc_Scallambda550nm_average + atmosphere_optical_thickness_due_to_black_carbon_ambient_aerosol + Total aerosol AOD due to black carbon aerosol at a wavelength of 550 nanometres. + Black Carbon Optical Thickness at 550nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od550dust + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od550dust_Scallambda550nm_average + atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles + Total aerosol AOD due to dust aerosol at a wavelength of 550 nanometres. + Dust Optical Thickness at 550nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od550lt1aer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od550lt1aer_Scallambda550nm_average + atmosphere_optical_thickness_due_to_pm1_ambient_aerosol_particles + od550 due to particles with wet diameter less than 1 um (""ambient"" means ""wetted""). When models do not include explicit size information, it can be assumed that all anthropogenic aerosols and natural secondary aerosols have diameter less than 1 um. + Ambient Fine Aerosol Optical Depth at 550nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od550oa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od550oa_Scallambda550nm_average + atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles + total organic aerosol AOD, comprises all organic aerosols, primary + secondary ; natural + anthropogenic including biomasss burning organic aerosol + Total Organic Aerosol Optical Depth at 550nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od550so4 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od550so4_Scallambda550nm_average + atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles + Total aerosol AOD due to sulfate aerosol at a wavelength of 550 nanometres. + Sulfate Aerosol Optical Depth at 550nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od550ss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od550ss_Scallambda550nm_average + atmosphere_optical_thickness_due_to_sea_salt_ambient_aerosol_particles + Total aerosol AOD due to sea salt aerosol at a wavelength of 550 nanometres. + Sea-Salt Aerosol Optical Depth at 550nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od870aer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od870aer_average + atmosphere_optical_thickness_due_to_ambient_aerosol_particles + AOD from the ambient aerosls (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute "wavelength: 870 nm" + Ambient Aerosol Optical Depth at 870nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ps + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ptp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ptp_average + tropopause_air_pressure + 2D monthly mean thermal tropopause calculated using WMO tropopause definition on 3d temperature + Tropopause Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlutaf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlutaf_average + toa_outgoing_longwave_flux + Flux corresponding to rlut resulting fom aerosol-free call to radiation + TOA Outgoing Aerosol-Free Longwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlutcsaf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlutcsaf_average + toa_outgoing_longwave_flux_assuming_clear_sky + Flux corresponding to rlutcs resulting fom aerosol-free call to radiation + TOA Outgoing Clear-Sky, Aerosol-Free Longwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsutaf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsutaf_average + toa_outgoing_shortwave_flux + Flux corresponding to rsut resulting fom aerosol-free call to radiation + TOA Outgoing Aerosol-Free Shortwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsutcsaf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsutcsaf_average + toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol + Flux corresponding to rsutcs resulting fom aerosol-free call to radiation + TOA Outgoing Clear-Sky, Aerosol-Free Shortwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tatp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tatp_average + tropopause_air_temperature + 2D monthly mean thermal tropopause calculated using WMO tropopause definition on 3d temperature + Tropopause Air Temperature + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + toz + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_toz_average + equivalent_thickness_at_stp_of_atmosphere_ozone_content + total ozone column in DU + Total Column Ozone + none + m + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ttop + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ttop_average + air_temperature_at_cloud_top + cloud_top refers to the top of the highest cloud. Air temperature is the bulk temperature of the air, not the surface (skin) temperature. + Air Temperature at Cloud Top + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + wetbc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_wetbc_average + minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition + Surface deposition rate of black carbon (dry mass) due to wet processes + Wet Deposition Rate of Black Carbon Aerosol Mass + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + wetdust + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_wetdust_average + minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition + Surface deposition rate of dust (dry mass) due to wet processes + Wet Deposition Rate of Dust + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + wetoa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_wetoa_average + minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition + Deposition rate of organic matter in aerosols (measured by the dry mass) due to wet processes + Wet Deposition Rate of Dry Aerosol Total Organic Matter + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + wetso4 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_wetso4_average + minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition + proposed name: tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_due_to_wet_deposition + Wet Deposition Rate of SO4 + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + wetss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_wetss_average + minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition + Deposition rate of sea salt aerosols (measured by the dry mass) due to wet processes + Wet Deposition Rate of Sea-Salt Aerosol + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ztp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ztp_average + tropopause_altitude + 2D monthly mean thermal tropopause calculated using WMO tropopause definition on 3d temperature + Tropopause Altitude Above Geoid + none + m + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + bry + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_bry_plev39_average_1mo_glat_average + mole_fraction_of_inorganic_bromine_in_air + Total family (the sum of all appropriate species in the model) ; list the species in the netCDF header, e.g. Bry = Br + BrO + HOBr + HBr + BrONO2 + BrCl Definition: Total inorganic bromine (e.g., HBr and inorganic bromine oxides and radicals (e.g., BrO, atomic bromine (Br), bromine nitrate (BrONO2)) resulting from degradation of bromine-containing organicsource gases (halons, methyl bromide, VSLS), and natural inorganic bromine sources (e.g., volcanoes, sea salt, and other aerosols) add comment attribute with detailed description about how the model calculates these fields + Total Inorganic Bromine Volume Mixing Ratio + none + mol mol-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ch4 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ch4_plev39_average_1mo_glat_average + mole_fraction_of_methane_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + Mole Fraction of CH4 + none + mol mol-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cly + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cly_plev39_average_1mo_glat_average + mole_fraction_of_inorganic_chlorine_in_air + Total family (the sum of all appropriate species in the model) ; list the species in the netCDF header, e.g. Cly = HCl + ClONO2 + HOCl + ClO + Cl + 2*Cl2O2 +2Cl2 + OClO + BrCl Definition: Total inorganic stratospheric chlorine (e.g., HCl, ClO) resulting from degradation of chlorine-containing source gases (CFCs, HCFCs, VSLS), and natural inorganic chlorine sources (e.g., sea salt and other aerosols) add comment attribute with detailed description about how the model calculates these fields + Total Inorganic Chlorine Volume Mixing Ratio + none + mol mol-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + h2o + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_h2o_plev39_average_1mo_glat_average + mass_fraction_of_water_in_air + includes all phases of water + Mass Fraction of Water + none + 1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hcl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hcl_plev39_average_1mo_glat_average + mole_fraction_of_hydrogen_chloride_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of hydrogen chloride is HCl. + HCl Volume Mixing Ratio + none + mol mol-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hno3 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hno3_plev39_average_1mo_glat_average + mole_fraction_of_nitric_acid_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + HNO3 Volume Mixing Ratio + none + mol mol-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ho2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ho2_plev39_average_1mo_glat_average + mole_fraction_of_hydroperoxyl_radical_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of hydroperoxyl radical is HO2. + HO2 Volume Mixing Ratio + none + mol mol-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + meanage + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_meanage_plev39_average_1mo_glat_average + age_of_stratospheric_air + The mean age of air is defined as the mean time that a stratospheric air mass has been out of contact with the well-mixed troposphere. + Mean Age of Stratospheric Air + none + yr + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + n2o + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_n2o_plev39_average_1mo_glat_average + mole_fraction_of_nitrous_oxide_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of nitrous oxide is N2O. + Mole Fraction of N2O + none + mol mol-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + noy + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_noy_plev39_average_1mo_glat_average + mole_fraction_of_noy_expressed_as_nitrogen_in_air + Total family (the sum of all appropriate species in the model); list the species in the netCDF header, e.g. NOy = N + NO + NO2 + NO3 + HNO3 + 2N2O5 + HNO4 + ClONO2 + BrONO2 Definition: Total reactive nitrogen; usually includes atomic nitrogen (N), nitric oxide (NO), NO2, nitrogen trioxide (NO3), dinitrogen radical (N2O5), nitric acid (HNO3), peroxynitric acid (HNO4), BrONO2, ClONO2 add comment attribute with detailed description about how the model calculates these fields + Total Reactive Nitrogen Volume Mixing Ratio + none + mol mol-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + o3 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_o3_plev39_average_1mo_glat_average + mole_fraction_of_ozone_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + Mole Fraction of O3 + none + mol mol-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + oh + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_oh_plev39_average_1mo_glat_average + mole_fraction_of_hydroxyl_radical_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + OH Volume Mixing Ratio + none + mol mol-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ta + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ta_plev39_average_1mo_glat_average + air_temperature + Air Temperature + Air Temperature + none + K + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ua + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ua_plev39_average_1mo_glat_average + eastward_wind + Zonal wind (positive in a eastward direction). + Eastward Wind + none + m s-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + va + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_va_plev39_average_1mo_glat_average + northward_wind + Meridional wind (positive in a northward direction). + Northward Wind + none + m s-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + vt100 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_vt100_p100_Scalp100_average_1mo_glat_average + covariance_over_longitude_of_northward_wind_and_air_temperature + Zonally averaged eddy temperature flux at 100hPa as monthly means derived from daily (or higher frequency) fields. + Northward Eddy Temperature Flux + none + K m s-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + AERmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zg + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_zg_plev39_average_1mo_glat_average + geopotential_height + Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. + Geopotential Height + none + m + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos atmosChem + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ch4 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ch4_plev19_average + mole_fraction_of_methane_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + Mole Fraction of CH4 + none + mol mol-1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_co2_plev19_average + mole_fraction_of_carbon_dioxide_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + Mole Fraction of CO2 + none + mol mol-1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hur + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hur_plev19_average + relative_humidity + This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. + Relative Humidity + none + % + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hus + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hus_plev19_average + specific_humidity + Specific humidity is the mass fraction of water vapor in (moist) air. + Specific Humidity + none + 1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos atmosChem + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + n2o + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_n2o_plev19_average + mole_fraction_of_nitrous_oxide_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of nitrous oxide is N2O. + Mole Fraction of N2O + none + mol mol-1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos atmosChem + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + o3 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_o3_plev19_average + mole_fraction_of_ozone_in_air + Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. + Mole Fraction of O3 + none + mol mol-1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ta + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ta_plev19_average + air_temperature + Air Temperature + Air Temperature + none + K + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ua + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ua_plev19_average + eastward_wind + Zonal wind (positive in a eastward direction). + Eastward Wind + none + m s-1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + va + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_va_plev19_average + northward_wind + Meridional wind (positive in a northward direction). + Northward Wind + none + m s-1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + wap + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_wap_plev19_average + lagrangian_tendency_of_air_pressure + commonly referred to as "omega", this represents the vertical component of velocity in pressure coordinates (positive down) + Omega (=dp/dt) + none + Pa s-1 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zg + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_zg_plev19_average + geopotential_height + Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. + Geopotential Height + none + m + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cl_average + cloud_area_fraction_in_atmosphere_layer + Includes both large-scale and convective cloud. + Percentage Cloud Cover + none + % + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + not, in general, the same as mean sea-level pressure + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cli + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cli_average + mass_fraction_of_cloud_ice_in_air + Includes both large-scale and convective cloud. This is calculated as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. It includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Mass Fraction of Cloud Ice + none + kg kg-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + not, in general, the same as mean sea-level pressure + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clw + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clw_average + mass_fraction_of_cloud_liquid_water_in_air + Includes both large-scale and convective cloud. Calculate as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cells. Precipitating hydrometeors are included ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Mass Fraction of Cloud Liquid Water + none + kg kg-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + not, in general, the same as mean sea-level pressure + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mc_average + atmosphere_net_upward_convective_mass_flux + The net mass flux should represent the difference between the updraft and downdraft components. The flux is computed as the mass divided by the area of the grid cell. + Convective Mass Flux + up + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + not, in general, the same as mean sea-level pressure + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ccb + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ccb_average + air_pressure_at_convective_cloud_base + Where convective cloud is present in the grid cell, the instantaneous cloud base altitude should be that of the bottom of the lowest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period. + Air Pressure at Convective Cloud Base + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cct + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cct_average + air_pressure_at_convective_cloud_top + Where convective cloud is present in the grid cell, the instantaneous cloud top altitude should be that of the top of the highest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period. + Air Pressure at Convective Cloud Top + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ci + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ci_average + convection_time_fraction + Fraction of time that convection occurs in the grid cell . + Fraction of Time Convection Occurs in Cell + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clivi + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clivi_average + atmosphere_mass_content_of_cloud_ice + mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. + Ice Water Path + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clt + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clt_average + cloud_area_fraction + for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud. + Total Cloud Cover Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clwvi + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clwvi_average + atmosphere_mass_content_of_cloud_condensed_water + mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. + Condensed Water Path + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + evspsbl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_evspsbl_average + water_evapotranspiration_flux + at surface; flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation) + Evaporation Including Sublimation and Transpiration + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fco2antt + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fco2antt_average + tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission + This is requested only for the emission-driven coupled carbon climate model runs. Does not include natural fire sources but, includes all anthropogenic sources, including fossil fuel use, cement production, agricultural burning, and sources associated with anthropogenic land use change excluding forest regrowth. + Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2 [kgC m-2 s-1] + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fco2fos + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fco2fos_average + tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion + This is the prescribed anthropogenic CO2 flux from fossil fuel use, including cement production, and flaring (but not from land-use changes, agricultural burning, forest regrowth, etc.) + Carbon Mass Flux into Atmosphere Due to Fossil Fuel Emissions of CO2 [kgC m-2 s-1] + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fco2nat + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fco2nat_average + surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources + This is what the atmosphere sees (on its own grid). This field should be equivalent to the combined natural fluxes of carbon (requested in the L_mon and O_mon tables) that account for natural exchanges between the atmosphere and land or ocean reservoirs (i.e., "net ecosystem biospheric productivity", for land, and "air to sea CO2 flux", for ocean.) + Surface Carbon Mass Flux into the Atmosphere Due to Natural Sources [kgC m-2 s-1] + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hfls + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hfls_average + surface_upward_latent_heat_flux + includes both evaporation and sublimation + Surface Upward Latent Heat Flux + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hfss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hfss_average + surface_upward_sensible_heat_flux + The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air. + Surface Upward Sensible Heat Flux + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hurs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hurs_Scalheight2m_average + relative_humidity + This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. + Near-Surface Relative Humidity + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + huss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_huss_Scalheight2m_average + specific_humidity + Near-surface (usually, 2 meter) specific humidity. + Near-Surface Specific Humidity + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + pr + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_pr_average + precipitation_flux + at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) + Precipitation + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + prc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_prc_average + convective_precipitation_flux + at surface; includes both liquid and solid phases. + Convective Precipitation + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + prsn + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_prsn_average + snowfall_flux + at surface; includes precipitation of all forms of water in the solid phase + Snowfall Flux + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + prw + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_prw_average + atmosphere_mass_content_of_water_vapor + vertically integrated through the atmospheric column + Water Vapor Path + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ps + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ps_average + surface_air_pressure + not, in general, the same as mean sea-level pressure + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + psl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_psl_average + air_pressure_at_mean_sea_level + not, in general, the same as surface pressure + Sea Level Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlds + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlds_average + surface_downwelling_longwave_flux_in_air + The surface called "surface" means the lower boundary of the atmosphere. "longwave" means longwave radiation. Downwelling radiation is radiation from above. It does not mean "net downward". When thought of as being incident on a surface, a radiative flux is sometimes called "irradiance". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called "vector irradiance". In accordance with common usage in geophysical disciplines, "flux" implies per unit area, called "flux density" in physics. + Surface Downwelling Longwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rldscs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rldscs_average + surface_downwelling_longwave_flux_in_air_assuming_clear_sky + Surface downwelling clear-sky longwave radiation + Surface Downwelling Clear-Sky Longwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlus + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlus_average + surface_upwelling_longwave_flux_in_air + The surface called "surface" means the lower boundary of the atmosphere. "longwave" means longwave radiation. Upwelling radiation is radiation from below. It does not mean "net upward". When thought of as being incident on a surface, a radiative flux is sometimes called "irradiance". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called "vector irradiance". In accordance with common usage in geophysical disciplines, "flux" implies per unit area, called "flux density" in physics. + Surface Upwelling Longwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlut + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlut_average + toa_outgoing_longwave_flux + at the top of the atmosphere (to be compared with satellite measurements) + TOA Outgoing Longwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlutcs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlutcs_average + toa_outgoing_longwave_flux_assuming_clear_sky + Upwelling clear-sky longwave radiation at top of atmosphere + TOA Outgoing Clear-Sky Longwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsds + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsds_average + surface_downwelling_shortwave_flux_in_air + Surface solar irradiance for UV calculations. + Surface Downwelling Shortwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsdscs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsdscs_average + surface_downwelling_shortwave_flux_in_air_assuming_clear_sky + Surface solar irradiance clear sky for UV calculations + Surface Downwelling Clear-Sky Shortwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsdt + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsdt_average + toa_incoming_shortwave_flux + at the top of the atmosphere + TOA Incident Shortwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsus + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsus_average + surface_upwelling_shortwave_flux_in_air + The surface called "surface" means the lower boundary of the atmosphere. "shortwave" means shortwave radiation. Upwelling radiation is radiation from below. It does not mean "net upward". When thought of as being incident on a surface, a radiative flux is sometimes called "irradiance". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called "vector irradiance". In accordance with common usage in geophysical disciplines, "flux" implies per unit area, called "flux density" in physics. + Surface Upwelling Shortwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsuscs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsuscs_average + surface_upwelling_shortwave_flux_in_air_assuming_clear_sky + Surface Upwelling Clear-sky Shortwave Radiation + Surface Upwelling Clear-Sky Shortwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsut + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsut_average + toa_outgoing_shortwave_flux + at the top of the atmosphere + TOA Outgoing Shortwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsutcs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsutcs_average + toa_outgoing_shortwave_flux_assuming_clear_sky + Calculated in the absence of clouds. + TOA Outgoing Clear-Sky Shortwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sbl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sbl_average + tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice + The snow and ice sublimation flux is the loss of snow and ice mass from the surface resulting from their conversion to water vapor that enters the atmosphere. + Surface Snow and Ice Sublimation Flux + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sfcWind + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sfcWind_Scalheight10m_average + wind_speed + This is the mean of the speed, not the speed computed from the mean u and v components of wind + Near-Surface Wind Speed + none + m s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tas + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tas_Scalheight2m_average + air_temperature + near-surface (usually, 2 meter) air temperature + Near-Surface Air Temperature + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tasmax + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tasmax_Scalheight2m_average + air_temperature + monthly mean of the daily-maximum near-surface air temperature. + Daily Maximum Near-Surface Air Temperature + none + K + area: mean time: maximum within days time: mean over days + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tasmin + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tasmin_Scalheight2m_average + air_temperature + monthly mean of the daily-minimum near-surface air temperature. + Daily Minimum Near-Surface Air Temperature + none + K + area: mean time: minimum within days time: mean over days + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tauu + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tauu_average + surface_downward_eastward_stress + Downward eastward wind stress at the surface + Surface Downward Eastward Wind Stress + down + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tauv + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tauv_average + surface_downward_northward_stress + Downward northward wind stress at the surface + Surface Downward Northward Wind Stress + down + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ts + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ts_average + surface_temperature + Surface temperature (skin for open ocean) + Surface Temperature + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + uas + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_uas_Scalheight10m_average + eastward_wind + Eastward component of the near-surface (usually, 10 meters) wind + Eastward Near-Surface Wind + none + m s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Amon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + vas + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_vas_Scalheight10m_average + northward_wind + Northward component of the near surface wind + Northward Near-Surface Wind + none + m s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipso_average + cloud_area_fraction_in_atmosphere_layer + Percentage cloud cover in CALIPSO standard atmospheric layers. + CALIPSO Percentage Cloud Cover + none + % + time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clc_average + convective_cloud_area_fraction_in_atmosphere_layer + Include only convective cloud. + Convective Cloud Area Percentage + none + % + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clic + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clic_average + mass_fraction_of_convective_cloud_ice_in_air + Calculated as the mass of convective cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Mass Fraction of Convective Cloud Ice + none + 1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clis_average + mass_fraction_of_stratiform_cloud_ice_in_air + Calculated as the mass of stratiform cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Mass Fraction of Stratiform Cloud Ice + none + 1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cls + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cls_average + stratiform_cloud_area_fraction_in_atmosphere_layer + Cloud area fraction (reported as a percentage) for the whole atmospheric column due to stratiform clouds, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud. + Percentage Cover of Stratiform Cloud + none + % + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clwc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clwc_average + mass_fraction_of_convective_cloud_liquid_water_in_air + Calculated as the mass of convective cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Mass Fraction of Convective Cloud Liquid Water + none + 1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clws + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clws_average + mass_fraction_of_stratiform_cloud_liquid_water_in_air + Calculated as the mass of stratiform cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Mass Fraction of Stratiform Cloud Liquid Water + none + 1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hur + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hur_average + relative_humidity + The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. + Relative Humidity + none + % + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hus + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hus_average + specific_humidity + Specific humidity is the mass fraction of water vapor in (moist) air. + Specific Humidity + none + 1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mcd + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mcd_average + atmosphere_downdraft_convective_mass_flux + Calculated as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud). + Downdraft Convective Mass Flux + down + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mcu + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mcu_average + atmosphere_updraft_convective_mass_flux + Calculated as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud). + Convective Updraft Mass Flux + up + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rld4co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rld4co2_average + downwelling_longwave_flux_in_air + Downwelling longwave radiation calculated using carbon dioxide concentrations increased fourfold (includes the fluxes at the surface and TOA) + Downwelling Longwave Radiation 4XCO2 Atmosphere + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rld + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rld_average + downwelling_longwave_flux_in_air + Includes also the fluxes at the surface and TOA. + Downwelling Longwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rldcs4co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rldcs4co2_average + downwelling_longwave_flux_in_air_assuming_clear_sky + Downwelling clear-sky longwave radiation calculated using carbon dioxide concentrations increased fourfold (includes the fluxes at the surface and TOA) + Downwelling Clear-Sky Longwave Radiation 4XCO2 Atmosphere + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rldcs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rldcs_average + downwelling_longwave_flux_in_air_assuming_clear_sky + Includes also the fluxes at the surface and TOA. + Downwelling Clear-Sky Longwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlu4co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlu4co2_average + upwelling_longwave_flux_in_air + Upwelling longwave radiation calculated using carbon dioxide concentrations increased fourfold (includes the fluxes at the surface and TOA) + Upwelling Longwave Radiation 4XCO2 Atmosphere + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlu + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlu_average + upwelling_longwave_flux_in_air + Includes also the fluxes at the surface and TOA. + Upwelling Longwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlucs4co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlucs4co2_average + upwelling_longwave_flux_in_air_assuming_clear_sky + Upwelling clear-sky longwave radiation calculated using carbon dioxide concentrations increased fourfold (includes the fluxes at the surface and TOA) + Upwelling Clear-Sky Longwave Radiation 4XCO2 Atmosphere + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlucs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlucs_average + upwelling_longwave_flux_in_air_assuming_clear_sky + Includes also the fluxes at the surface and TOA. + Upwelling Clear-Sky Longwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsd4co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsd4co2_average + downwelling_shortwave_flux_in_air + Downwelling shortwave radiation calculated using carbon dioxide concentrations increased fourfold + Downwelling Shortwave Radiation 4XCO2 Atmosphere + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsd + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsd_average + downwelling_shortwave_flux_in_air + Includes also the fluxes at the surface and TOA. + Downwelling Shortwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsdcs4co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsdcs4co2_average + downwelling_shortwave_flux_in_air_assuming_clear_sky + Downwelling clear-sky shortwave radiation calculated using carbon dioxide concentrations increased fourfold + Downwelling Clear-Sky Shortwave Radiation 4XCO2 Atmosphere + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsdcs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsdcs_average + downwelling_shortwave_flux_in_air_assuming_clear_sky + Includes also the fluxes at the surface and TOA. + Downwelling Clear-Sky Shortwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsu4co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsu4co2_average + upwelling_shortwave_flux_in_air + Upwelling Shortwave Radiation calculated using carbon dioxide concentrations increased fourfold + Upwelling Shortwave Radiation 4XCO2 Atmosphere + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsu + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsu_average + upwelling_shortwave_flux_in_air + Includes also the fluxes at the surface and TOA. + Upwelling Shortwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsucs4co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsucs4co2_average + upwelling_shortwave_flux_in_air_assuming_clear_sky + Upwelling clear-sky shortwave radiation calculated using carbon dioxide concentrations increased fourfold + Upwelling Clear-Sky Shortwave Radiation 4XCO2 Atmosphere + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsucs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsucs_average + upwelling_shortwave_flux_in_air_assuming_clear_sky + Includes also the fluxes at the surface and TOA. + Upwelling Clear-Sky Shortwave Radiation + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ta + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ta_average + air_temperature + Air Temperature + Air Temperature + none + K + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tnhus + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tnhus_average + tendency_of_specific_humidity + Tendency of Specific Humidity + Tendency of Specific Humidity + none + s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tnhusa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tnhusa_average + tendency_of_specific_humidity_due_to_advection + Tendency of Specific Humidity due to Advection + Tendency of Specific Humidity Due to Advection + none + s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tnhusc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tnhusc_average + tendency_of_specific_humidity_due_to_convection + Tendencies from cumulus convection scheme. + Tendency of Specific Humidity Due to Convection + none + s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tnhusmp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tnhusmp_average + tendency_of_specific_humidity_due_to_model_physics + This includes sources and sinks from parametrized moist physics (e.g. convection, boundary layer, stratiform condensation/evaporation, etc.) and excludes sources and sinks from resolved dynamics or from horizontal or vertical numerical diffusion not associated with model physicsl. For example any diffusive mixing by the boundary layer scheme would be included. + Tendency of Specific Humidity Due to Model Physics + none + s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tnhusscpbl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tnhusscpbl_average + tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing + To be specified only in models which do not separate budget terms for stratiform cloud, precipitation and boundary layer schemes. Includes all bounday layer terms including and diffusive terms. + Tendency of Specific Humidity Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing + none + s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tnt + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tnt_average + tendency_of_air_temperature + Tendency of Air Temperature + Tendency of Air Temperature + none + K s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tnta + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tnta_average + tendency_of_air_temperature_due_to_advection + Tendency of Air Temperature due to Advection + Tendency of Air Temperature Due to Advection + none + K s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tntc_average + tendency_of_air_temperature_due_to_convection + Tendencies from cumulus convection scheme. + Tendency of Air Temperature Due to Convection + none + K s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntmp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tntmp_average + tendency_of_air_temperature_due_to_model_physics + This includes sources and sinks from parametrized physics (e.g. radiation, convection, boundary layer, stratiform condensation/evaporation, etc.). It excludes sources and sinks from resolved dynamics and numerical diffusion not associated with parametrized physics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be included, while numerical diffusion applied in addition to physics or resolved dynamics should be excluded. This term is required to check the closure of the heat budget. + Tendency of Air Temperature Due to Model Physics + none + K s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntr + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tntr_average + tendency_of_air_temperature_due_to_radiative_heating + Tendency of Air Temperature due to Radiative Heating + Tendency of Air Temperature Due to Radiative Heating + none + K s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntscpbl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tntscpbl_average + tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing + To be specified only in models which do not separate cloud, precipitation and boundary layer terms. Includes all boundary layer terms including diffusive ones. + Tendency of Air Temperature Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing + none + K s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + albisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_albisccp_average + cloud_albedo + time-means weighted by the ISCCP Total Cloud Fraction - see http://cfmip.metoffice.com/COSP.html + ISCCP Mean Cloud Albedo + none + 1 + area: time: mean where cloud + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clhcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clhcalipso_Scalp220_average + cloud_area_fraction_in_atmosphere_layer + Percentage cloud cover in layer centred on 220hPa + CALIPSO High Level Cloud Area Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cllcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cllcalipso_Scalp840_average + cloud_area_fraction_in_atmosphere_layer + Percentage cloud cover in layer centred on 840hPa + CALIPSO Low Level Cloud Cover Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clmcalipso_Scalp560_average + cloud_area_fraction_in_atmosphere_layer + Percentage cloud cover in layer centred on 560hPa + CALIPSO Mid Level Cloud Cover Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltcalipso_average + cloud_area_fraction + Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observation (CALIPSO) instrument. Includes both large-scale and convective cloud. + CALIPSO Total Cloud Cover Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltisccp_average + cloud_area_fraction + Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the International Satellite Cloud Climatology Project (ISCCP) analysis. Includes both large-scale and convective cloud. (MODIS). Includes both large-scale and convective cloud. + ISCCP Total Cloud Cover Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + pctisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_pctisccp_average + air_pressure_at_cloud_top + time-means weighted by the ISCCP Total Cloud Fraction - see http://cfmip.metoffice.com/COSP.html + ISCCP Mean Cloud Top Pressure + none + Pa + area: time: mean where cloud + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlut4co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlut4co2_average + toa_outgoing_longwave_flux + Top-of-atmosphere outgoing longwave radiation calculated using carbon dioxide concentrations increased fourfold + TOA Outgoing Longwave Radiation 4XCO2 Atmosphere + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlutcs4co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlutcs4co2_average + toa_outgoing_longwave_flux_assuming_clear_sky + Top-of-atmosphere outgoing clear-sky longwave radiation calculated using carbon dioxide concentrations increased fourfold + TOA Outgoing Clear-Sky Longwave Radiation 4XCO2 Atmosphere + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsut4co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsut4co2_average + toa_outgoing_shortwave_flux + TOA Outgoing Shortwave Radiation calculated using carbon dioxide concentrations increased fourfold + TOA Outgoing Shortwave Radiation in 4XCO2 Atmosphere + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsutcs4co2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsutcs4co2_average + toa_outgoing_shortwave_flux_assuming_clear_sky + TOA Outgoing Clear-Sky Shortwave Radiation calculated using carbon dioxide concentrations increased fourfold + TOA Outgoing Clear-Sky Shortwave Radiation 4XCO2 Atmosphere + up + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CFmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clisccp_average + cloud_area_fraction_in_atmosphere_layer + Percentage cloud cover in optical depth categories. + ISCCP Cloud Area Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 1hrCM + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E1hrClimMon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlut + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlut_split24h_average + toa_outgoing_longwave_flux + at the top of the atmosphere (to be compared with satellite measurements) + TOA Outgoing Longwave Radiation + up + none + W m-2 + area: mean time: mean within days time: mean over days + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 1hrCM + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E1hrClimMon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlutcs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlutcs_split24h_average + toa_outgoing_longwave_flux_assuming_clear_sky + Upwelling clear-sky longwave radiation at top of atmosphere + TOA Outgoing Clear-Sky Longwave Radiation + up + none + W m-2 + area: mean time: mean within days time: mean over days + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 1hrCM + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E1hrClimMon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsdt + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsdt_split24h_average + toa_incoming_shortwave_flux + Shortwave radiation incident at the top of the atmosphere + TOA Incident Shortwave Radiation + down + none + W m-2 + area: mean time: mean within days time: mean over days + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 1hrCM + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E1hrClimMon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsut + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsut_split24h_average + toa_outgoing_shortwave_flux + at the top of the atmosphere + TOA Outgoing Shortwave Radiation + up + none + W m-2 + area: mean time: mean within days time: mean over days + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 1hrCM + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E1hrClimMon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsutcs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsutcs_split24h_average + toa_outgoing_shortwave_flux_assuming_clear_sky + Calculated in the absence of clouds. + TOA Outgoing Clear-Sky Shortwave Radiation + up + none + W m-2 + area: mean time: mean within days time: mean over days + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipsoice + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipsoice_average + ice_cloud_area_fraction_in_atmosphere_layer + CALIPSO Ice Cloud Fraction + CALIPSO Ice Cloud Percentage + none + % + time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipsoliq + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipsoliq_average + liquid_water_cloud_area_fraction_in_atmosphere_layer + CALIPSO Liquid Cloud Fraction + CALIPSO Liquid Cloud Percentage + none + % + time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + jpdftaureicemodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_jpdftaureicemodis_average + cloud_area_fraction_in_atmosphere_layer + MODIS Optical Thickness-Particle Size joint distribution, ice + MODIS Joint Distribution of Optical Thickness and Particle Size, Ice + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + jpdftaureliqmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_jpdftaureliqmodis_average + cloud_area_fraction_in_atmosphere_layer + MODIS Optical Thickness-Particle Size joint distribution, liquid + MODIS Optical Thickness-Particle Size Joint Distribution, Liquid + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + utendnogw + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_utendnogw_plev19_average + tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag + Tendency of the eastward wind by parameterized nonorographic gravity waves. + Eastward Acceleration Due to Non-Orographic Gravity Wave Drag + none + m s-2 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + utendogw + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_utendogw_plev19_average + tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag + Tendency of the eastward wind by parameterized orographic gravity waves. + Eastward Acceleration Due to Orographic Gravity Wave Drag + none + m s-2 + time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrsfl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mrsfl_average + frozen_water_content_of_soil_layer + in each soil layer, the mass of water in ice phase. Reported as "missing" for grid cells occupied entirely by "sea" + Frozen Water Content of Soil Layer + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrsll + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mrsll_average + liquid_water_content_of_soil_layer + in each soil layer, the mass of water in liquid phase. Reported as "missing" for grid cells occupied entirely by "sea" + Liquid Water Content of Soil Layer + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmisr + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clmisr_average + cloud_area_fraction_in_atmosphere_layer + MISR cloud area fraction + Percentage Cloud Cover as Calculated by the MISR Simulator (Including Error Flag) + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + concdust + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_concdust_average + mass_concentration_of_dust_dry_aerosol_particles_in_air + Mass concentration means mass per unit volume and is used in the construction mass_concentration_of_X_in_Y, where X is a material constituent of Y. A chemical species denoted by X may be described by a single term such as "nitrogen" or a phrase such as "nox_expressed_as_nitrogen". "Aerosol" means the system of suspended liquid or solid particles in air (except cloud droplets) and their carrier gas, the air itself. Aerosol particles take up ambient water (a process known as hygroscopic growth) depending on the relative humidity and the composition of the particles. "Dry aerosol particles" means aerosol particles without any water uptake. + Concentration of Dust + none + kg m-3 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tnhuspbl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tnhuspbl_average + tendency_of_specific_humidity_due_to_boundary_layer_mixing + Includes all boundary layer terms including diffusive terms. + Tendency of Specific Humidity Due to Boundary Layer Mixing + none + s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tnhusscp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tnhusscp_average + tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation + The phrase "tendency_of_X" means derivative of X with respect to time. "Specific" means per unit mass. Specific humidity is the mass fraction of water vapor in (moist) air. The specification of a physical process by the phrase "due_to_" process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. A variable with the standard name of tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation should contain the effects of all processes which convert stratiform clouds and precipitation to or from water vapor. In an atmosphere model, stratiform cloud is that produced by large-scale convergence (not the convection schemes). + Tendency of Specific Humidity Due to Stratiform Clouds and Precipitation + none + s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntpbl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tntpbl_average + tendency_of_air_temperature_due_to_boundary_layer_mixing + Includes all boundary layer terms including diffusive terms. + Tendency of Air Temperature Due to Boundary Layer Mixing + none + K s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntrlcs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tntrlcs_average + tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky + Tendency of Air Temperature due to Clear Sky Longwave Radiative Heating + Tendency of Air Temperature Due to Clear Sky Longwave Radiative Heating + none + K s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntrscs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tntrscs_average + tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky + Tendency of Air Temperature due to Clear Sky Shortwave Radiative Heating + Tendency of Air Temperature Due to Clear Sky Shortwave Radiative Heating + none + K s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntscp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tntscp_average + tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation + The phrase "tendency_of_X" means derivative of X with respect to time. Air temperature is the bulk temperature of the air, not the surface (skin) temperature. The specification of a physical process by the phrase "due_to_" process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. A variable with the standard name tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation should contain net latent heating effects of all processes which convert stratiform clouds and precipitation between water vapour, liquid or ice phases. In an atmosphere model, stratiform cloud is that produced by large-scale convergence (not the convection schemes). + Tendency of Air Temperature Due to Stratiform Clouds and Precipitation + none + K s-1 + area: time: mean + area: areacella + 900 s + + @CMIP6_ps_average + surface_air_pressure + surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Surface Air Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cLand + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cLand_average + mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products + Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction. + Total Carbon in All Terrestrial Carbon Pools + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cLitterGrass + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cLitterGrass_average + litter_mass_content_of_carbon + "Litter" is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between "fine" and "coarse" is model dependent. "Content" indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon. + Carbon Mass in Litter on Grass Tiles + none + kg m-2 + area: time: mean where natural_grasses (comment: mask=grassFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cLitterSubSurf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cLitterSubSurf_average + subsurface_litter_mass_content_of_carbon + subsurface litter pool fed by root inputs. + Carbon Mass in Below-Ground Litter + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cLitterSurf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cLitterSurf_average + surface_litter_mass_content_of_carbon + Surface or near-surface litter pool fed by leaf and above-ground litterfall + Carbon Mass in Above-Ground Litter + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cLitterTree + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cLitterTree_average + litter_mass_content_of_carbon + "Litter" is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between "fine" and "coarse" is model dependent. "Content" indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon. + Carbon Mass in Litter on Tree Tiles + none + kg m-2 + area: time: mean where trees (comment: mask=treeFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cSoilGrass + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cSoilGrass_average + soil_mass_content_of_carbon + "Content" indicates a quantity per unit area. The "soil content" of a quantity refers to the vertical integral from the surface down to the bottom of the soil model. For the content between specified levels in the soil, standard names including content_of_soil_layer are used. + Carbon Mass in Soil on Grass Tiles + none + kg m-2 + area: time: mean where natural_grasses (comment: mask=grassFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cSoilTree + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cSoilTree_average + soil_mass_content_of_carbon + "Content" indicates a quantity per unit area. The "soil content" of a quantity refers to the vertical integral from the surface down to the bottom of the soil model. For the content between specified levels in the soil, standard names including content_of_soil_layer are used. + Carbon Mass in Soil on Tree Tiles + none + kg m-2 + area: time: mean where trees (comment: mask=treeFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cSoil + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cSoil_average + soil_mass_content_of_carbon + Carbon mass in the full depth of the soil model. + Carbon Mass in Model Soil Pool + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cStem + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cStem_average + stem_mass_content_of_carbon + including sapwood and hardwood. + Carbon Mass in Stem + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cVegGrass + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cVegGrass_average + vegetation_carbon_content + "Content" indicates a quantity per unit area. "Vegetation" means any plants e.g. trees, shrubs, grass. Plants are autotrophs i.e. "producers" of biomass using carbon obtained from carbon dioxide. + Carbon Mass in Vegetation on Grass Tiles + none + kg m-2 + area: time: mean where natural_grasses (comment: mask=grassFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cVegTree + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cVegTree_average + vegetation_carbon_content + "Content" indicates a quantity per unit area. "Vegetation" means any plants e.g. trees, shrubs, grass. Plants are autotrophs i.e. "producers" of biomass using carbon obtained from carbon dioxide. + Carbon Mass in Vegetation on Tree Tiles + none + kg m-2 + area: time: mean where trees (comment: mask=treeFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cWood + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cWood_average + stem_mass_content_of_carbon + Carbon Mass in Wood + Carbon Mass in Wood + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + climodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_climodis_average + ice_cloud_area_fraction + MODIS Ice Cloud Fraction + MODIS Ice Cloud Area Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltmodis_average + cloud_area_fraction + MODIS Total Cloud Fraction + MODIS Total Cloud Cover Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clwmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clwmodis_average + liquid_water_cloud_area_fraction + MODIS Liquid Cloud Fraction + MODIS Liquid Cloud Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clwvic + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clwvic_average + atmosphere_mass_content_of_convective_cloud_condensed_water + Convective Condensed Water Path + Convective Condensed Water Path + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cropFracC3 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cropFracC3_Scaltypec3crop_average + area_fraction + Percentage of entire grid cell covered by C3 crops + Percentage Cover by C3 Crops + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cropFracC4 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cropFracC4_Scaltypec4crop_average + area_fraction + Percentage of entire grid cell covered by C4 crops + Percentage Cover by C4 Crops + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + evspsblpot + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_evspsblpot_average + water_potential_evaporation_flux + at surface; potential flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation) + Potential Evapotranspiration + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fAnthDisturb + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fAnthDisturb_average + tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission + Anthropogenic flux of carbon as carbon dioxide into the atmosphere. That is, emissions influenced, caused, or created by human activity. Anthropogenic emission of carbon dioxide includes fossil fuel use, cement production, agricultural burning and sources associated with anthropogenic land use change, except forest regrowth. + Carbon Mass Flux from Vegetation, Litter or Soil Pools into the Atmosphere Due to any Human Activity [kgC m-2 s-1] + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fDeforestToAtmos + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fDeforestToAtmos_average + surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change + When land use change results in deforestation of natural vegetation (trees or grasslands) then natural biomass is removed. The treatment of deforested biomass differs significantly across models, but it should be straight-forward to compare deforested biomass across models. + Deforested Biomass That Goes into Atmosphere as a Result of Anthropogenic Land-Use Change [kgC m-2 s-1] + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fDeforestToProduct + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fDeforestToProduct_average + carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change + When land use change results in deforestation of natural vegetation (trees or grasslands) then natural biomass is removed. The treatment of deforested biomass differs significantly across models, but it should be straight-forward to compare deforested biomass across models. + Deforested Biomass That Goes into Product Pool as a Result of Anthropogenic Land-Use Change + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fFireAll + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fFireAll_average + surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires + From all sources, Including natural, anthropogenic and Land-use change. Only total fire emissions can be compared to observations. + Carbon Mass Flux into Atmosphere Due to CO2 Emission from Fire Including All Sources [kgC m-2 s-1] + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fFireNat + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fFireNat_average + surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_fires + CO2 emissions from natural fires + Carbon Mass Flux into Atmosphere Due to CO2 Emission from Natural Fire [kgC m-2 s-1] + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fLuc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fLuc_average + surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change + Net Carbon Mass Flux into Atmosphere due to Land Use Change + Net Carbon Mass Flux into Atmosphere Due to Land-Use Change [kgC m-2 s-1] + up + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fProductDecomp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fProductDecomp_average + tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products + Flux of CO2 from product pools into the atmosphere. Examples of "forestry and agricultural products" are paper, cardboard, furniture, timber for construction, biofuels and food for both humans and livestock. Models that simulate land use changes have one or more pools of carbon that represent these products in order to conserve carbon and allow its eventual release into the atmosphere, for example, when the products decompose in landfill sites. + Decomposition out of Product Pools to CO2 in Atmosphere as Carbon Mass Flux [kgC m-2 s-1] + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fVegFire + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fVegFire_average + surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_vegetation_in_fires + Required for unambiguous separation of vegetation and soil + litter turnover times, since total fire flux draws from both sources + Carbon Mass Flux from Vegetation into Atmosphere Due to CO2 Emission from All Fire [kgC m-2 s-1] + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fracLut + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fracLut_average + area_fraction + End of year values (not annual mean); note that percentage should be reported as percentage of land grid cell (example: frac_lnd = 0.5, frac_ocn = 0.5, frac_crop_lnd = 0.2 (of land portion of grid cell), then frac_lut(crop) = 0.5*0.2 = 0.1) + Percentage of Grid Cell for Each Land-Use Tile + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + gppGrass + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_gppGrass_average + gross_primary_productivity_of_biomass_expressed_as_carbon + Total GPP of grass in the grid cell + Gross Primary Production on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1] + none + kg m-2 s-1 + area: time: mean where natural_grasses (comment: mask=grassFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + gppTree + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_gppTree_average + gross_primary_productivity_of_biomass_expressed_as_carbon + Total GPP of trees in the grid cell + Gross Primary Production on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1] + none + kg m-2 s-1 + area: time: mean where trees (comment: mask=treeFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + grassFracC3 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_grassFracC3_Scaltypec3natg_average + area_fraction + Percentage of entire grid cell covered by C3 natural grass. + C3 Natural Grass Area Percentage + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + grassFracC4 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_grassFracC4_Scaltypec4natg_average + area_fraction + Percentage of entire grid cell covered by C4 natural grass. + C4 Natural Grass Area Percentage + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hus + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hus_plev7h_average + specific_humidity + in Amon + Specific Humidity + none + 1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + intuadse + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_intuadse_average + eastward_atmosphere_dry_static_energy_transport_across_unit_distance + Vertically integrated eastward dry static energy transport (cp.T +zg).v (Mass_weighted_vertical integral of the product of eastward wind by dry static_energy per mass unit) + Vertically Integrated Eastward Dry Statice Energy Transport + none + MJ m-1 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + intuaw + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_intuaw_average + eastward_atmosphere_water_transport_across_unit_distance + Vertically integrated Eastward moisture transport (Mass weighted vertical integral of the product of eastward wind by total water mass per unit mass) + Vertically Integrated Eastward Moisture Transport + none + kg m-1 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + intvadse + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_intvadse_average + northward_atmosphere_dry_static_energy_transport_across_unit_distance + Vertically integrated northward dry static energy transport (cp.T +zg).v (Mass_weighted_vertical integral of the product of northward wind by dry static_energy per mass unit) + Vertically Integrated Northward Dry Static Energy Transport + none + MJ m-1 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + intvaw + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_intvaw_average + northward_atmosphere_water_transport_across_unit_distance + Vertically integrated Northward moisture transport (Mass_weighted_vertical integral of the product of northward wind by total water mass per unit mass) + Vertically Integrated Northward Moisture Transport + none + kg m-1 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + loaddust + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_loaddust_average + atmosphere_mass_content_of_dust_dry_aerosol_particles + The total dry mass of dust aerosol particles per unit area. + Load of Dust + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrlso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mrlso_average + liquid_water_content_of_soil_layer + The mass (summed over all all layers) of liquid water. + Soil Liquid Water Content + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrtws + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mrtws_average + ISBA-CTRIP total water storage (soil+canopy+snow+rivers+groundwater+floodplains; e.g. Decharme et al. 2018) + land_water_amount + requested for C4MIP, OCMIP/OMIP, LUMIP, ScenarioMIP, DECK, DAMIP, GeoMIP, LS3MIP, ?? + Terrestrial Water Storage + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + nep + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_nep_average + surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change + Net Ecosystem Exchange + Net Carbon Mass Flux out of Atmosphere Due to Net Ecosystem Productivity on Land [kgC m-2 s-1] + down + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + netAtmosLandCO2Flux + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_netAtmosLandCO2Flux_average + surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes + Flux of carbon as carbon dioxide into the land. This flux should be reproducible by differencing the sum of all carbon pools (cVeg, cLitter, cSoil, and cProducts or equivalently cLand) from one time step to the next, except in the case of lateral transfer of carbon due to harvest, riverine transport of dissolved organic and/or inorganic carbon, or any other process (in which case the lateral_carbon_transfer_over_land term, see below, will be zero data). + Net Flux of CO2 Between Atmosphere and Land (Positive into Land) as a Result of All Processes [kgC m-2 s-1] + down + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + nppGrass + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_nppGrass_average + net_primary_productivity_of_biomass_expressed_as_carbon + Total NPP of grass in the grid cell + Net Primary Production on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1] + none + kg m-2 s-1 + area: time: mean where natural_grasses (comment: mask=grassFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + nppTree + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_nppTree_average + net_primary_productivity_of_biomass_expressed_as_carbon + Total NPP of trees in the grid cell + Net Primary Production on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1] + none + kg m-2 s-1 + area: time: mean where trees (comment: mask=treeFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + nwdFracLut + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_nwdFracLut_Scaltypenwd_average + area_fraction + Percentage of land use tile tile that is non-woody vegetation ( e.g. herbaceous crops) + Non-Woody Vegetation Percentage Cover + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od443dust + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od443dust_average + atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles + Total aerosol AOD due to dust aerosol at a wavelength of 443 nanometres. + Optical Thickness at 443nm Dust + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od865dust + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od865dust_average + atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles + Total aerosol AOD due to dust aerosol at a wavelength of 865 nanometres. + Dust Optical Depth at 865nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + orog + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_orog_average + surface_altitude + Monthly mean orography (needed if land ice has time varying altitude) + Surface Altitude + none + m + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + parasolRefl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_parasolRefl_average + toa_bidirectional_reflectance + PARASOL Reflectance + PARASOL Reflectance + none + 1 + area: mean where sea time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + raGrass + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_raGrass_average + surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration + Total RA of grass in the grid cell + Autotrophic Respiration on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1] + none + kg m-2 s-1 + area: time: mean where natural_grasses (comment: mask=grassFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + raTree + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_raTree_average + surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration + Total RA of trees in the grid cell + Autotrophic Respiration on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1] + none + kg m-2 s-1 + area: time: mean where trees (comment: mask=treeFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rhGrass + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rhGrass_average + surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration + Total RH of grass in the grid cell + Heterotrophic Respiration on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1] + none + kg m-2 s-1 + area: time: mean where natural_grasses (comment: mask=grassFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rhLitter + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rhLitter_average + surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter + Needed to calculate litter bulk turnover time. Includes respiration from CWD as well. + Carbon Mass Flux into Atmosphere Due to Heterotrophic Respiration from Litter on Land + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rhSoil + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rhSoil_average + surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil + Needed to calculate soil bulk turnover time + Carbon Mass Flux into Atmosphere Due to Heterotrophic Respiration from Soil on Land + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rhTree + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rhTree_average + surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration + Total RH of trees in the grid cell + Heterotrophic Respiration on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1] + none + kg m-2 s-1 + area: time: mean where trees (comment: mask=treeFrac) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rls + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rls_average + surface_net_downward_longwave_flux + Net longwave surface radiation + Net Longwave Surface Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsdsdiff + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsdsdiff_average + surface_diffuse_downwelling_shortwave_flux_in_air + Surface downwelling solar irradiance from diffuse radiation for UV calculations. + Surface Diffuse Downwelling Shortwave Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rss_average + surface_net_downward_shortwave_flux + Net downward shortwave radiation at the surface + Net Shortwave Surface Radiation + down + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sconcdust + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sconcdust_average + mass_concentration_of_dust_dry_aerosol_particles_in_air + mass concentration of dust dry aerosol in air in model lowest layer + Surface Concentration of Dust + none + kg m-3 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sconcso4 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sconcso4_average + mass_concentration_of_sulfate_dry_aerosol_particles_in_air + mass concentration of sulfate dry aerosol in air in model lowest layer. + Surface Concentration of SO4 + none + kg m-3 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sconcss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sconcss_average + mass_concentration_of_sea_salt_dry_aerosol_particles_in_air + mass concentration of sea-salt dry aerosol in air in model lowest layer + Surface Concentration of Sea-Salt Aerosol + none + kg m-3 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sedustCI + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sedustCI_average + minus_tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition + Dry mass deposition rate of dust aerosol. + Sedimentation Flux of Dust Mode Coarse Insoluble + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sfcWindmax + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sfcWindmax_Scalheight10m_average + wind_speed + Daily maximum near-surface (usually, 10 meters) wind speed. + Daily Maximum Near-Surface Wind Speed + none + m s-1 + area: mean time: maximum within days time: mean over days + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ua + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ua_plev7h_average + eastward_wind + Zonal wind (positive in a eastward direction). + Eastward Wind + none + m s-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + uqint + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_uqint_average + integral_wrt_height_of_product_of_eastward_wind_and_specific_humidity + Eastward integrated moisture transport + Eastward Humidity Transport + none + m2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + va + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_va_plev7h_average + northward_wind + Meridional wind (positive in a northward direction). + Northward Wind + none + m s-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + vegFrac + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_vegFrac_Scaltypeveg_average + area_fraction + Percentage of grid cell that is covered by vegetation.This SHOULD be the sum of tree, grass (natural and pasture), crop and shrub fractions. + Total Vegetated Percentage Cover + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + vqint + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_vqint_average + integral_wrt_height_of_product_of_northward_wind_and_specific_humidity + Northward integrated moisture transport + Northward Humidity Transport + none + m2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cfadDbze94 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cfadDbze94_average + histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid + CloudSat Radar Reflectivity + CloudSat Radar Reflectivity CFAD + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cfadLidarsr532 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cfadLidarsr532_average + histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid + CALIPSO Scattering Ratio + CALIPSO Scattering Ratio CFAD + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmosChem + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + EmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + oxloss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_oxloss_plev39_average_1mo_glat_average + tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_destruction + zonal mean; hence YZT + Total Odd Oxygen (Ox) Loss Rate + none + mol m-3 s-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmosChem + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + EmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + oxprod + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_oxprod_plev39_average_1mo_glat_average + tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_and_photolytic_production + zonal mean; hence YZT + Total Odd Oxygen (Ox) Production Rate + none + mol m-3 s-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmosChem + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + EmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + vmrox + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_vmrox_plev39_average_1mo_glat_average + mole_fraction_of_ox_in_air + zonal mean; hence YZT + Mole Fraction of Odd Oxygen (O, O3 and O1D) + none + mol mol-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + grz + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + EmonZ + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zmtnt + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_zmtnt_plev39_average_1mo_glat_average + tendency_of_air_temperature_due_to_diabatic_processes + The diabatic heating rates due to all the processes that may change potential temperature + Zonal Mean Diabatic Heating Rates + none + K s-1 + longitude: mean time: mean + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipsotmp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipsotmp_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipsotmpice + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipsotmpice_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipsotmpliq + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipsotmpliq_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipsotmpun + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipsotmpun_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + RADabs550aer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_RADabs550aer_average + None + Absorption Aerosol Optical Depth at 550nm as seen in the radiative scheme + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + RADasy550aer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_RADasy550aer_average + None + Asymmetry parameter at 550nm as seen in the radiative scheme + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + RADod550aer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_RADod550aer_average + None + Aerosol Optical Depth at 550nm as seen in the radiative scheme + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + RADssa550aer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_RADssa550aer_average + None + Single Scattering Albedo at 550nm as seen in the radiative scheme + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + TACabs550aer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_TACabs550aer_average + None + Absorption Aerosol Optical Depth at 550nm in the aerosol scheme + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + albsrfcLa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_albsrfcLa_average + None + Albedo over Lakes + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + albsrfc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_albsrfc_average + surface_albedo + None + Surface albedo + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + asy550aer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_asy550aer_average + None + Aerosol Asymmetry Parameter at 550 nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + burntArea + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_burntArea_average + None + natural burnt area fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cdnctop + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cdnctop_average + None + Liquid Cloud Droplet Number Concentration at Cloud Top + none + m-3 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipsoun + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipsoun_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clhcalipsoice + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clhcalipsoice_Scalp220_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Ice High Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clhcalipsoliq + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clhcalipsoliq_Scalp220_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Liquid High Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clhcalipsoun + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clhcalipsoun_Scalp220_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Undefined-Phase High Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clhmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clhmodis_average + cloud_area_fraction_in_atmosphere_layer + None + MODIS High Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cllcalipsoice + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cllcalipsoice_Scalp840_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Low Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cllcalipsoliq + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cllcalipsoliq_Scalp840_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Liquid Low Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cllcalipsoun + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cllcalipsoun_Scalp840_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Undefined-Phase Low Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cllmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cllmodis_average + cloud_area_fraction_in_atmosphere_layer + None + MODIS Low Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmcalipsoice + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clmcalipsoice_Scalp560_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Ice Mid Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmcalipsoliq + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clmcalipsoliq_Scalp560_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Liquid Mid Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmcalipsoun + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clmcalipsoun_Scalp560_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Undefined-Phase Mid Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clmmodis_average + cloud_area_fraction_in_atmosphere_layer + None + MODIS Mid Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clmodis_average + cloud_area_fraction_in_atmosphere_layer + None + MODIS Cloud Area Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltcalipsoice + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltcalipsoice_average + cloud_area_fraction + None + CALIPSO Ice Total Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltcalipsoliq + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltcalipsoliq_average + cloud_area_fraction + None + CALIPSO Liquid Total Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltcalipsoun + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltcalipsoun_average + cloud_area_fraction + None + CALIPSO Undefined-Phase Total Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clth + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clth_average + None + High Troposphere Cloud Area Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltl_average + None + Low Troposphere Cloud Area Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltlidarradar + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltlidarradar_average + cloud_area_fraction + None + Lidar and Radar Total Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltm + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltm_average + None + Mid Troposphere Cloud Area Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ext550bc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ext550bc_plev19_average + None + Black Carbon Aerosol Extinction Coefficient at 550 nm + none + m-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ext550dust + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ext550dust_plev19_average + None + Dust Aerosol Extinction Coefficient at 550 nm + none + m-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ext550oa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ext550oa_plev19_average + None + Organic Matter Aerosol Extinction Coefficient at 550 nm + none + m-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ext550so4 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ext550so4_plev19_average + None + Sulfate Aerosol Extinction Coefficient at 550 nm + none + m-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ext550ss + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ext550ss_plev19_average + None + Sea-Salt Aerosol Extinction Coefficient at 550 nm + none + m-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fDeforestToL + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fDeforestToL_average + None + carbon transferred to soil or litter pools due to lulucf processes + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fFireBCarb + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fFireBCarb_average + None + Black Carbon Flux into Atmosphere due to Emission from natural Fire + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fRegrowth + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fRegrowth_average + None + carbon flux due to plant regrowth related to land-use or land-cover change processes + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fsat + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fsat_average + None + soil saturated fraction + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + icedLa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_icedLa_average + None + ice thickness over lake + none + m + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + icod + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_icod_average + None + Ice_Cloud_Optical_Depth + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + iwpmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_iwpmodis_average + atmosphere_cloud_ice_water_content + None + MODIS Cloud Ice Water Path + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + lcod + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_lcod_average + None + Liquid Cloud Optical Depth + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + lwpmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_lwpmodis_average + atmosphere_cloud_liquid_water_content + None + MODIS Cloud Liquid Water Path + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + meantbclrisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_meantbclrisccp_average + toa_brightness_temperature_assuming_clear_sky + None + Mean clear-sky 10.5 micron brightness temperature as calculated by the ISCCP Simulator + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + meantbisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_meantbisccp_average + toa_brightness_temperature + None + Mean all-sky 10.5 micron brightness temperature as calculated by the ISCCP Simulator + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + necb + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_necb_average + None + net rate of C accumulation (or loss) + none + kg m-2 s-1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od550acldaer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od550acldaer_average + None + Above-cloud Aerosol Optical Depth at 550 nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od550dustbin1 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od550dustbin1_average + None + Dust Bin 1 Aerosol Optical Depth at 550 nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od550dustbin2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od550dustbin2_average + None + Dust Bin 2 Aerosol Optical Depth at 550 nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od550ssbin1 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od550ssbin1_average + None + Sea-salt Bin 1 Aerosol Optical Depth at 550 nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + od550ssbin2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_od550ssbin2_average + None + Sea-salt Bin 2 Aerosol Optical Depth at 550 nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + parasolCRefl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_parasolCRefl_average + None + PARASOL Cloud Reflectance + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + pctmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_pctmodis_average + air_pressure_at_cloud_top + None + MODIS Cloud Top Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + reffclimodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_reffclimodis_average + None + MODIS Ice Cloud Particle Size + none + m + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + reffclitop + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_reffclitop_average + None + Ice Cloud Droplet Effective Radius + none + m + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + reffclwmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_reffclwmodis_average + None + MODIS Liquid Cloud Particle Size + none + m + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + reffclwtopcnrm + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_reffclwtopcnrm_average + None + Liquid Cloud Droplet Effective Radius + none + m + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rldsaf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rldsaf_average + None + Surface Aerosol-Free Downwelling Longwave Radiation + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rldscsaf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rldscsaf_average + None + Surface Clear-Sky Aerosol-Free Downwelling Longwave Radiation + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rlusaf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rlusaf_average + None + Surface Aerosol-Free Upwelling Longwave Radiation + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rluscs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rluscs_average + surface_upwelling_longwave_flux_in_air_assuming_clear_sky + None + Surface Upwelling Longwave Flux in Air Assuming Clear Sky + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rluscsaf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rluscsaf_average + None + Surface Clear-Sky Aerosol-Free Upwelling Longwave Radiation + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsdsaf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsdsaf_average + None + Surface Aerosol-Free Downwelling Shortwave Radiation + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsdscsaf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsdscsaf_average + None + Surface Clear-Sky Aerosol-Free Downwelling Shortwave Radiation + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsusaf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsusaf_average + None + Surface Aerosol-Free Upwelling Shortwave Radiation + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rsuscsaf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rsuscsaf_average + None + Surface Clear-Sky Aerosol-Free Upwelling Shortwave Radiation + none + W m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sconcbc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sconcbc_average + None + Surface Concentration of Black Carbon + none + kg m-3 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sconcoa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sconcoa_average + None + Surface Concentration of Organic Matter + none + kg m-3 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + snct + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_snct_average + None + Snow Covered Fraction including vegetation masking over land + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sndLa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sndLa_average + None + surface snow thickness over lake + none + m + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + aerosol + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ssa550aer + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ssa550aer_average + None + Aerosol Single Scattering Albedo at 550 nm + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tauimodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tauimodis_average + atmosphere_optical_thickness_due_to_cloud + None + MODIS Ice Cloud Optical Thickness + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tauisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tauisccp_average + atmosphere_optical_thickness_due_to_cloud + None + Mean Optical Depth as Calculated by the ISCCP Simulator + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tautmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tautmodis_average + atmosphere_optical_thickness_due_to_cloud + None + MODIS Total Cloud Optical Thickness + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tauwmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tauwmodis_average + atmosphere_optical_thickness_due_to_cloud + None + MODIS Liquid Cloud Optical Thickness + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tmxlLa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tmxlLa_average + None + Lake Mixed Layer Temperature + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tsLa + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tsLa_average + None + Surface Temperature over Lake + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + vegstress + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_vegstress_average + None + Soil Water Stress Index for Plant Transpiration over Land + none + - + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMEPmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + co + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_co_Plev39hm_average + mole_fraction_of_carbon_monoxide_in_air + None + CO volume mixing ratio + none + mol mol-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMEPmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hus + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hus_plev7hm_average + specific_humidity + None + Specific Humidity + none + 1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMEPmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + no2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_no2_Plev39hm_average + mole_fraction_of_nitrogen_dioxide_in_air + None + NO2 volume mixing ratio + none + mol mol-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMEPmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + o3 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_o3_Plev39hm_average + mole_fraction_of_ozone_in_air + None + Ozone volume mixing ratio + none + mol mol-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMEPmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ta + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ta_plev7hm_average + air_temperature + None + Air Temperature + none + K + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMEPmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ua + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ua_plev7hm_average + eastward_wind + None + Eastward Wind + none + m s-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMEPmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + va + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_va_plev7hm_average + northward_wind + None + Northward Wind + none + m s-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMEPmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + wap + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_wap_plev7hm_average + lagrangian_tendency_of_air_pressure + None + omega (=dp/dt) + none + Pa s-1 + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMEPmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zg + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_zg_plev7hm_average + geopotential_height + None + Geopotential Height + none + m + area: time: mean + area: areacella + 3h + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + grid has no description - please fix DR_grid_to_grid_atts for grid 5 to 25km + grxg + ?x? degree + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + ImonGre + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tas + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tas_Scalheight2m_average + air_temperature + quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods + Near-Surface Air Temperature + none + K + area: time: mean where ice_sheet + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + LImon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + agesno + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_agesno_average + age_of_surface_snow + When computing the time-mean here, the time samples, weighted by the mass of snow on the land portion of the grid cell, are accumulated and then divided by the sum of the weights. Reported as "missing in regions free of snow on land. + Mean Age of Snow + none + day + area: mean where land time: mean (with samples weighted by snow mass) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + LImon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hfdsn + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hfdsn_average + surface_downward_heat_flux_in_snow + the net downward heat flux from the atmosphere into the snow that lies on land divided by the land area in the grid cell; reported as missing for snow-free land regions or where the land fraction is 0. + Downward Heat Flux into Snow Where Land over Land + down + none + W m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + LImon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + lwsnl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_lwsnl_average + liquid_water_content_of_surface_snow + where land over land: this is computed as the total mass of liquid water contained interstitially within the snow layer of the land portion of a grid cell divided by the area of the land portion of the cell. + Liquid Water Content of Snow Layer + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + LImon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sbl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sbl_land_average + tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice + The snow and ice sublimation flux is the loss of snow and ice mass resulting from their conversion to water vapor. Computed as the total sublimation on the land portion of the grid cell divided by the land area in the grid cell; reported as missing for snow-free land regions; reported as missing where the land fraction is 0. + Surface Snow and Ice Sublimation Flux + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + LImon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sftgif + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sftgif_average + land_ice_area_fraction + Percentage of grid cell covered by land ice (ice sheet, ice shelf, ice cap, glacier) + Land Ice Area Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + LImon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + sftgrf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_sftgrf_average + grounded_ice_sheet_area_fraction + Percentage of grid cell covered by grounded ice sheet + Grounded Ice Sheet Area Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + LImon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + snc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_snc_average + ISBA snow cover over bare ground comparable with stallite data (Psng in equation C1 in Decharme et al. 2016) + surface_snow_area_fraction + Fraction of each grid cell that is occupied by snow that rests on land portion of cell. + Snow Area Percentage + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + LImon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + snd + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_snd_average + surface_snow_thickness + where land over land, this is computed as the mean thickness of snow in the land portion of the grid cell (averaging over the entire land portion, including the snow-free fraction). Reported as missing where the land fraction is 0. + Snow Depth + none + m + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + LImon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + snm + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_snm_land_average + surface_snow_melt_flux + Computed as the total surface melt water on the land portion of the grid cell divided by the land area in the grid cell; report as 0.0 for snow-free land regions; report as missing where the land fraction is 0. + Surface Snow Melt + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + LImon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + snw + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_snw_average + surface_snow_amount + Computed as the mass of surface snow on the land portion of the grid cell divided by the land area in the grid cell; reported as missing where the land fraction is 0; excluded is snow on vegetation canopy or on sea ice. + Surface Snow Amount + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + LImon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tpf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tpf_average + Region where always 0m correspond to none-permafrost areas + permafrost_layer_thickness + where land over land: This is the mean thickness of the permafrost layer in the land portion of the grid cell. Reported as missing in permafrost-free regions. + Permafrost Layer Thickness + none + m + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + landIce land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + LImon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tsn + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tsn_land_average + temperature_in_surface_snow + This temperature is averaged over all the snow in the grid cell that rests on land or land ice. When computing the time-mean here, the time samples, weighted by the mass of snow on the land portion of the grid cell, are accumulated and then divided by the sum of the weights. Reported as "missing in regions free of snow on land. + Snow Internal Temperature + none + K + area: mean where land time: mean (with samples weighted by snow mass) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tsl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tsl_average + soil_temperature + Temperature of each soil layer. Reported as "missing" for grid cells occupied entirely by "sea". + Temperature of Soil + none + K + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + baresoilFrac + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_baresoilFrac_Scaltypebare_average + area_fraction + Percentage of entire grid cell that is covered by bare soil. + Bare Soil Percentage Area Coverage + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + burntFractionAll + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_burntFractionAll_Scaltypeburnt_average + area_fraction + Percentage of grid cell burned due to all fires including natural and anthropogenic fires and those associated with anthropogenic land use change + Percentage of Entire Grid Cell That Is Covered by Burnt Vegetation (All Classes) + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + c3PftFrac + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_c3PftFrac_Scaltypec3pft_average + area_fraction + Percentage of entire grid cell that is covered by C3 PFTs (including grass, crops, and trees). + Percentage Cover by C3 Plant Functional Type + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + c4PftFrac + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_c4PftFrac_Scaltypec4pft_average + area_fraction + Percentage of entire grid cell that is covered by C4 PFTs (including grass and crops). + Percentage Cover by C4 Plant Functional Type + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cLeaf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cLeaf_average + leaf_mass_content_of_carbon + Carbon mass per unit area in leaves. + Carbon Mass in Leaves + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cLitterBelow + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cLitterBelow_average + subsurface_litter_mass_content_of_carbon + "Litter" is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between "fine" and "coarse" is model dependent. "subsurface litter" means the part of the litter mixed within the soil below the surface. "Content" indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon. + Carbon Mass in Below-Ground Litter + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cLitter + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cLitter_average + litter_mass_content_of_carbon + "Litter" is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between "fine" and "coarse" is model dependent. "Content" indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon. + Carbon Mass in Litter Pool + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cProduct + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cProduct_average + carbon_mass_content_of_forestry_and_agricultural_products + Carbon mass per unit area in that has been removed from the environment through land use change. + Carbon Mass in Products of Land-Use Change + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cRoot + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cRoot_average + root_mass_content_of_carbon + including fine and coarse roots. + Carbon Mass in Roots + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cSoilFast + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cSoilFast_average + fast_soil_pool_mass_content_of_carbon + fast is meant as lifetime of less than 10 years for reference climate conditions (20 C, no water limitations). + Carbon Mass in Fast Soil Pool + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cSoilMedium + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cSoilMedium_average + medium_soil_pool_mass_content_of_carbon + medium is meant as lifetime of more than than 10 years and less than 100 years for reference climate conditions (20 C, no water limitations) + Carbon Mass in Medium Soil Pool + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cSoilSlow + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cSoilSlow_average + slow_soil_pool_mass_content_of_carbon + fast is meant as lifetime of more than 100 years for reference climate conditions (20 C, no water limitations) + Carbon Mass in Slow Soil Pool + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cVeg + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cVeg_average + vegetation_carbon_content + Carbon mass per unit area in vegetation. + Carbon Mass in Vegetation + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cropFrac + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cropFrac_Scaltypecrop_average + area_fraction + Percentage of entire grid cell that is covered by crop. + Percentage Crop Cover + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + evspsblsoi + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_evspsblsoi_average + water_evaporation_flux_from_soil + includes sublimation. + Water Evaporation from Soil + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + evspsblveg + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_evspsblveg_average + water_evaporation_flux_from_canopy + the canopy evaporation+sublimation (if present in model). + Evaporation from Canopy + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fFire + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fFire_average + surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change + CO2 emissions (expressed as a carbon mass flux) from natural fires + human ignition fires as calculated by the fire module of the DGVM, but excluding any CO2 flux from fire included in fLuc, defined below (CO2 Flux to Atmosphere from Land Use Change). + Carbon Mass Flux into Atmosphere Due to CO2 Emission from Fire Excluding Land-Use Change [kgC m-2 s-1] + up + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fLitterSoil + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fLitterSoil_average + carbon_mass_flux_into_soil_from_litter + Carbon mass flux per unit area into soil from litter (dead plant material in or above the soil). + Total Carbon Mass Flux from Litter to Soil + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fVegLitter + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_fVegLitter_average + mass_flux_of_carbon_into_litter_from_vegetation + In accordance with common usage in geophysical disciplines, "flux" implies per unit area, called "flux density" in physics. "Vegetation" means any living plants e.g. trees, shrubs, grass. "Litter" is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between "fine" and "coarse" is model dependent. The sum of the quantities with standard names mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality and mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence is mass_flux_of_carbon_into_litter_from_vegetation. + Total Carbon Mass Flux from Vegetation to Litter + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + gpp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_gpp_average + gross_primary_productivity_of_biomass_expressed_as_carbon + The rate of synthesis of biomass from inorganic precursors by autotrophs ("producers") expressed as the mass of carbon which it contains. For example, photosynthesis in plants or phytoplankton. The producers also respire some of this biomass and the difference is referred to as the net primary production. + Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land [kgC m-2 s-1] + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + grassFrac + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_grassFrac_Scaltypenatgr_average + area_fraction + Percentage of entire grid cell that is covered by natural grass. + Natural Grass Area Percentage + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + lai + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_lai_average + leaf_area_index + A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows. + Leaf Area Index + none + 1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + landCoverFrac + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_landCoverFrac_average + area_fraction + The categories may differ from model to model, depending on their PFT definitions. This may include natural PFTs, anthropogenic PFTs, bare soil, lakes, urban areas, etc. Sum of all should equal the fraction of the grid-cell that is land. + Percentage of Area by Vegetation or Land-Cover Category + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land landIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrfso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mrfso_average + soil_frozen_water_content + the mass (summed over all all layers) of frozen water. + Soil Frozen Water Content + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrro + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mrro_average + runoff_flux + the total runoff (including "drainage" through the base of the soil model) leaving the land portion of the grid cell. + Total Runoff + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrros + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mrros_average + surface_runoff_flux + the total surface runoff leaving the land portion of the grid cell. + Surface Runoff + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mrso_average + mass_content_of_water_in_soil + the mass per unit area (summed over all soil layers) of water in all phases. + Total Soil Moisture Content + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrsos + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mrsos_Scalsdepth1_average + mass_content_of_water_in_soil_layer + the mass of water in all phases in a thin surface soil layer. + Moisture in Upper Portion of Soil Column + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + nbp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_nbp_average + surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes + This is the net mass flux of carbon between land and atmosphere calculated as photosynthesis MINUS the sum of plant and soil respiration, carbonfluxes from fire, harvest, grazing and land use change. Positive flux is into the land. + Carbon Mass Flux out of Atmosphere Due to Net Biospheric Production on Land [kgC m-2 s-1] + down + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + npp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_npp_average + net_primary_productivity_of_biomass_expressed_as_carbon + "Production of carbon" means the production of biomass expressed as the mass of carbon which it contains. Net primary production is the excess of gross primary production (rate of synthesis of biomass from inorganic precursors) by autotrophs ("producers"), for example, photosynthesis in plants or phytoplankton, over the rate at which the autotrophs themselves respire some of this biomass. "Productivity" means production per unit area. The phrase "expressed_as" is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A. + Net Primary Production on Land as Carbon Mass Flux [kgC m-2 s-1] + down + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + prveg + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_prveg_average + precipitation_flux_onto_canopy + the precipitation flux that is intercepted by the vegetation canopy (if present in model) before reaching the ground. + Precipitation onto Canopy + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ra + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_ra_average + surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration + Carbon mass flux per unit area into atmosphere due to autotrophic respiration on land (respiration by producers) [see rh for heterotrophic production] + Carbon Mass Flux into Atmosphere Due to Autotrophic (Plant) Respiration on Land [kgC m-2 s-1] + up + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + residualFrac + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_residualFrac_Scaltyperesidual_average + area_fraction + fraction of entire grid cell that is land and is covered by "non-vegetation" and "non-bare-soil" (e.g., urban, ice, lakes, etc.) + Percentage of Grid Cell That Is Land but neither Vegetation Covered nor Bare Soil + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rh + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rh_average + surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration + Carbon mass flux per unit area into atmosphere due to heterotrophic respiration on land (respiration by consumers) + Total Heterotrophic Respiration on Land as Carbon Mass Flux [kgC m-2 s-1] + up + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tran + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tran_average + transpiration_flux + Transpiration (may include dew formation as a negative flux). + Transpiration + up + none + kg m-2 s-1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Lmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + treeFrac + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_treeFrac_Scaltypetree_average + area_fraction + fraction of entire grid cell that is covered by trees. + Tree Cover Percentage + none + % + area: mean where land over all_area_types time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Nonemon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + albsn + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_albsn_average + surface_albedo + Snow Albedo + Snow Albedo + none + 1 + area: time: mean where snow (comment: mask=snc) + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Nonemon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cw + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cw_average + canopy_water_amount + canopy_water_amount + Total Canopy Water Storage + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Nonemon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + dmlt + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_dmlt_Scalstempzero_average + Region where always 12m correspond to none-permafrost areas + depth_at_shallowest_isotherm_defined_by_soil_temperature + depth_of_subsurface_melting + Depth to Soil Thaw + none + m + area: time: mean where unfrozen_soil + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Nonemon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hfdsl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_hfdsl_average + surface_downward_heat_flux_in_air + Ground heat flux + Downward Heat Flux at Land Surface + down + none + W m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Nonemon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + mrsow + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_mrsow_average + volume_fraction_of_condensed_water_in_soil_at_field_capacity + relative_soil_moisture_content_above_field_capacity + Total Soil Wetness + none + 1 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Nonemon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rzwc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_rzwc_average + mass_content_of_water_in_soil_layer_defined_by_root_depth + water_content_of_root_zone + Root Zone Soil Moisture + none + kg m-2 + area: mean where land time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + seaIce + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + SImon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + siconca + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_siconca_Scaltypesi_average + sea_ice_area_fraction + Percentage of grid cell covered by sea ice + Sea-Ice Area Percentage (Atmospheric Grid) + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + subhrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data sampled in model native grid by nearest neighbour method + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Esubhr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tnhuspbl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + tendency_of_specific_humidity_due_to_boundary_layer_mixing + alevel site time1 + Tendency of Specific Humidity Due to Boundary Layer Mixing + none + s-1 + area: point time: point + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + subhrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data sampled in model native grid by nearest neighbour method + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Esubhr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tnhusscp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation + alevel site time1 + Tendency of Specific Humidity Due to Stratiform Clouds and Precipitation + none + s-1 + area: point time: point + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + subhrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data sampled in model native grid by nearest neighbour method + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Esubhr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntpbl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + tendency_of_air_temperature_due_to_boundary_layer_mixing + alevel site time1 + Tendency of Air Temperature Due to Boundary Layer Mixing + none + K s-1 + area: point time: point + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + subhrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data sampled in model native grid by nearest neighbour method + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Esubhr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntrlcs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky + alevel site time1 + Tendency of Air Temperature Due to Clear Sky Longwave Radiative Heating + none + K s-1 + area: point time: point + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + subhrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data sampled in model native grid by nearest neighbour method + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Esubhr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntrscs + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky + alevel site time1 + Tendency of Air Temperature Due to Clear Sky Shortwave Radiative Heating + none + K s-1 + area: point time: point + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + subhrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data sampled in model native grid by nearest neighbour method + gn + 100 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Esubhr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tntscp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation + alevel site time1 + Tendency of Air Temperature Due to Stratiform Clouds and Precipitation + none + K s-1 + area: point time: point + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CF3hr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + convective_cloud_area_fraction_in_atmosphere_layer + Include only convective cloud. + Convective Cloud Area Percentage + none + % + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CF3hr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clic + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + mass_fraction_of_convective_cloud_ice_in_air + Calculated as the mass of convective cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Mass Fraction of Convective Cloud Ice + none + 1 + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CF3hr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + mass_fraction_of_stratiform_cloud_ice_in_air + Calculate as the mass of stratiform cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. + Mass Fraction of Stratiform Cloud Ice + none + 1 + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CF3hr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cls + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + stratiform_cloud_area_fraction_in_atmosphere_layer + Cloud area fraction (reported as a percentage) for the whole atmospheric column due to stratiform clouds, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud. + Percentage Cover of Stratiform Cloud + none + % + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CF3hr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clwc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + mass_fraction_of_convective_cloud_liquid_water_in_air + Calculated as the mass of convective cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Mass Fraction of Convective Cloud Liquid Water + none + 1 + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CF3hr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clws + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + mass_fraction_of_stratiform_cloud_liquid_water_in_air + Calculated as the mass of stratiform cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model. + Mass Fraction of Stratiform Cloud Liquid Water + none + 1 + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CF3hr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + prcprof + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + convective_rainfall_flux + In accordance with common usage in geophysical disciplines, "flux" implies per unit area, called "flux density" in physics. + Convective Rainfall Flux + none + kg m-2 s-1 + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CF3hr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + prlsns + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + stratiform_snowfall_flux + large-scale precipitation of all forms of water in the solid phase. + Stratiform Snowfall Flux + none + kg m-2 s-1 + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CF3hr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + prlsprof + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + stratiform_rainfall_flux + In accordance with common usage in geophysical disciplines, "flux" implies per unit area, called "flux density" in physics. Stratiform precipitation, whether liquid or frozen, is precipitation that formed in stratiform cloud. + Stratiform Rainfall Flux + none + kg m-2 s-1 + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CF3hr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + prsnc + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + convective_snowfall_flux + convective precipitation of all forms of water in the solid phase. + Convective Snowfall Flux + none + kg m-2 s-1 + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CF3hr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ta + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + air_temperature + Air Temperature + Air Temperature + none + K + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CF3hr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zfull + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + height_above_reference_ellipsoid + This is actual height above mean sea level, not geopotential height + Altitude of Model Full-Levels + none + m + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + CF3hr + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + zhalf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + height_above_reference_ellipsoid + This is actual height above mean sea level, not geopotential height. This is actual height above mean sea level, not geopotential height. Includes both the top of the model atmosphere and surface levels. + Altitude of Model Half-Levels + none + m + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clhcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cloud_area_fraction_in_atmosphere_layer + CALIPSO High Level Cloud Fraction + CALIPSO High Level Cloud Area Percentage + none + % + area: mean time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cllcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cloud_area_fraction_in_atmosphere_layer + CALIPSO Low Level Cloud Fraction + CALIPSO Low Level Cloud Cover Percentage + none + % + area: mean time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cloud_area_fraction_in_atmosphere_layer + CALIPSO Mid Level Cloud Fraction + CALIPSO Mid Level Cloud Cover Percentage + none + % + area: mean time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cloud_area_fraction + CALIPSO Total Cloud Fraction + CALIPSO Total Cloud Cover Percentage + none + % + area: mean time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cfadDbze94 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid + CloudSat Radar Reflectivity CFAD + CloudSat Radar Reflectivity CFAD + none + 1 + area: mean time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cfadLidarsr532 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid + CALIPSO Scattering Ratio CFAD + CALIPSO Scattering Ratio CFAD + none + 1 + area: mean time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmisr + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cloud_area_fraction_in_atmosphere_layer + MISR optical thickness - height histogram + Percentage Cloud Cover as Calculated by the MISR Simulator (Including Error Flag) + none + % + area: mean time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + hus + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + specific_humidity + Specific Humidity + Specific Humidity + none + 1 + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + parasolRefl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + toa_bidirectional_reflectance + PARASOL Reflectance + PARASOL Reflectance + none + 1 + area: mean where sea time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipso2 + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cloud_area_fraction_in_atmosphere_layer + CALIPSO Cloud Fraction Undetected by CloudSat + CALIPSO Cloud Cover Percentage Undetected by CloudSat (as Percentage of Area Covered) + none + % + area: mean time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipso + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cloud_area_fraction_in_atmosphere_layer + CALIPSO Cloud Area Fraction + CALIPSO Percentage Cloud Cover + none + % + area: mean time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cloud_area_fraction_in_atmosphere_layer + ISCCP 7x7 + ISCCP Cloud Area Percentage + none + % + area: mean time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + jpdftaureicemodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cloud_area_fraction_in_atmosphere_layer + MODIS Optical Thickness-Particle Size joint distribution, ice + MODIS Joint Distribution of Optical Thickness and Particle Size, Ice + none + % + area: mean time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + E3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + jpdftaureliqmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cloud_area_fraction_in_atmosphere_layer + MODIS Optical Thickness-Particle Size joint distribution, liquid + MODIS Optical Thickness-Particle Size Joint Distribution, Liquid + none + % + area: mean time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipsoun + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipsoun_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clhcalipsoice + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clhcalipsoice_Scalp220_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Ice High Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clhcalipsoliq + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clhcalipsoliq_Scalp220_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Liquid High Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clhcalipsoun + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clhcalipsoun_Scalp220_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Undefined-Phase High Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clhmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clhmodis_average + cloud_area_fraction_in_atmosphere_layer + None + MODIS High Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cllcalipsoice + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cllcalipsoice_Scalp840_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Low Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cllcalipsoliq + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cllcalipsoliq_Scalp840_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Liquid Low Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cllcalipsoun + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cllcalipsoun_Scalp840_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Undefined-Phase Low Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cllmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cllmodis_average + cloud_area_fraction_in_atmosphere_layer + None + MODIS Low Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmcalipsoice + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clmcalipsoice_Scalp560_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Ice Mid Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmcalipsoliq + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clmcalipsoliq_Scalp560_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Liquid Mid Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmcalipsoun + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clmcalipsoun_Scalp560_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Undefined-Phase Mid Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clmmodis_average + cloud_area_fraction_in_atmosphere_layer + None + MODIS Mid Level Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltcalipsoice + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltcalipsoice_average + cloud_area_fraction + None + CALIPSO Ice Total Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltcalipsoliq + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltcalipsoliq_average + cloud_area_fraction + None + CALIPSO Liquid Total Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltcalipsoun + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltcalipsoun_average + cloud_area_fraction + None + CALIPSO Undefined-Phase Total Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + cltlidarradar + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_cltlidarradar_average + cloud_area_fraction + None + Lidar and Radar Total Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + iwpmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_iwpmodis_average + atmosphere_cloud_ice_water_content + None + MODIS Cloud Ice Water Path + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + lwpmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_lwpmodis_average + atmosphere_cloud_liquid_water_content + None + MODIS Cloud Liquid Water Path + none + kg m-2 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + meantbclrisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_meantbclrisccp_average + toa_brightness_temperature_assuming_clear_sky + None + Mean clear-sky 10.5 micron brightness temperature as calculated by the ISCCP Simulator + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + meantbisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_meantbisccp_average + toa_brightness_temperature + None + Mean all-sky 10.5 micron brightness temperature as calculated by the ISCCP Simulator + none + K + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + pctmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_pctmodis_average + air_pressure_at_cloud_top + None + MODIS Cloud Top Pressure + none + Pa + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + reffclimodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_reffclimodis_average + None + MODIS Ice Cloud Particle Size + none + m + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + reffclwmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_reffclwmodis_average + None + MODIS Liquid Cloud Particle Size + none + m + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tauimodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tauimodis_average + atmosphere_optical_thickness_due_to_cloud + None + MODIS Ice Cloud Optical Thickness + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tauisccp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tauisccp_average + atmosphere_optical_thickness_due_to_cloud + None + Mean Optical Depth as Calculated by the ISCCP Simulator + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tautmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tautmodis_average + atmosphere_optical_thickness_due_to_cloud + None + MODIS Total Cloud Optical Thickness + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + tauwmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_tauwmodis_average + atmosphere_optical_thickness_due_to_cloud + None + MODIS Liquid Cloud Optical Thickness + none + 1 + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + parasolCRefl + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + None + PARASOL Cloud Reflectance + none + 1 + area: time: point + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clmodis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clmodis_average + cloud_area_fraction_in_atmosphere_layer + None + MODIS Cloud Area Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipsotmp + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipsotmp_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipsotmpice + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipsotmpice_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipsotmpliq + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipsotmpliq_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMAL3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + clcalipsotmpun + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + @CMIP6_clcalipsotmpun_average + cloud_area_fraction_in_atmosphere_layer + None + CALIPSO Cloud Fraction + none + % + area: time: mean + area: areacella + 900 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + None3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + ua + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + eastward_wind + Zonal wind (positive in a eastward direction). + Eastward Wind + none + m s-1 + time: point + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + None3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + va + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + northward_wind + Meridional wind (positive in a northward direction). + Northward Wind + none + m s-1 + time: point + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + 3hrPt + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid + gr + 250 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + atmos + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + None3hrPt + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + wap + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + lagrangian_tendency_of_air_pressure + Omega (vertical velocity in pressure coordinates, positive downwards) + Omega (=dp/dt) + none + Pa s-1 + area: mean time: point + area: areacella + 900 s + + + surface_air_pressure + Surface Pressure .. needed for vertical coordinates + Surface Air Pressure + none + Pa + area: mean time: point + area: areacella + 900 s + + + + + + + + + + + + + + + + CMIP6_od550aer + + + + + @CMIP6_pfull + @CMIP6_ua_with_instant + + CMIP6_ua10_p10 + + + @CMIP6_zg_with_instant + + CMIP6_zg1000_p1000 + + + CMIP6_zg100_p100 + + + CMIP6_zg10_p10 + + + CMIP6_zg500_p500 + + + + + CMIP6_clhcalipso + + + CMIP6_cllcalipso + + CMIP6_clmcalipso + + + + + + + + + + + + + + + @CMIP6_ta_with_instant + + CMIP6_ta700_p700 + + + @CMIP6_wap_with_instant + + CMIP6_wap500_p500 + + + + + + + + + + + + + + + + + + @CMIP6_hus_with_instant + + CMIP6_hus850_p850 + + + + + + + + + CMIP6_ta500_p500 + + + CMIP6_ta850_p850 + + + + + + + + + + + @CMIP6_va_with_instant + + + + + @CMIP6_hus_plev19_average + + + + + + @CMIP6_ta_plev19_average + + + + + + @CMIP6_ua_plev39_average + + + + @CMIP6_va_plev19_average + + + + + + @CMIP6_zg_plev19_average + + + + + CMIP6_siconca + + + + + CMIP6_hurs + + CMIP6_hursmax + + CMIP6_hursmin + + CMIP6_huss + + + + CMIP6_mrsos + + + + + + + + + + + CMIP6_sfcWind + + CMIP6_sfcWindmax + + + + CMIP6_tas + + CMIP6_tasmax + + CMIP6_tasmin + + + CMIP6_uas + + CMIP6_vas + + + @CMIP6_hur_with_instant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CMIP6_abs550aer + + + + + + + + + + + + + + + + + CMIP6_od550bc + + CMIP6_od550dust + + CMIP6_od550lt1aer + + CMIP6_od550oa + + CMIP6_od550so4 + + CMIP6_od550ss + + + + + + + + + + + + + + + + + @CMIP6_bry_with_instant + + + @CMIP6_bry_plev39_average + + + + + @CMIP6_ch4_with_instant + + + @CMIP6_ch4_plev39_average + + + + + @CMIP6_cly_with_instant + + + @CMIP6_cly_plev39_average + + + + + @CMIP6_h2o_with_instant + + + @CMIP6_h2o_plev39_average + + + + + @CMIP6_hcl_with_instant + + + @CMIP6_hcl_plev39_average + + + + + @CMIP6_hno3_with_instant + + + @CMIP6_hno3_plev39_average + + + + + @CMIP6_ho2_with_instant + + + @CMIP6_ho2_plev39_average + + + + + @CMIP6_meanage_with_instant + + + @CMIP6_meanage_plev39_average + + + + + @CMIP6_n2o_with_instant + + + @CMIP6_n2o_plev39_average + + + + + @CMIP6_noy_with_instant + + + @CMIP6_noy_plev39_average + + + + + @CMIP6_o3_with_instant + + + @CMIP6_o3_plev39_average + + + + + @CMIP6_oh_with_instant + + + @CMIP6_oh_plev39_average + + + + + + @CMIP6_ta_plev39_average + + + + @CMIP6_ua_plev39_average + + + + + + @CMIP6_va_plev39_average + + + + + @CMIP6_vt_with_instant + + CMIP6_vt100_p100 + + @CMIP6_vt100_p100_Scalp100_average + + + + + + @CMIP6_zg_plev39_average + + + + + + + @CMIP6_co2_with_instant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @CMIP6_rlut_for_average + + + + @CMIP6_rlutcs_for_average + + + + @CMIP6_rsdt_for_average + + + + @CMIP6_rsut_for_average + + + + @CMIP6_rsutcs_for_average + + + + + + @CMIP6_utendnogw_with_instant + + + + @CMIP6_utendogw_with_instant + + + + + + + + + + + + + + + + + + + + + + + + + + + + CMIP6_cropFracC3 + + CMIP6_cropFracC4 + + + + + + + + + + + + + + CMIP6_grassFracC3 + + CMIP6_grassFracC4 + + + + + + + + + + + + + + CMIP6_nwdFracLut + + + + + + + + + + + + + + + + + + + + + + + CMIP6_vegFrac + + + + + + @CMIP6_oxloss_with_instant + + + @CMIP6_oxloss_plev39_average + + + + + @CMIP6_oxprod_with_instant + + + @CMIP6_oxprod_plev39_average + + + + + @CMIP6_vmrox_with_instant + + + @CMIP6_vmrox_plev39_average + + + + + @CMIP6_zmtnt_with_instant + + + @CMIP6_zmtnt_plev39_average + + + + + + + + + + + + + + + + + + + CMIP6_clhcalipsoice + + CMIP6_clhcalipsoliq + + CMIP6_clhcalipsoun + + + CMIP6_cllcalipsoice + + CMIP6_cllcalipsoliq + + CMIP6_cllcalipsoun + + + CMIP6_clmcalipsoice + + CMIP6_clmcalipsoliq + + CMIP6_clmcalipsoun + + + + + + + + + + + + @CMIP6_ext550bc_with_instant + + + + @CMIP6_ext550dust_with_instant + + + + @CMIP6_ext550oa_with_instant + + + + @CMIP6_ext550so4_with_instant + + + + @CMIP6_ext550ss_with_instant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @CMIP6_co_with_instant + + + + + + @CMIP6_no2_with_instant + + + + + + + + + + + + + + + + + + + + + + + + + + CMIP6_baresoilFrac + + CMIP6_burntFractionAll + + CMIP6_c3PftFrac + + CMIP6_c4PftFrac + + + + + + + + + + + CMIP6_cropFrac + + + + + + + + CMIP6_grassFrac + + + + + + + + + + CMIP6_residualFrac + + + + CMIP6_treeFrac + + + + CMIP6_dmlt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/test_amip_ESM_DR12/reference_outputs/dr2xml_trip.xml b/tests/test_amip_ESM_DR12/reference_outputs/dr2xml_trip.xml new file mode 100644 index 00000000..76e90597 --- /dev/null +++ b/tests/test_amip_ESM_DR12/reference_outputs/dr2xml_trip.xml @@ -0,0 +1,600 @@ + + + + + + + + + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacellr + 3 + day + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + regular 1/2 deg lat-lon grid + gn + 50 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Eday + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + rivo + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + outgoing_water_volume_transport_along_river_channel + water_flux_from_upstream + River Discharge + none + m3 s-1 + area: mean where land time: mean + area: areacellr + 1800 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + 3 + fx + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + regular 1/2 deg lat-lon grid + gn + 50 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + fx + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + areacellr + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + cell_area + Cell areas for any grid used to report river model variables (may be the same as for atmospheric variables). These cell areas should be defined to enable exact calculation of area integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). + Grid-Cell Area for River Model Variables + none + m2 + area: sum + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacellr + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + regular 1/2 deg lat-lon grid + gn + 50 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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 + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + Emon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + wtd + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + water_table_depth + Depth is the vertical distance below the surface. The water table is the surface below which the soil is saturated with water such that all pore spaces are filled. + Water Table Depth + none + m + area: mean where land time: mean + area: areacellr + 1800 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + regular 1/2 deg lat-lon grid + gn + 50 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + carbdis + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + None + River carbon Outflow or discharge + none + kg s-1 + area: time: mean + area: areacella + 1800 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + regular 1/2 deg lat-lon grid + gn + 50 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + carbin + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + None + River carbon inflow + none + kg s-1 + area: time: mean + area: areacella + 1800 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacella + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + regular 1/2 deg lat-lon grid + gn + 50 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + carbw + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + None + River carbon storage + none + kg m-2 + area: time: mean + area: areacella + 1800 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacellr + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + regular 1/2 deg lat-lon grid + gn + 50 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fldf + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + None + floodplain fraction over land + none + 1 + area: time: mean + area: areacellr + 1800 s + + + + CMIP + contact.cmip@meteo.fr + current_cmip6_dr + current_version + amip + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + Simulation of the climate of the recent past with prescribed sea surface temperatures and sea ice concentrations. + AMIP + areacellr + 3 + mon + https://furtherinfo.es-doc.org/CNRM.CNRM-CERFACS.CNRM-ESM2-1.amip.none.r1i1p1f3 + regular 1/2 deg lat-lon grid + gn + 50 km + none + 1 + CNRM-CERFACS + CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France) + CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses/by-nc-sa/4.0/). 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 http://www.umr-cnrm.fr/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. + CNRM + no parent + 1 + model-output + 1 + land + http://www.umr-cnrm.fr/cmip6/references + CNRM-ESM2-1 (2017): +aerosol: tactic_v2 +atmos: arpege +atmosChem: reprobus-c_v2 +land: surfex +ocean: nemo +ocnBgchem: pisces +seaIce: gelato + CNRM-ESM2-1 + AGCM BGC AER CHEM + none + none + HOMALmon + CNRM-ESM2-1 model output prepared for CMIP6 and CMIP / amip simulation + fwtd + r1i1p1f3 + cv=6.2.3.0-7-g2019642 + amipESM-CEDS2021-aerdiffus + 7a4dce8aef3dd4c1443dcfc57c36cbe7 + 6.3.2 + 49095b3accd5d4c_6524fe19b00467a + 1442-shuffle + + None + grid-cell fraction allowing upward capillary fluxes from wtd + none + 1 + area: time: mean + area: areacellr + 1800 s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/test_pingfiles_CMIP7_CNRM/reference_outputs/dr2xml_log b/tests/test_pingfiles_CMIP7_CNRM/reference_outputs/dr2xml_log index 5e2b72c6..79696dc6 100644 --- a/tests/test_pingfiles_CMIP7_CNRM/reference_outputs/dr2xml_log +++ b/tests/test_pingfiles_CMIP7_CNRM/reference_outputs/dr2xml_log @@ -1,1596 +1,1816 @@ -Function 'get_transformed_content': Passing **kwargs from config file. +For parameter data_request_config, found value __package-root__/dr_interface/CMIP7_config +For parameter data_request_content_version, found value test +For parameter data_request_path, found value None +For parameter data_request_used, found value CMIP7 +For parameter institution_id, found value CNRM-CERFACS +For parameter laboratory_used, found value None +For parameter project, found value ping +For parameter project_settings, found value ping +For parameter save_project_settings, found value None +For parameter vocabulary_config, found value __package-root__/vocabulary/vocabulary.json +For parameter vocabulary_project, found value ping +For parameter vocabulary_used, found value None +No vocabulary configured. +For parameter CFsubhr_frequency, found value 1ts +For parameter add_Gibraltar, found value False +For parameter additional_allowed_model_components, found value [] +For parameter adhoc_policy_do_add_1deg_grid_for_tos, found value False +For parameter allow_duplicates, found value True +For parameter allow_duplicates_in_same_table, found value False +For parameter allow_pseudo_standard_names, found value False +For parameter allow_tos_3hr_1deg, found value True +Could not find a proper value for branch_year_in_child +For parameter branching, found value {} +For parameter bypass_CV_components, found value False +For parameter bytes_per_float, found value 2 +For parameter configuration, found value None +For parameter context, found value nemo +For parameter debug_parsing, found value False +For parameter dr2xml_manages_enddate, found value True +For parameter end_year, found value False +For parameter excluded_expgroups_lset, found value [] +For parameter excluded_expgroups_sset, found value [] +For parameter excluded_opportunities_lset, found value [] +For parameter excluded_opportunities_sset, found value [] +For parameter excluded_pairs_lset, found value [] +For parameter excluded_pairs_sset, found value [] +For parameter excluded_request_links, found value [] +For parameter excluded_spshapes_lset, found value [] +For parameter excluded_tables_lset, found value [] +For parameter excluded_tables_sset, found value [] +For parameter excluded_vargroups_lset, found value [] +For parameter excluded_vargroups_sset, found value [] +For parameter excluded_vars_lset, found value [] +For parameter excluded_vars_per_config, found value [] +For parameter excluded_vars_sset, found value [] +For parameter experiment_for_requests, found value None +For parameter experiment_id, found value None +For parameter filter_on_realization, found value True +For parameter fx_from_file, found value [] +For parameter grid_choice, found value None +For parameter grid_policy, found value None +Could not find a proper value for grid_prefix +For parameter grids, found value None +For parameter grids_dev, found value {} +For parameter grouped_vars_per_file, found value [] +Could not find a proper value for included_expgroups +For parameter included_expgroups_lset, found value [] +Could not find a proper value for included_opportunities +For parameter included_opportunities_lset, found value [] +For parameter included_request_links, found value [] +Could not find a proper value for included_tables +For parameter included_tables_lset, found value [] +Could not find a proper value for included_vargroups +For parameter included_vargroups_lset, found value [] +Could not find a proper value for included_vars +For parameter included_vars_lset, found value [] +For parameter listof_home_vars, found value None +For parameter max_file_size_in_floats, found value 500000000.0 +Could not find a proper value for max_priority +For parameter max_priority_lset, found value 3 +For parameter max_split_freq, found value None +For parameter mips, found value OrderedDict() +For parameter nemo_sources_management_policy_master_of_the_world, found value False +For parameter non_standard_attributes, found value {} +For parameter non_standard_axes, found value {} +For parameter orography_field_name, found value orog +For parameter orphan_variables, found value [] +For parameter path_extra_tables, found value None +For parameter path_special_defs, found value ./input/special_defs +For parameter path_to_parse, found value ./ +For parameter perso_sdims_description, found value {} +For parameter ping_variables_prefix, found value CMIP7_ +For parameter prefixed_orography_field_name, found value CMIP7_orog +For parameter print_stats_per_var_label, found value False +For parameter print_variables, found value True +For parameter realization_index, found value 1 +For parameter realms_per_context, found value ['ocean', 'ocnBgchem', 'seaIce'] +For parameter required_model_components, found value [] +For parameter sampling_timestep, found value None +Could not find a proper value for sectors +For parameter select, found value no +Could not find a proper value for select_excluded_expgroups +Could not find a proper value for select_excluded_opportunities +Could not find a proper value for select_excluded_pairs +Could not find a proper value for select_excluded_request_links +Could not find a proper value for select_excluded_tables +Could not find a proper value for select_excluded_vargroups +Could not find a proper value for select_excluded_vars +Could not find a proper value for select_grid_choice +Could not find a proper value for select_included_expgroups +Could not find a proper value for select_included_opportunities +Could not find a proper value for select_included_request_links +Could not find a proper value for select_included_tables +Could not find a proper value for select_included_vargroups +Could not find a proper value for select_included_vars +Could not find a proper value for select_max_priority +Could not find a proper value for select_mips +For parameter select_on_expt, found value False +For parameter select_on_year, found value False +For parameter select_sizes, found value None +Could not find a proper value for select_tierMax +Could not find a proper value for simple_domain_grid_regexp +For parameter sizes, found value None +For parameter source_id, found value None +For parameter source_type, found value None +For parameter special_timestep_vars, found value [] +For parameter split_frequencies, found value splitfreqs.dat +For parameter synchronisation_frequency, found value None +Could not find a proper value for tierMax +For parameter tierMax_lset, found value 3 +For parameter too_long_periods, found value [] +For parameter useAtForInstant, found value False +For parameter use_cmorvar_label_in_filename, found value False +For parameter use_union_zoom, found value False +For parameter vertical_interpolation_operation, found value instant +Could not find a proper value for vertical_interpolation_sample_freq +For parameter xios_version, found value 2 +For parameter year, found value None +For parameter zg_field_name, found value zg +Could not find a proper value for branch_year_in_child +For parameter grid_prefix, found value CMIP7_ +For parameter included_expgroups, found value [] +For parameter included_opportunities, found value [] +For parameter included_tables, found value [] +For parameter included_vargroups, found value [] +For parameter included_vars, found value [] +For parameter max_priority, found value 3 +Could not find a proper value for sectors +For parameter select_excluded_expgroups, found value [] +For parameter select_excluded_opportunities, found value [] +For parameter select_excluded_pairs, found value [] +For parameter select_excluded_request_links, found value None +For parameter select_excluded_tables, found value [] +For parameter select_excluded_vargroups, found value [] +For parameter select_excluded_vars, found value [] +For parameter select_grid_choice, found value LR +For parameter select_included_expgroups, found value [] +For parameter select_included_opportunities, found value [] +For parameter select_included_request_links, found value None +For parameter select_included_tables, found value [] +For parameter select_included_vargroups, found value [] +For parameter select_included_vars, found value [] +For parameter select_max_priority, found value 3 +For parameter select_mips, found value [] +For parameter select_tierMax, found value 3 +Could not find a proper value for simple_domain_grid_regexp +For parameter tierMax, found value 3 +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for branch_year_in_child +Could not find a proper value for sectors +Could not find a proper value for simple_domain_grid_regexp +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for HDL +Could not find a proper value for activity_id +For parameter branch_method, found value standard +For parameter branch_month_in_parent, found value 1 +Could not find a proper value for branch_year_in_parent +For parameter comment_lset, found value '' +For parameter comment_sset, found value '' +For parameter compression_level, found value 0 +For parameter contact, found value None +For parameter convention_str, found value CF-1.7 CMIP-6.2 +Function 'get_transformed_content': Passing merged **kwargs (potential function call overrides applied to config defaults: {'version': 'test', 'force_retrieve': False, 'cache_dir': 'data_request_directory', 'check_api_version': False, 'consolidate': False, 'export': 'release', 'log_file': 'default', 'log_level': 'info', 'offline': True, 'variable_name': 'CMIP7 Compound Name'}). +For parameter data_request_version_string, found value Software current_cmip7_dr_software - Content test +For parameter data_specs_version, found value Software current_cmip7_dr_software - Content test +For parameter date_range, found value %start_date%-%end_date% +Could not find a proper value for description +For parameter dr2xml_version, found value 3.1 +Could not find a proper value for experiment +For parameter expid_in_filename, found value None +For parameter forcing_index, found value 1 +For parameter history, found value none +Could not find a proper value for info_url +For parameter initialization_index, found value 1 +Could not find a proper value for institution +For parameter list_perso_dev_file, found value dr2xml_list_perso_and_dev_file_names +Could not find a proper value for mip_era +For parameter mip_era_lset, found value None +For parameter mip_era_sset, found value None +For parameter output_level, found value 10 +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +For parameter parent_time_ref_year, found value 1850 +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +For parameter physics_index, found value 1 +For parameter prefix, found value '' +Could not find a proper value for references +Could not find a proper value for source +For parameter sub_experiment, found value none +For parameter sub_experiment_id, found value none +Could not find a proper value for variant_info +Could not find a proper value for HDL +Could not find a proper value for activity_id +Could not find a proper value for branch_year_in_parent +Could not find a proper value for description +Could not find a proper value for experiment +Could not find a proper value for info_url +Could not find a proper value for institution +Could not find a proper value for mip_era +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +Could not find a proper value for references +Could not find a proper value for source +Could not find a proper value for variant_info Could not find id longitude of type coordinates_and_dimensions in the vocabulary server. Could not find id latitude of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) Find elements list of kind priority_level from vocabulary server. -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Find elements list of kind time_subsets from vocabulary server. -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 Could not find id height2m of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 Could not find id height10m of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id plev19 of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id plev3 of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id plev6 of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id sdepth100cm of type coordinates_and_dimensions in the vocabulary server. -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 Could not find id sdepth10cm of type coordinates_and_dimensions in the vocabulary server. -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id sdepth of type coordinates_and_dimensions in the vocabulary server. -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id olevel of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id op20bar of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id deltasigt of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 Could not find id depth0m of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct CMOR variables (whatever the grid): 105 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct var labels is: 72 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of simplified vars is: 105 Issues with standard names are: [] @@ -1615,638 +1835,1418 @@ processing file ./input/special_defs/DX_field_defs_ocnBgchem.xml: No file processing file ./input/special_defs/DX_field_defs_seaIce.xml: No file +For parameter id, found value nemo +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'CNRM-CERFACS', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = './input/special_defs', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'arpsfx' = ['aerosol', 'atmos', 'atmosChem', 'land', 'landIce'], 'nemo' = ['ocean', 'ocnBgchem', 'seaIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label arag: + Priority 3, Frequency mon, Description sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_arag +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label aragos: + Priority 3, Frequency mon, Description sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_aragos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label areacello: + Priority 1, Frequency fx, Description Cell areas for any grid used to report ocean variables and variables which are requested as used on the model ocean grid (e.g. hfsso, which is a downward heat flux from the atmosphere interpolated onto the ocean grid). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). +For parameter id, found value CMIP7_areacello +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label bigthetao: + Priority 1, Frequency mon, Description Diagnostic should be contributed only for models using conservative temperature as prognostic field. + Priority 2, Frequency day, Description Diagnostic should be contributed even for models using conservative temperature as prognostic field. +For parameter id, found value CMIP7_bigthetao +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label calc: + Priority 3, Frequency mon, Description sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_calc +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label calcos: + Priority 3, Frequency mon, Description sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_calcos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label chl: + Priority 3, Frequency day, Description Sum of chlorophyll from all phytoplankton group concentrations. In most models this is equal to chldiat+chlmisc, that is the sum of Diatom Chlorophyll Mass Concentration and Other Phytoplankton Chlorophyll Mass Concentration +For parameter id, found value CMIP7_chl +For parameter field_ref, found value ?dummy_XY_op20bar +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label deptho: + Priority 1, Frequency fx, Description Ocean bathymetry. Reported here is the sea floor depth for present day relative to z=0 geoid. Reported as missing for land grid cells. +For parameter id, found value CMIP7_deptho +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label dissic: + Priority 3, Frequency mon, Description Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration +For parameter id, found value CMIP7_dissic +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label masscello: + Priority 1, Frequency fx, Description Tracer grid-cell mass per unit area used for computing tracer budgets. For Boussinesq models with static ocean grid cell thickness, masscello = rhozero\*thickcello, where thickcello is static cell thickness and rhozero is constant Boussinesq reference density. More generally, masscello is time dependent and reported as part of Omon. +For parameter id, found value CMIP7_masscello +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mlotst: + Priority 2, Frequency day, Description Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. +For parameter id, found value CMIP7_mlotst +For parameter field_ref, found value ?dummy_XY_deltasigt +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mlotstmax: + Priority 2, Frequency mon, Description Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. +For parameter id, found value CMIP7_mlotstmax +For parameter field_ref, found value ?dummy_XY_deltasigt +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mlotstmin: + Priority 2, Frequency mon, Description Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. +For parameter id, found value CMIP7_mlotstmin +For parameter field_ref, found value ?dummy_XY_deltasigt +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mpw: + Priority 2, Frequency mon, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency 3hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency 6hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. +For parameter id, found value CMIP7_mpw +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label o2: + Priority 3, Frequency day, Description 'Mole concentration' means number of moles per unit volume, also called "molarity", and is used in the construction mole\_concentration\_of\_X\_in\_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox\_expressed\_as\_nitrogen'. +For parameter id, found value CMIP7_o2 +For parameter field_ref, found value ?dummy_XY_op20bar +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ph: + Priority 3, Frequency day, Description negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1. +For parameter id, found value CMIP7_ph +For parameter field_ref, found value ?dummy_XY_op20bar +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label siconc: + Priority 1, Frequency day, Description Areal fraction of a given grid cell that is covered by sea ice on the ocean grid, independent of the thickness of that ice. + Priority 1, Frequency mon, Description Areal fraction of a given grid cell that is covered by sea ice on the ocean grid, independent of the thickness of that ice. +For parameter id, found value CMIP7_siconc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label simass: + Priority 1, Frequency mon, Description Total mass of sea ice divided by grid-cell area. +For parameter id, found value CMIP7_simass +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sithick: + Priority 1, Frequency mon, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 1, Frequency mon, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 2, Frequency day, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 2, Frequency day, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. +For parameter id, found value CMIP7_sithick +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label siu: + Priority 1, Frequency mon, Description X-component of sea-ice velocity on native model grid. + Priority 2, Frequency day, Description X-component of sea-ice velocity on native model grid. +For parameter id, found value CMIP7_siu +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label siv: + Priority 1, Frequency mon, Description Y-component of sea-ice velocity on native model grid. + Priority 2, Frequency day, Description Y-component of sea-ice velocity on native model grid. +For parameter id, found value CMIP7_siv +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label so: + Priority 1, Frequency mon, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. + Priority 3, Frequency day, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. +For parameter id, found value CMIP7_so +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sos: + Priority 1, Frequency mon, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. + Priority 1, Frequency day, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. +For parameter id, found value CMIP7_sos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swh: + Priority 2, Frequency mon, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 3hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 6hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swh +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swhmax: + Priority 2, Frequency mon, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 6hr, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swhmax +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label talk: + Priority 3, Frequency mon, Description total alkalinity equivalent concentration (including carbonate, borate, phosphorus, silicon, and nitrogen components) +For parameter id, found value CMIP7_talk +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label thetao: + Priority 1, Frequency mon, Description Diagnostic should be contributed even for models using conservative temperature as prognostic field. + Priority 2, Frequency day, Description Diagnostic should be contributed even for models using conservative temperature as prognostic field. +For parameter id, found value CMIP7_thetao +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tnkebto: + Priority 3, Frequency yr, Description Depth integrated impacts on kinetic energy arising from parameterized eddy-induced advection. For CMIP5, this diagnostic was 3d, whereas the CMIP6 depth integrated diagnostic is sufficient for many purposes and reduces archive requirements. +For parameter id, found value CMIP7_tnkebto +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tos: + Priority 1, Frequency mon, Description This may differ from "surface temperature" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature. + Priority 1, Frequency day, Description This may differ from "surface temperature" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature. + Priority 2, Frequency 3hr, Description temperature of surface of open ocean, sampled synoptically. +For parameter id, found value CMIP7_tos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tossq: + Priority 2, Frequency day, Description Square of temperature of liquid ocean, averaged over the day. +For parameter id, found value CMIP7_tossq +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label uos: + Priority 3, Frequency day, Description Daily surface prognostic x-ward velocity component resolved by the model. +For parameter id, found value CMIP7_uos +For parameter field_ref, found value ?dummy_XY_depth0m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label vos: + Priority 3, Frequency day, Description Daily surface prognostic y-ward velocity component resolved by the model. +For parameter id, found value CMIP7_vos +For parameter field_ref, found value ?dummy_XY_depth0m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label wo: + Priority 1, Frequency mon, Description Prognostic z-ward velocity component resolved by the model. +For parameter id, found value CMIP7_wo +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label wpp: + Priority 2, Frequency mon, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency 3hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency 6hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. +For parameter id, found value CMIP7_wpp +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zos: + Priority 1, Frequency mon, Description This is the dynamic sea level, so should have zero global area mean. It should not include inverse barometer depressions from sea ice. + Priority 1, Frequency day, Description This is the dynamic sea level, so should have zero global area mean. zos is the effective sea level as if sea ice (and snow) at a grid cell were converted to liquid seawater (Campin et al., 2008). For OMIP, do _not _record inverse barometer responses from sea-ice (and snow) loading in zos. See (Griffies et al, 2016, https://doi.org/10.5194/gmd-9-3231-2016). +For parameter id, found value CMIP7_zos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zossq: + Priority 2, Frequency mon, Description Surface ocean geoid defines z=0. +For parameter id, found value CMIP7_zossq +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zostoga: + Priority 1, Frequency mon, Description There is no CMIP6 request for zosga nor zossga. + Priority 2, Frequency day, Description Global Average Thermosteric Sea Level Change +For parameter id, found value CMIP7_zostoga +For parameter field_ref, found value ?dummy_0d +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 37 variables written for current_directory/test_pingfiles_CMIP7_CNRM/test_outputs//ping_nemo.xml +For parameter data_request_config, found value __package-root__/dr_interface/CMIP7_config +For parameter data_request_content_version, found value test +For parameter data_request_path, found value None +For parameter data_request_used, found value CMIP7 +For parameter institution_id, found value CNRM-CERFACS +For parameter laboratory_used, found value None +For parameter project, found value ping +For parameter project_settings, found value ping +For parameter save_project_settings, found value None +For parameter vocabulary_config, found value __package-root__/vocabulary/vocabulary.json +For parameter vocabulary_project, found value ping +For parameter vocabulary_used, found value None +No vocabulary configured. +For parameter CFsubhr_frequency, found value 1ts +For parameter add_Gibraltar, found value False +For parameter additional_allowed_model_components, found value [] +For parameter adhoc_policy_do_add_1deg_grid_for_tos, found value False +For parameter allow_duplicates, found value True +For parameter allow_duplicates_in_same_table, found value False +For parameter allow_pseudo_standard_names, found value False +For parameter allow_tos_3hr_1deg, found value True +Could not find a proper value for branch_year_in_child +For parameter branching, found value {} +For parameter bypass_CV_components, found value False +For parameter bytes_per_float, found value 2 +For parameter configuration, found value None +For parameter context, found value arpsfx +For parameter debug_parsing, found value False +For parameter dr2xml_manages_enddate, found value True +For parameter end_year, found value False +For parameter excluded_expgroups_lset, found value [] +For parameter excluded_expgroups_sset, found value [] +For parameter excluded_opportunities_lset, found value [] +For parameter excluded_opportunities_sset, found value [] +For parameter excluded_pairs_lset, found value [] +For parameter excluded_pairs_sset, found value [] +For parameter excluded_request_links, found value [] +For parameter excluded_spshapes_lset, found value [] +For parameter excluded_tables_lset, found value [] +For parameter excluded_tables_sset, found value [] +For parameter excluded_vargroups_lset, found value [] +For parameter excluded_vargroups_sset, found value [] +For parameter excluded_vars_lset, found value [] +For parameter excluded_vars_per_config, found value [] +For parameter excluded_vars_sset, found value [] +For parameter experiment_for_requests, found value None +For parameter experiment_id, found value None +For parameter filter_on_realization, found value True +For parameter fx_from_file, found value [] +For parameter grid_choice, found value None +For parameter grid_policy, found value None +Could not find a proper value for grid_prefix +For parameter grids, found value None +For parameter grids_dev, found value {} +For parameter grouped_vars_per_file, found value [] +Could not find a proper value for included_expgroups +For parameter included_expgroups_lset, found value [] +Could not find a proper value for included_opportunities +For parameter included_opportunities_lset, found value [] +For parameter included_request_links, found value [] +Could not find a proper value for included_tables +For parameter included_tables_lset, found value [] +Could not find a proper value for included_vargroups +For parameter included_vargroups_lset, found value [] +Could not find a proper value for included_vars +For parameter included_vars_lset, found value [] +For parameter listof_home_vars, found value None +For parameter max_file_size_in_floats, found value 500000000.0 +Could not find a proper value for max_priority +For parameter max_priority_lset, found value 3 +For parameter max_split_freq, found value None +For parameter mips, found value OrderedDict() +For parameter nemo_sources_management_policy_master_of_the_world, found value False +For parameter non_standard_attributes, found value {} +For parameter non_standard_axes, found value {} +For parameter orography_field_name, found value orog +For parameter orphan_variables, found value [] +For parameter path_extra_tables, found value None +For parameter path_special_defs, found value ./input/special_defs +For parameter path_to_parse, found value ./ +For parameter perso_sdims_description, found value {} +For parameter ping_variables_prefix, found value CMIP7_ +For parameter prefixed_orography_field_name, found value CMIP7_orog +For parameter print_stats_per_var_label, found value False +For parameter print_variables, found value True +For parameter realization_index, found value 1 +For parameter realms_per_context, found value ['aerosol', 'atmos', 'atmosChem', 'land', 'landIce'] +For parameter required_model_components, found value [] +For parameter sampling_timestep, found value None +Could not find a proper value for sectors +For parameter select, found value no +Could not find a proper value for select_excluded_expgroups +Could not find a proper value for select_excluded_opportunities +Could not find a proper value for select_excluded_pairs +Could not find a proper value for select_excluded_request_links +Could not find a proper value for select_excluded_tables +Could not find a proper value for select_excluded_vargroups +Could not find a proper value for select_excluded_vars +Could not find a proper value for select_grid_choice +Could not find a proper value for select_included_expgroups +Could not find a proper value for select_included_opportunities +Could not find a proper value for select_included_request_links +Could not find a proper value for select_included_tables +Could not find a proper value for select_included_vargroups +Could not find a proper value for select_included_vars +Could not find a proper value for select_max_priority +Could not find a proper value for select_mips +For parameter select_on_expt, found value False +For parameter select_on_year, found value False +For parameter select_sizes, found value None +Could not find a proper value for select_tierMax +Could not find a proper value for simple_domain_grid_regexp +For parameter sizes, found value None +For parameter source_id, found value None +For parameter source_type, found value None +For parameter special_timestep_vars, found value [] +For parameter split_frequencies, found value splitfreqs.dat +For parameter synchronisation_frequency, found value None +Could not find a proper value for tierMax +For parameter tierMax_lset, found value 3 +For parameter too_long_periods, found value [] +For parameter useAtForInstant, found value False +For parameter use_cmorvar_label_in_filename, found value False +For parameter use_union_zoom, found value False +For parameter vertical_interpolation_operation, found value instant +Could not find a proper value for vertical_interpolation_sample_freq +For parameter xios_version, found value 2 +For parameter year, found value None +For parameter zg_field_name, found value zg +Could not find a proper value for branch_year_in_child +For parameter grid_prefix, found value CMIP7_ +For parameter included_expgroups, found value [] +For parameter included_opportunities, found value [] +For parameter included_tables, found value [] +For parameter included_vargroups, found value [] +For parameter included_vars, found value [] +For parameter max_priority, found value 3 +Could not find a proper value for sectors +For parameter select_excluded_expgroups, found value [] +For parameter select_excluded_opportunities, found value [] +For parameter select_excluded_pairs, found value [] +For parameter select_excluded_request_links, found value None +For parameter select_excluded_tables, found value [] +For parameter select_excluded_vargroups, found value [] +For parameter select_excluded_vars, found value [] +For parameter select_grid_choice, found value LR +For parameter select_included_expgroups, found value [] +For parameter select_included_opportunities, found value [] +For parameter select_included_request_links, found value None +For parameter select_included_tables, found value [] +For parameter select_included_vargroups, found value [] +For parameter select_included_vars, found value [] +For parameter select_max_priority, found value 3 +For parameter select_mips, found value [] +For parameter select_tierMax, found value 3 +Could not find a proper value for simple_domain_grid_regexp +For parameter tierMax, found value 3 +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for branch_year_in_child +Could not find a proper value for sectors +Could not find a proper value for simple_domain_grid_regexp +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for HDL +Could not find a proper value for activity_id +For parameter branch_method, found value standard +For parameter branch_month_in_parent, found value 1 +Could not find a proper value for branch_year_in_parent +For parameter comment_lset, found value '' +For parameter comment_sset, found value '' +For parameter compression_level, found value 0 +For parameter contact, found value None +For parameter convention_str, found value CF-1.7 CMIP-6.2 +For parameter data_request_version_string, found value Software current_cmip7_dr_software - Content test +For parameter data_specs_version, found value Software current_cmip7_dr_software - Content test +For parameter date_range, found value %start_date%-%end_date% +Could not find a proper value for description +For parameter dr2xml_version, found value 3.1 +Could not find a proper value for experiment +For parameter expid_in_filename, found value None +For parameter forcing_index, found value 1 +For parameter history, found value none +Could not find a proper value for info_url +For parameter initialization_index, found value 1 +Could not find a proper value for institution +For parameter list_perso_dev_file, found value dr2xml_list_perso_and_dev_file_names +Could not find a proper value for mip_era +For parameter mip_era_lset, found value None +For parameter mip_era_sset, found value None +For parameter output_level, found value 10 +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +For parameter parent_time_ref_year, found value 1850 +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +For parameter physics_index, found value 1 +For parameter prefix, found value '' +Could not find a proper value for references +Could not find a proper value for source +For parameter sub_experiment, found value none +For parameter sub_experiment_id, found value none +Could not find a proper value for variant_info +Could not find a proper value for HDL +Could not find a proper value for activity_id +Could not find a proper value for branch_year_in_parent +Could not find a proper value for description +Could not find a proper value for experiment +Could not find a proper value for info_url +Could not find a proper value for institution +Could not find a proper value for mip_era +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +Could not find a proper value for references +Could not find a proper value for source +Could not find a proper value for variant_info Number of distinct CMOR variables (whatever the grid): 105 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct var labels is: 72 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of simplified vars is: 105 Issues with standard names are: [] @@ -2283,4 +3283,644 @@ processing file ./input/special_defs/DX_field_defs_land.xml: No file processing file ./input/special_defs/DX_field_defs_landIce.xml: No file +For parameter id, found value arpsfx +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'CNRM-CERFACS', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = './input/special_defs', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'arpsfx' = ['aerosol', 'atmos', 'atmosChem', 'land', 'landIce'], 'nemo' = ['ocean', 'ocnBgchem', 'seaIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label areacella: + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). +For parameter id, found value CMIP7_areacella +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label bldep: + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours +For parameter id, found value CMIP7_bldep +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfdsl: + Priority 3, Frequency 3hr, Description Ground heat flux at 3hr +For parameter id, found value CMIP7_hfdsl +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfls: + Priority 2, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_hfls +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfss: + Priority 2, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_hfss +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hurs: + Priority 1, Frequency 6hr, Description The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. +For parameter id, found value CMIP7_hurs +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label huss: + Priority 1, Frequency 3hr, Description This is sampled synoptically. +For parameter id, found value CMIP7_huss +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label lai: + Priority 1, Frequency mon, Description A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows. +For parameter id, found value CMIP7_lai +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mpw: + Priority 2, Frequency 3hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency 6hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency mon, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. +For parameter id, found value CMIP7_mpw +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrso: + Priority 1, Frequency mon, Description the mass per unit area (summed over all soil layers) of water in all phases. +For parameter id, found value CMIP7_mrso +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrso100: + Priority 3, Frequency 3hr, Description Soil moisture at 3hr but for 0-1m +For parameter id, found value CMIP7_mrso100 +For parameter field_ref, found value ?dummy_XY_sdepth100cm +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrsos: + Priority 1, Frequency mon, Description the mass of water in all phases in a thin surface soil layer. + Priority 2, Frequency 3hr, Description the mass of water in all phases in a thin surface soil layer. +For parameter id, found value CMIP7_mrsos +For parameter field_ref, found value ?dummy_XY_sdepth10cm +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label orog: + Priority 1, Frequency fx, Description height above the geoid; as defined here, "the geoid" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Reported here is the height above the present-day geoid (0.0 over ocean). +For parameter id, found value CMIP7_orog +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label pr: + Priority 1, Frequency 3hr, Description at surface; includes both liquid and solid phases. This is the 3-hour mean precipitation flux. + Priority 1, Frequency 1hr, Description Total precipitation flux + Priority 1, Frequency day, Description at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) + Priority 1, Frequency mon, Description at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) +For parameter id, found value CMIP7_pr +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label prc: + Priority 1, Frequency mon, Description at surface; includes both liquid and solid phases. +For parameter id, found value CMIP7_prc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ps: + Priority 1, Frequency day, Description surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Priority 2, Frequency 3hr, Description sampled synoptically to diagnose atmospheric tides, this is better than mean sea level pressure. +For parameter id, found value CMIP7_ps +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label psl: + Priority 1, Frequency day, Description Sea Level Pressure + Priority 2, Frequency 1hr, Description Sea level pressure +For parameter id, found value CMIP7_psl +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rlds: + Priority 3, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_rlds +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rlus: + Priority 3, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_rlus +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rootd: + Priority 1, Frequency fx, Description report the maximum soil depth reachable by plant roots (if defined in model), i.e., the maximum soil depth from which they can extract moisture; report as "missing" where the land fraction is 0. +For parameter id, found value CMIP7_rootd +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sfcWind: + Priority 1, Frequency day, Description near-surface (usually, 10 meters) wind speed. + Priority 1, Frequency mon, Description This is the mean of the speed, not the speed computed from the mean u and v components of wind +For parameter id, found value CMIP7_sfcWind +For parameter field_ref, found value ?dummy_XY_height10m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sftlf: + Priority 1, Frequency fx, Description Percentage of horizontal area occupied by land. +For parameter id, found value CMIP7_sftlf +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label slthick: + Priority 1, Frequency fx, Description Thickness of Soil Layers +For parameter id, found value CMIP7_slthick +For parameter field_ref, found value ?dummy_XYSo_sdepth +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label snc: + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. +For parameter id, found value CMIP7_snc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label srfrad: + Priority 2, Frequency 3hr, Description Net radiative flux at surface +For parameter id, found value CMIP7_srfrad +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swh: + Priority 2, Frequency 3hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 6hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency mon, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swh +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swhmax: + Priority 2, Frequency 6hr, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency mon, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swhmax +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ta: + Priority 1, Frequency day, Description Air Temperature + Priority 1, Frequency mon, Description Air Temperature + Priority 1, Frequency 6hr, Description Air Temperature +For parameter id, found value CMIP7_ta +For parameter field_ref, found value ?dummy_XY_plev19 +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ta6: + Priority 3, Frequency 3hr, Description Air temperature on 6 pressure levels in the lower troposphere +For parameter id, found value CMIP7_ta6 +For parameter field_ref, found value ?dummy_XY_plev6 +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tas: + Priority 1, Frequency 3hr, Description This is sampled synoptically. + Priority 1, Frequency day, Description near-surface (usually, 2 meter) air temperature + Priority 1, Frequency mon, Description near-surface (usually, 2 meter) air temperature +For parameter id, found value CMIP7_tas +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tasmax: + Priority 1, Frequency day, Description maximum near-surface (usually, 2 meter) air temperature (add cell\_method attribute "time: max") + Priority 1, Frequency mon, Description monthly mean of the daily-maximum near-surface air temperature. +For parameter id, found value CMIP7_tasmax +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tasmin: + Priority 1, Frequency day, Description minimum near-surface (usually, 2 meter) air temperature (add cell\_method attribute "time: min") + Priority 1, Frequency mon, Description monthly mean of the daily-minimum near-surface air temperature. +For parameter id, found value CMIP7_tasmin +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tran: + Priority 3, Frequency 3hr, Description Transpiration +For parameter id, found value CMIP7_tran +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ts: + Priority 1, Frequency mon, Description Surface temperature (skin for open ocean) +For parameter id, found value CMIP7_ts +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tslsi: + Priority 2, Frequency 3hr, Description Surface temperature of all surfaces except open ocean, sampled synoptically. +For parameter id, found value CMIP7_tslsi +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label uas: + Priority 2, Frequency 1hr, Description Zonal wind (positive in a eastward direction) at 10 meters above the surface. +For parameter id, found value CMIP7_uas +For parameter field_ref, found value ?dummy_XY_height10m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label vas: + Priority 2, Frequency 1hr, Description Meridional wind (positive in a northward direction) at 10 meters above the surface. +For parameter id, found value CMIP7_vas +For parameter field_ref, found value ?dummy_XY_height10m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label wpp: + Priority 2, Frequency 3hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency 6hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency mon, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. +For parameter id, found value CMIP7_wpp +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zg: + Priority 1, Frequency day, Description Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. + Priority 1, Frequency mon, Description Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. +For parameter id, found value CMIP7_zg +For parameter field_ref, found value ?dummy_XY_plev19 +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 39 variables written for current_directory/test_pingfiles_CMIP7_CNRM/test_outputs//ping_arpsfx.xml diff --git a/tests/test_pingfiles_CMIP7_CNRM_realm/reference_outputs/dr2xml_log b/tests/test_pingfiles_CMIP7_CNRM_realm/reference_outputs/dr2xml_log index b575e4d5..3e93461e 100644 --- a/tests/test_pingfiles_CMIP7_CNRM_realm/reference_outputs/dr2xml_log +++ b/tests/test_pingfiles_CMIP7_CNRM_realm/reference_outputs/dr2xml_log @@ -1,1596 +1,1816 @@ -Function 'get_transformed_content': Passing **kwargs from config file. +For parameter data_request_config, found value __package-root__/dr_interface/CMIP7_config +For parameter data_request_content_version, found value test +For parameter data_request_path, found value None +For parameter data_request_used, found value CMIP7 +For parameter institution_id, found value CNRM-CERFACS +For parameter laboratory_used, found value None +For parameter project, found value ping +For parameter project_settings, found value ping +For parameter save_project_settings, found value None +For parameter vocabulary_config, found value __package-root__/vocabulary/vocabulary.json +For parameter vocabulary_project, found value ping +For parameter vocabulary_used, found value None +No vocabulary configured. +For parameter CFsubhr_frequency, found value 1ts +For parameter add_Gibraltar, found value False +For parameter additional_allowed_model_components, found value [] +For parameter adhoc_policy_do_add_1deg_grid_for_tos, found value False +For parameter allow_duplicates, found value True +For parameter allow_duplicates_in_same_table, found value False +For parameter allow_pseudo_standard_names, found value False +For parameter allow_tos_3hr_1deg, found value True +Could not find a proper value for branch_year_in_child +For parameter branching, found value {} +For parameter bypass_CV_components, found value False +For parameter bytes_per_float, found value 2 +For parameter configuration, found value None +For parameter context, found value nemo +For parameter debug_parsing, found value False +For parameter dr2xml_manages_enddate, found value True +For parameter end_year, found value False +For parameter excluded_expgroups_lset, found value [] +For parameter excluded_expgroups_sset, found value [] +For parameter excluded_opportunities_lset, found value [] +For parameter excluded_opportunities_sset, found value [] +For parameter excluded_pairs_lset, found value [] +For parameter excluded_pairs_sset, found value [] +For parameter excluded_request_links, found value [] +For parameter excluded_spshapes_lset, found value [] +For parameter excluded_tables_lset, found value [] +For parameter excluded_tables_sset, found value [] +For parameter excluded_vargroups_lset, found value [] +For parameter excluded_vargroups_sset, found value [] +For parameter excluded_vars_lset, found value [] +For parameter excluded_vars_per_config, found value [] +For parameter excluded_vars_sset, found value [] +For parameter experiment_for_requests, found value None +For parameter experiment_id, found value None +For parameter filter_on_realization, found value True +For parameter fx_from_file, found value [] +For parameter grid_choice, found value None +For parameter grid_policy, found value None +Could not find a proper value for grid_prefix +For parameter grids, found value None +For parameter grids_dev, found value {} +For parameter grouped_vars_per_file, found value [] +Could not find a proper value for included_expgroups +For parameter included_expgroups_lset, found value [] +Could not find a proper value for included_opportunities +For parameter included_opportunities_lset, found value [] +For parameter included_request_links, found value [] +Could not find a proper value for included_tables +For parameter included_tables_lset, found value [] +Could not find a proper value for included_vargroups +For parameter included_vargroups_lset, found value [] +Could not find a proper value for included_vars +For parameter included_vars_lset, found value [] +For parameter listof_home_vars, found value None +For parameter max_file_size_in_floats, found value 500000000.0 +Could not find a proper value for max_priority +For parameter max_priority_lset, found value 3 +For parameter max_split_freq, found value None +For parameter mips, found value OrderedDict() +For parameter nemo_sources_management_policy_master_of_the_world, found value False +For parameter non_standard_attributes, found value {} +For parameter non_standard_axes, found value {} +For parameter orography_field_name, found value orog +For parameter orphan_variables, found value [] +For parameter path_extra_tables, found value None +For parameter path_special_defs, found value ./input/special_defs +For parameter path_to_parse, found value ./ +For parameter perso_sdims_description, found value {} +For parameter ping_variables_prefix, found value CMIP7_ +For parameter prefixed_orography_field_name, found value CMIP7_orog +For parameter print_stats_per_var_label, found value False +For parameter print_variables, found value True +For parameter realization_index, found value 1 +For parameter realms_per_context, found value ['ocean', 'ocnBgchem', 'seaIce'] +For parameter required_model_components, found value [] +For parameter sampling_timestep, found value None +Could not find a proper value for sectors +For parameter select, found value no +Could not find a proper value for select_excluded_expgroups +Could not find a proper value for select_excluded_opportunities +Could not find a proper value for select_excluded_pairs +Could not find a proper value for select_excluded_request_links +Could not find a proper value for select_excluded_tables +Could not find a proper value for select_excluded_vargroups +Could not find a proper value for select_excluded_vars +Could not find a proper value for select_grid_choice +Could not find a proper value for select_included_expgroups +Could not find a proper value for select_included_opportunities +Could not find a proper value for select_included_request_links +Could not find a proper value for select_included_tables +Could not find a proper value for select_included_vargroups +Could not find a proper value for select_included_vars +Could not find a proper value for select_max_priority +Could not find a proper value for select_mips +For parameter select_on_expt, found value False +For parameter select_on_year, found value False +For parameter select_sizes, found value None +Could not find a proper value for select_tierMax +Could not find a proper value for simple_domain_grid_regexp +For parameter sizes, found value None +For parameter source_id, found value None +For parameter source_type, found value None +For parameter special_timestep_vars, found value [] +For parameter split_frequencies, found value splitfreqs.dat +For parameter synchronisation_frequency, found value None +Could not find a proper value for tierMax +For parameter tierMax_lset, found value 3 +For parameter too_long_periods, found value [] +For parameter useAtForInstant, found value False +For parameter use_cmorvar_label_in_filename, found value False +For parameter use_union_zoom, found value False +For parameter vertical_interpolation_operation, found value instant +Could not find a proper value for vertical_interpolation_sample_freq +For parameter xios_version, found value 2 +For parameter year, found value None +For parameter zg_field_name, found value zg +Could not find a proper value for branch_year_in_child +For parameter grid_prefix, found value CMIP7_ +For parameter included_expgroups, found value [] +For parameter included_opportunities, found value [] +For parameter included_tables, found value [] +For parameter included_vargroups, found value [] +For parameter included_vars, found value [] +For parameter max_priority, found value 3 +Could not find a proper value for sectors +For parameter select_excluded_expgroups, found value [] +For parameter select_excluded_opportunities, found value [] +For parameter select_excluded_pairs, found value [] +For parameter select_excluded_request_links, found value None +For parameter select_excluded_tables, found value [] +For parameter select_excluded_vargroups, found value [] +For parameter select_excluded_vars, found value [] +For parameter select_grid_choice, found value LR +For parameter select_included_expgroups, found value [] +For parameter select_included_opportunities, found value [] +For parameter select_included_request_links, found value None +For parameter select_included_tables, found value [] +For parameter select_included_vargroups, found value [] +For parameter select_included_vars, found value [] +For parameter select_max_priority, found value 3 +For parameter select_mips, found value [] +For parameter select_tierMax, found value 3 +Could not find a proper value for simple_domain_grid_regexp +For parameter tierMax, found value 3 +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for branch_year_in_child +Could not find a proper value for sectors +Could not find a proper value for simple_domain_grid_regexp +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for HDL +Could not find a proper value for activity_id +For parameter branch_method, found value standard +For parameter branch_month_in_parent, found value 1 +Could not find a proper value for branch_year_in_parent +For parameter comment_lset, found value '' +For parameter comment_sset, found value '' +For parameter compression_level, found value 0 +For parameter contact, found value None +For parameter convention_str, found value CF-1.7 CMIP-6.2 +Function 'get_transformed_content': Passing merged **kwargs (potential function call overrides applied to config defaults: {'version': 'test', 'force_retrieve': False, 'cache_dir': 'data_request_directory', 'check_api_version': False, 'consolidate': False, 'export': 'release', 'log_file': 'default', 'log_level': 'info', 'offline': True, 'variable_name': 'CMIP7 Compound Name'}). +For parameter data_request_version_string, found value Software current_cmip7_dr_software - Content test +For parameter data_specs_version, found value Software current_cmip7_dr_software - Content test +For parameter date_range, found value %start_date%-%end_date% +Could not find a proper value for description +For parameter dr2xml_version, found value 3.1 +Could not find a proper value for experiment +For parameter expid_in_filename, found value None +For parameter forcing_index, found value 1 +For parameter history, found value none +Could not find a proper value for info_url +For parameter initialization_index, found value 1 +Could not find a proper value for institution +For parameter list_perso_dev_file, found value dr2xml_list_perso_and_dev_file_names +Could not find a proper value for mip_era +For parameter mip_era_lset, found value None +For parameter mip_era_sset, found value None +For parameter output_level, found value 10 +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +For parameter parent_time_ref_year, found value 1850 +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +For parameter physics_index, found value 1 +For parameter prefix, found value '' +Could not find a proper value for references +Could not find a proper value for source +For parameter sub_experiment, found value none +For parameter sub_experiment_id, found value none +Could not find a proper value for variant_info +Could not find a proper value for HDL +Could not find a proper value for activity_id +Could not find a proper value for branch_year_in_parent +Could not find a proper value for description +Could not find a proper value for experiment +Could not find a proper value for info_url +Could not find a proper value for institution +Could not find a proper value for mip_era +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +Could not find a proper value for references +Could not find a proper value for source +Could not find a proper value for variant_info Could not find id longitude of type coordinates_and_dimensions in the vocabulary server. Could not find id latitude of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) Find elements list of kind priority_level from vocabulary server. -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Find elements list of kind time_subsets from vocabulary server. -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 Could not find id height2m of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 Could not find id height10m of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id plev19 of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id plev3 of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id plev6 of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id sdepth100cm of type coordinates_and_dimensions in the vocabulary server. -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 Could not find id sdepth10cm of type coordinates_and_dimensions in the vocabulary server. -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id sdepth of type coordinates_and_dimensions in the vocabulary server. -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id olevel of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id op20bar of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id deltasigt of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 Could not find id depth0m of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct CMOR variables (whatever the grid): 105 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct var labels is: 72 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of simplified vars is: 105 Issues with standard names are: [] @@ -1611,644 +1831,1483 @@ For table SIday: sithick siconc sithick siu siv For table SImon: sithick siconc simass sithick siu siv processing file ./input/special_defs/DX_field_defs_ocean.xml: No file +For parameter id, found value nemo +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'CNRM-CERFACS', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = './input/special_defs', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'arpsfx' = ['aerosol', 'atmos', 'atmosChem', 'land', 'landIce'], 'nemo' = ['ocean', 'ocnBgchem', 'seaIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label areacello: + Priority 1, Frequency fx, Description Cell areas for any grid used to report ocean variables and variables which are requested as used on the model ocean grid (e.g. hfsso, which is a downward heat flux from the atmosphere interpolated onto the ocean grid). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). +For parameter id, found value CMIP7_areacello +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label bigthetao: + Priority 1, Frequency mon, Description Diagnostic should be contributed only for models using conservative temperature as prognostic field. + Priority 2, Frequency day, Description Diagnostic should be contributed even for models using conservative temperature as prognostic field. +For parameter id, found value CMIP7_bigthetao +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label deptho: + Priority 1, Frequency fx, Description Ocean bathymetry. Reported here is the sea floor depth for present day relative to z=0 geoid. Reported as missing for land grid cells. +For parameter id, found value CMIP7_deptho +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label masscello: + Priority 1, Frequency fx, Description Tracer grid-cell mass per unit area used for computing tracer budgets. For Boussinesq models with static ocean grid cell thickness, masscello = rhozero\*thickcello, where thickcello is static cell thickness and rhozero is constant Boussinesq reference density. More generally, masscello is time dependent and reported as part of Omon. +For parameter id, found value CMIP7_masscello +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mlotst: + Priority 2, Frequency day, Description Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. +For parameter id, found value CMIP7_mlotst +For parameter field_ref, found value ?dummy_XY_deltasigt +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mlotstmax: + Priority 2, Frequency mon, Description Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. +For parameter id, found value CMIP7_mlotstmax +For parameter field_ref, found value ?dummy_XY_deltasigt +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mlotstmin: + Priority 2, Frequency mon, Description Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. +For parameter id, found value CMIP7_mlotstmin +For parameter field_ref, found value ?dummy_XY_deltasigt +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mpw: + Priority 2, Frequency mon, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency 3hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency 6hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. +For parameter id, found value CMIP7_mpw +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sithick: + Priority 1, Frequency mon, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 1, Frequency mon, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 2, Frequency day, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 2, Frequency day, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. +For parameter id, found value CMIP7_sithick +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label so: + Priority 1, Frequency mon, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. + Priority 3, Frequency day, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. +For parameter id, found value CMIP7_so +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sos: + Priority 1, Frequency mon, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. + Priority 1, Frequency day, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. +For parameter id, found value CMIP7_sos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swh: + Priority 2, Frequency mon, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 3hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 6hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swh +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swhmax: + Priority 2, Frequency mon, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 6hr, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swhmax +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label thetao: + Priority 1, Frequency mon, Description Diagnostic should be contributed even for models using conservative temperature as prognostic field. + Priority 2, Frequency day, Description Diagnostic should be contributed even for models using conservative temperature as prognostic field. +For parameter id, found value CMIP7_thetao +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tnkebto: + Priority 3, Frequency yr, Description Depth integrated impacts on kinetic energy arising from parameterized eddy-induced advection. For CMIP5, this diagnostic was 3d, whereas the CMIP6 depth integrated diagnostic is sufficient for many purposes and reduces archive requirements. +For parameter id, found value CMIP7_tnkebto +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tos: + Priority 1, Frequency mon, Description This may differ from "surface temperature" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature. + Priority 1, Frequency day, Description This may differ from "surface temperature" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature. + Priority 2, Frequency 3hr, Description temperature of surface of open ocean, sampled synoptically. +For parameter id, found value CMIP7_tos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tossq: + Priority 2, Frequency day, Description Square of temperature of liquid ocean, averaged over the day. +For parameter id, found value CMIP7_tossq +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label uos: + Priority 3, Frequency day, Description Daily surface prognostic x-ward velocity component resolved by the model. +For parameter id, found value CMIP7_uos +For parameter field_ref, found value ?dummy_XY_depth0m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label vos: + Priority 3, Frequency day, Description Daily surface prognostic y-ward velocity component resolved by the model. +For parameter id, found value CMIP7_vos +For parameter field_ref, found value ?dummy_XY_depth0m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label wo: + Priority 1, Frequency mon, Description Prognostic z-ward velocity component resolved by the model. +For parameter id, found value CMIP7_wo +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label wpp: + Priority 2, Frequency mon, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency 3hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency 6hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. +For parameter id, found value CMIP7_wpp +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zos: + Priority 1, Frequency mon, Description This is the dynamic sea level, so should have zero global area mean. It should not include inverse barometer depressions from sea ice. + Priority 1, Frequency day, Description This is the dynamic sea level, so should have zero global area mean. zos is the effective sea level as if sea ice (and snow) at a grid cell were converted to liquid seawater (Campin et al., 2008). For OMIP, do _not _record inverse barometer responses from sea-ice (and snow) loading in zos. See (Griffies et al, 2016, https://doi.org/10.5194/gmd-9-3231-2016). +For parameter id, found value CMIP7_zos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zossq: + Priority 2, Frequency mon, Description Surface ocean geoid defines z=0. +For parameter id, found value CMIP7_zossq +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zostoga: + Priority 1, Frequency mon, Description There is no CMIP6 request for zosga nor zossga. + Priority 2, Frequency day, Description Global Average Thermosteric Sea Level Change +For parameter id, found value CMIP7_zostoga +For parameter field_ref, found value ?dummy_0d +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 24 variables written for current_directory/test_pingfiles_CMIP7_CNRM_realm/test_outputs//ping_nemo_ocean.xml processing file ./input/special_defs/DX_field_defs_ocnBgchem.xml: No file +For parameter id, found value nemo +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'CNRM-CERFACS', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = './input/special_defs', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'arpsfx' = ['aerosol', 'atmos', 'atmosChem', 'land', 'landIce'], 'nemo' = ['ocean', 'ocnBgchem', 'seaIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label arag: + Priority 3, Frequency mon, Description sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_arag +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label aragos: + Priority 3, Frequency mon, Description sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_aragos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label calc: + Priority 3, Frequency mon, Description sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_calc +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label calcos: + Priority 3, Frequency mon, Description sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_calcos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label chl: + Priority 3, Frequency day, Description Sum of chlorophyll from all phytoplankton group concentrations. In most models this is equal to chldiat+chlmisc, that is the sum of Diatom Chlorophyll Mass Concentration and Other Phytoplankton Chlorophyll Mass Concentration +For parameter id, found value CMIP7_chl +For parameter field_ref, found value ?dummy_XY_op20bar +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label dissic: + Priority 3, Frequency mon, Description Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration +For parameter id, found value CMIP7_dissic +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label o2: + Priority 3, Frequency day, Description 'Mole concentration' means number of moles per unit volume, also called "molarity", and is used in the construction mole\_concentration\_of\_X\_in\_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox\_expressed\_as\_nitrogen'. +For parameter id, found value CMIP7_o2 +For parameter field_ref, found value ?dummy_XY_op20bar +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ph: + Priority 3, Frequency day, Description negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1. +For parameter id, found value CMIP7_ph +For parameter field_ref, found value ?dummy_XY_op20bar +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label talk: + Priority 3, Frequency mon, Description total alkalinity equivalent concentration (including carbonate, borate, phosphorus, silicon, and nitrogen components) +For parameter id, found value CMIP7_talk +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 9 variables written for current_directory/test_pingfiles_CMIP7_CNRM_realm/test_outputs//ping_nemo_ocnBgchem.xml processing file ./input/special_defs/DX_field_defs_seaIce.xml: No file +For parameter id, found value nemo +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'CNRM-CERFACS', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = './input/special_defs', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'arpsfx' = ['aerosol', 'atmos', 'atmosChem', 'land', 'landIce'], 'nemo' = ['ocean', 'ocnBgchem', 'seaIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label siconc: + Priority 1, Frequency day, Description Areal fraction of a given grid cell that is covered by sea ice on the ocean grid, independent of the thickness of that ice. + Priority 1, Frequency mon, Description Areal fraction of a given grid cell that is covered by sea ice on the ocean grid, independent of the thickness of that ice. +For parameter id, found value CMIP7_siconc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label simass: + Priority 1, Frequency mon, Description Total mass of sea ice divided by grid-cell area. +For parameter id, found value CMIP7_simass +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sithick: + Priority 1, Frequency mon, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 1, Frequency mon, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 2, Frequency day, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 2, Frequency day, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. +For parameter id, found value CMIP7_sithick +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label siu: + Priority 1, Frequency mon, Description X-component of sea-ice velocity on native model grid. + Priority 2, Frequency day, Description X-component of sea-ice velocity on native model grid. +For parameter id, found value CMIP7_siu +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label siv: + Priority 1, Frequency mon, Description Y-component of sea-ice velocity on native model grid. + Priority 2, Frequency day, Description Y-component of sea-ice velocity on native model grid. +For parameter id, found value CMIP7_siv +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 5 variables written for current_directory/test_pingfiles_CMIP7_CNRM_realm/test_outputs//ping_nemo_seaIce.xml +For parameter data_request_config, found value __package-root__/dr_interface/CMIP7_config +For parameter data_request_content_version, found value test +For parameter data_request_path, found value None +For parameter data_request_used, found value CMIP7 +For parameter institution_id, found value CNRM-CERFACS +For parameter laboratory_used, found value None +For parameter project, found value ping +For parameter project_settings, found value ping +For parameter save_project_settings, found value None +For parameter vocabulary_config, found value __package-root__/vocabulary/vocabulary.json +For parameter vocabulary_project, found value ping +For parameter vocabulary_used, found value None +No vocabulary configured. +For parameter CFsubhr_frequency, found value 1ts +For parameter add_Gibraltar, found value False +For parameter additional_allowed_model_components, found value [] +For parameter adhoc_policy_do_add_1deg_grid_for_tos, found value False +For parameter allow_duplicates, found value True +For parameter allow_duplicates_in_same_table, found value False +For parameter allow_pseudo_standard_names, found value False +For parameter allow_tos_3hr_1deg, found value True +Could not find a proper value for branch_year_in_child +For parameter branching, found value {} +For parameter bypass_CV_components, found value False +For parameter bytes_per_float, found value 2 +For parameter configuration, found value None +For parameter context, found value arpsfx +For parameter debug_parsing, found value False +For parameter dr2xml_manages_enddate, found value True +For parameter end_year, found value False +For parameter excluded_expgroups_lset, found value [] +For parameter excluded_expgroups_sset, found value [] +For parameter excluded_opportunities_lset, found value [] +For parameter excluded_opportunities_sset, found value [] +For parameter excluded_pairs_lset, found value [] +For parameter excluded_pairs_sset, found value [] +For parameter excluded_request_links, found value [] +For parameter excluded_spshapes_lset, found value [] +For parameter excluded_tables_lset, found value [] +For parameter excluded_tables_sset, found value [] +For parameter excluded_vargroups_lset, found value [] +For parameter excluded_vargroups_sset, found value [] +For parameter excluded_vars_lset, found value [] +For parameter excluded_vars_per_config, found value [] +For parameter excluded_vars_sset, found value [] +For parameter experiment_for_requests, found value None +For parameter experiment_id, found value None +For parameter filter_on_realization, found value True +For parameter fx_from_file, found value [] +For parameter grid_choice, found value None +For parameter grid_policy, found value None +Could not find a proper value for grid_prefix +For parameter grids, found value None +For parameter grids_dev, found value {} +For parameter grouped_vars_per_file, found value [] +Could not find a proper value for included_expgroups +For parameter included_expgroups_lset, found value [] +Could not find a proper value for included_opportunities +For parameter included_opportunities_lset, found value [] +For parameter included_request_links, found value [] +Could not find a proper value for included_tables +For parameter included_tables_lset, found value [] +Could not find a proper value for included_vargroups +For parameter included_vargroups_lset, found value [] +Could not find a proper value for included_vars +For parameter included_vars_lset, found value [] +For parameter listof_home_vars, found value None +For parameter max_file_size_in_floats, found value 500000000.0 +Could not find a proper value for max_priority +For parameter max_priority_lset, found value 3 +For parameter max_split_freq, found value None +For parameter mips, found value OrderedDict() +For parameter nemo_sources_management_policy_master_of_the_world, found value False +For parameter non_standard_attributes, found value {} +For parameter non_standard_axes, found value {} +For parameter orography_field_name, found value orog +For parameter orphan_variables, found value [] +For parameter path_extra_tables, found value None +For parameter path_special_defs, found value ./input/special_defs +For parameter path_to_parse, found value ./ +For parameter perso_sdims_description, found value {} +For parameter ping_variables_prefix, found value CMIP7_ +For parameter prefixed_orography_field_name, found value CMIP7_orog +For parameter print_stats_per_var_label, found value False +For parameter print_variables, found value True +For parameter realization_index, found value 1 +For parameter realms_per_context, found value ['aerosol', 'atmos', 'atmosChem', 'land', 'landIce'] +For parameter required_model_components, found value [] +For parameter sampling_timestep, found value None +Could not find a proper value for sectors +For parameter select, found value no +Could not find a proper value for select_excluded_expgroups +Could not find a proper value for select_excluded_opportunities +Could not find a proper value for select_excluded_pairs +Could not find a proper value for select_excluded_request_links +Could not find a proper value for select_excluded_tables +Could not find a proper value for select_excluded_vargroups +Could not find a proper value for select_excluded_vars +Could not find a proper value for select_grid_choice +Could not find a proper value for select_included_expgroups +Could not find a proper value for select_included_opportunities +Could not find a proper value for select_included_request_links +Could not find a proper value for select_included_tables +Could not find a proper value for select_included_vargroups +Could not find a proper value for select_included_vars +Could not find a proper value for select_max_priority +Could not find a proper value for select_mips +For parameter select_on_expt, found value False +For parameter select_on_year, found value False +For parameter select_sizes, found value None +Could not find a proper value for select_tierMax +Could not find a proper value for simple_domain_grid_regexp +For parameter sizes, found value None +For parameter source_id, found value None +For parameter source_type, found value None +For parameter special_timestep_vars, found value [] +For parameter split_frequencies, found value splitfreqs.dat +For parameter synchronisation_frequency, found value None +Could not find a proper value for tierMax +For parameter tierMax_lset, found value 3 +For parameter too_long_periods, found value [] +For parameter useAtForInstant, found value False +For parameter use_cmorvar_label_in_filename, found value False +For parameter use_union_zoom, found value False +For parameter vertical_interpolation_operation, found value instant +Could not find a proper value for vertical_interpolation_sample_freq +For parameter xios_version, found value 2 +For parameter year, found value None +For parameter zg_field_name, found value zg +Could not find a proper value for branch_year_in_child +For parameter grid_prefix, found value CMIP7_ +For parameter included_expgroups, found value [] +For parameter included_opportunities, found value [] +For parameter included_tables, found value [] +For parameter included_vargroups, found value [] +For parameter included_vars, found value [] +For parameter max_priority, found value 3 +Could not find a proper value for sectors +For parameter select_excluded_expgroups, found value [] +For parameter select_excluded_opportunities, found value [] +For parameter select_excluded_pairs, found value [] +For parameter select_excluded_request_links, found value None +For parameter select_excluded_tables, found value [] +For parameter select_excluded_vargroups, found value [] +For parameter select_excluded_vars, found value [] +For parameter select_grid_choice, found value LR +For parameter select_included_expgroups, found value [] +For parameter select_included_opportunities, found value [] +For parameter select_included_request_links, found value None +For parameter select_included_tables, found value [] +For parameter select_included_vargroups, found value [] +For parameter select_included_vars, found value [] +For parameter select_max_priority, found value 3 +For parameter select_mips, found value [] +For parameter select_tierMax, found value 3 +Could not find a proper value for simple_domain_grid_regexp +For parameter tierMax, found value 3 +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for branch_year_in_child +Could not find a proper value for sectors +Could not find a proper value for simple_domain_grid_regexp +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for HDL +Could not find a proper value for activity_id +For parameter branch_method, found value standard +For parameter branch_month_in_parent, found value 1 +Could not find a proper value for branch_year_in_parent +For parameter comment_lset, found value '' +For parameter comment_sset, found value '' +For parameter compression_level, found value 0 +For parameter contact, found value None +For parameter convention_str, found value CF-1.7 CMIP-6.2 +For parameter data_request_version_string, found value Software current_cmip7_dr_software - Content test +For parameter data_specs_version, found value Software current_cmip7_dr_software - Content test +For parameter date_range, found value %start_date%-%end_date% +Could not find a proper value for description +For parameter dr2xml_version, found value 3.1 +Could not find a proper value for experiment +For parameter expid_in_filename, found value None +For parameter forcing_index, found value 1 +For parameter history, found value none +Could not find a proper value for info_url +For parameter initialization_index, found value 1 +Could not find a proper value for institution +For parameter list_perso_dev_file, found value dr2xml_list_perso_and_dev_file_names +Could not find a proper value for mip_era +For parameter mip_era_lset, found value None +For parameter mip_era_sset, found value None +For parameter output_level, found value 10 +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +For parameter parent_time_ref_year, found value 1850 +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +For parameter physics_index, found value 1 +For parameter prefix, found value '' +Could not find a proper value for references +Could not find a proper value for source +For parameter sub_experiment, found value none +For parameter sub_experiment_id, found value none +Could not find a proper value for variant_info +Could not find a proper value for HDL +Could not find a proper value for activity_id +Could not find a proper value for branch_year_in_parent +Could not find a proper value for description +Could not find a proper value for experiment +Could not find a proper value for info_url +Could not find a proper value for institution +Could not find a proper value for mip_era +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +Could not find a proper value for references +Could not find a proper value for source +Could not find a proper value for variant_info Number of distinct CMOR variables (whatever the grid): 105 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct var labels is: 72 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of simplified vars is: 105 Issues with standard names are: [] @@ -2277,16 +3336,898 @@ For table day: pr psl sfcWind ta tas tasmax tasmin zg For table fx: areacella sftlf areacella orog rootd processing file ./input/special_defs/DX_field_defs_aerosol.xml: No file +For parameter id, found value arpsfx +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'CNRM-CERFACS', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = './input/special_defs', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'arpsfx' = ['aerosol', 'atmos', 'atmosChem', 'land', 'landIce'], 'nemo' = ['ocean', 'ocnBgchem', 'seaIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label bldep: + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours +For parameter id, found value CMIP7_bldep +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 1 variables written for current_directory/test_pingfiles_CMIP7_CNRM_realm/test_outputs//ping_arpsfx_aerosol.xml processing file ./input/special_defs/DX_field_defs_atmos.xml: No file +For parameter id, found value arpsfx +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'CNRM-CERFACS', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = './input/special_defs', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'arpsfx' = ['aerosol', 'atmos', 'atmosChem', 'land', 'landIce'], 'nemo' = ['ocean', 'ocnBgchem', 'seaIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label areacella: + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). +For parameter id, found value CMIP7_areacella +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label bldep: + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours +For parameter id, found value CMIP7_bldep +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfls: + Priority 2, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_hfls +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfss: + Priority 2, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_hfss +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hurs: + Priority 1, Frequency 6hr, Description The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. +For parameter id, found value CMIP7_hurs +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label huss: + Priority 1, Frequency 3hr, Description This is sampled synoptically. +For parameter id, found value CMIP7_huss +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mpw: + Priority 2, Frequency 3hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency 6hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency mon, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. +For parameter id, found value CMIP7_mpw +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label pr: + Priority 1, Frequency 3hr, Description at surface; includes both liquid and solid phases. This is the 3-hour mean precipitation flux. + Priority 1, Frequency 1hr, Description Total precipitation flux + Priority 1, Frequency day, Description at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) + Priority 1, Frequency mon, Description at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) +For parameter id, found value CMIP7_pr +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label prc: + Priority 1, Frequency mon, Description at surface; includes both liquid and solid phases. +For parameter id, found value CMIP7_prc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ps: + Priority 1, Frequency day, Description surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Priority 2, Frequency 3hr, Description sampled synoptically to diagnose atmospheric tides, this is better than mean sea level pressure. +For parameter id, found value CMIP7_ps +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label psl: + Priority 1, Frequency day, Description Sea Level Pressure + Priority 2, Frequency 1hr, Description Sea level pressure +For parameter id, found value CMIP7_psl +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rlds: + Priority 3, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_rlds +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rlus: + Priority 3, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_rlus +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sfcWind: + Priority 1, Frequency day, Description near-surface (usually, 10 meters) wind speed. + Priority 1, Frequency mon, Description This is the mean of the speed, not the speed computed from the mean u and v components of wind +For parameter id, found value CMIP7_sfcWind +For parameter field_ref, found value ?dummy_XY_height10m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sftlf: + Priority 1, Frequency fx, Description Percentage of horizontal area occupied by land. +For parameter id, found value CMIP7_sftlf +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swh: + Priority 2, Frequency 3hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 6hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency mon, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swh +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swhmax: + Priority 2, Frequency 6hr, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency mon, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swhmax +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ta: + Priority 1, Frequency day, Description Air Temperature + Priority 1, Frequency mon, Description Air Temperature + Priority 1, Frequency 6hr, Description Air Temperature +For parameter id, found value CMIP7_ta +For parameter field_ref, found value ?dummy_XY_plev19 +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ta6: + Priority 3, Frequency 3hr, Description Air temperature on 6 pressure levels in the lower troposphere +For parameter id, found value CMIP7_ta6 +For parameter field_ref, found value ?dummy_XY_plev6 +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tas: + Priority 1, Frequency 3hr, Description This is sampled synoptically. + Priority 1, Frequency day, Description near-surface (usually, 2 meter) air temperature + Priority 1, Frequency mon, Description near-surface (usually, 2 meter) air temperature +For parameter id, found value CMIP7_tas +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tasmax: + Priority 1, Frequency day, Description maximum near-surface (usually, 2 meter) air temperature (add cell\_method attribute "time: max") + Priority 1, Frequency mon, Description monthly mean of the daily-maximum near-surface air temperature. +For parameter id, found value CMIP7_tasmax +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tasmin: + Priority 1, Frequency day, Description minimum near-surface (usually, 2 meter) air temperature (add cell\_method attribute "time: min") + Priority 1, Frequency mon, Description monthly mean of the daily-minimum near-surface air temperature. +For parameter id, found value CMIP7_tasmin +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ts: + Priority 1, Frequency mon, Description Surface temperature (skin for open ocean) +For parameter id, found value CMIP7_ts +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label uas: + Priority 2, Frequency 1hr, Description Zonal wind (positive in a eastward direction) at 10 meters above the surface. +For parameter id, found value CMIP7_uas +For parameter field_ref, found value ?dummy_XY_height10m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label vas: + Priority 2, Frequency 1hr, Description Meridional wind (positive in a northward direction) at 10 meters above the surface. +For parameter id, found value CMIP7_vas +For parameter field_ref, found value ?dummy_XY_height10m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label wpp: + Priority 2, Frequency 3hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency 6hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency mon, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. +For parameter id, found value CMIP7_wpp +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zg: + Priority 1, Frequency day, Description Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. + Priority 1, Frequency mon, Description Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. +For parameter id, found value CMIP7_zg +For parameter field_ref, found value ?dummy_XY_plev19 +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 27 variables written for current_directory/test_pingfiles_CMIP7_CNRM_realm/test_outputs//ping_arpsfx_atmos.xml processing file ./input/special_defs/DX_field_defs_atmosChem.xml: No file +For parameter id, found value arpsfx +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'CNRM-CERFACS', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = './input/special_defs', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'arpsfx' = ['aerosol', 'atmos', 'atmosChem', 'land', 'landIce'], 'nemo' = ['ocean', 'ocnBgchem', 'seaIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +For parameter id, found value CMIP7_ap +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 0 variables written for current_directory/test_pingfiles_CMIP7_CNRM_realm/test_outputs//ping_arpsfx_atmosChem.xml processing file ./input/special_defs/DX_field_defs_land.xml: No file +For parameter id, found value arpsfx +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'CNRM-CERFACS', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = './input/special_defs', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'arpsfx' = ['aerosol', 'atmos', 'atmosChem', 'land', 'landIce'], 'nemo' = ['ocean', 'ocnBgchem', 'seaIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label areacella: + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). +For parameter id, found value CMIP7_areacella +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label bldep: + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours +For parameter id, found value CMIP7_bldep +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfdsl: + Priority 3, Frequency 3hr, Description Ground heat flux at 3hr +For parameter id, found value CMIP7_hfdsl +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label lai: + Priority 1, Frequency mon, Description A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows. +For parameter id, found value CMIP7_lai +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrso: + Priority 1, Frequency mon, Description the mass per unit area (summed over all soil layers) of water in all phases. +For parameter id, found value CMIP7_mrso +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrso100: + Priority 3, Frequency 3hr, Description Soil moisture at 3hr but for 0-1m +For parameter id, found value CMIP7_mrso100 +For parameter field_ref, found value ?dummy_XY_sdepth100cm +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrsos: + Priority 1, Frequency mon, Description the mass of water in all phases in a thin surface soil layer. + Priority 2, Frequency 3hr, Description the mass of water in all phases in a thin surface soil layer. +For parameter id, found value CMIP7_mrsos +For parameter field_ref, found value ?dummy_XY_sdepth10cm +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label orog: + Priority 1, Frequency fx, Description height above the geoid; as defined here, "the geoid" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Reported here is the height above the present-day geoid (0.0 over ocean). +For parameter id, found value CMIP7_orog +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rootd: + Priority 1, Frequency fx, Description report the maximum soil depth reachable by plant roots (if defined in model), i.e., the maximum soil depth from which they can extract moisture; report as "missing" where the land fraction is 0. +For parameter id, found value CMIP7_rootd +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label slthick: + Priority 1, Frequency fx, Description Thickness of Soil Layers +For parameter id, found value CMIP7_slthick +For parameter field_ref, found value ?dummy_XYSo_sdepth +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label snc: + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. +For parameter id, found value CMIP7_snc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label srfrad: + Priority 2, Frequency 3hr, Description Net radiative flux at surface +For parameter id, found value CMIP7_srfrad +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tran: + Priority 3, Frequency 3hr, Description Transpiration +For parameter id, found value CMIP7_tran +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tslsi: + Priority 2, Frequency 3hr, Description Surface temperature of all surfaces except open ocean, sampled synoptically. +For parameter id, found value CMIP7_tslsi +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 14 variables written for current_directory/test_pingfiles_CMIP7_CNRM_realm/test_outputs//ping_arpsfx_land.xml processing file ./input/special_defs/DX_field_defs_landIce.xml: No file +For parameter id, found value arpsfx +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'CNRM-CERFACS', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = './input/special_defs', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'arpsfx' = ['aerosol', 'atmos', 'atmosChem', 'land', 'landIce'], 'nemo' = ['ocean', 'ocnBgchem', 'seaIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label snc: + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. +For parameter id, found value CMIP7_snc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 1 variables written for current_directory/test_pingfiles_CMIP7_CNRM_realm/test_outputs//ping_arpsfx_landIce.xml diff --git a/tests/test_pingfiles_CMIP7_IPSL/reference_outputs/dr2xml_log b/tests/test_pingfiles_CMIP7_IPSL/reference_outputs/dr2xml_log index b1764317..6bcd3976 100644 --- a/tests/test_pingfiles_CMIP7_IPSL/reference_outputs/dr2xml_log +++ b/tests/test_pingfiles_CMIP7_IPSL/reference_outputs/dr2xml_log @@ -1,1596 +1,1816 @@ -Function 'get_transformed_content': Passing **kwargs from config file. +For parameter data_request_config, found value __package-root__/dr_interface/CMIP7_config +For parameter data_request_content_version, found value test +For parameter data_request_path, found value None +For parameter data_request_used, found value CMIP7 +For parameter institution_id, found value IPSL +For parameter laboratory_used, found value ipsl +For parameter project, found value ping +For parameter project_settings, found value ping +For parameter save_project_settings, found value None +For parameter vocabulary_config, found value __package-root__/vocabulary/vocabulary.json +For parameter vocabulary_project, found value ping +For parameter vocabulary_used, found value None +No vocabulary configured. +For parameter CFsubhr_frequency, found value 1ts +For parameter add_Gibraltar, found value False +For parameter additional_allowed_model_components, found value [] +For parameter adhoc_policy_do_add_1deg_grid_for_tos, found value False +For parameter allow_duplicates, found value True +For parameter allow_duplicates_in_same_table, found value False +For parameter allow_pseudo_standard_names, found value False +For parameter allow_tos_3hr_1deg, found value True +Could not find a proper value for branch_year_in_child +For parameter branching, found value {} +For parameter bypass_CV_components, found value False +For parameter bytes_per_float, found value 2 +For parameter configuration, found value None +For parameter context, found value nemo +For parameter debug_parsing, found value False +For parameter dr2xml_manages_enddate, found value True +For parameter end_year, found value False +For parameter excluded_expgroups_lset, found value [] +For parameter excluded_expgroups_sset, found value [] +For parameter excluded_opportunities_lset, found value [] +For parameter excluded_opportunities_sset, found value [] +For parameter excluded_pairs_lset, found value [] +For parameter excluded_pairs_sset, found value [] +For parameter excluded_request_links, found value [] +For parameter excluded_spshapes_lset, found value [] +For parameter excluded_tables_lset, found value [] +For parameter excluded_tables_sset, found value [] +For parameter excluded_vargroups_lset, found value [] +For parameter excluded_vargroups_sset, found value [] +For parameter excluded_vars_lset, found value [] +For parameter excluded_vars_per_config, found value [] +For parameter excluded_vars_sset, found value [] +For parameter experiment_for_requests, found value None +For parameter experiment_id, found value None +For parameter filter_on_realization, found value True +For parameter fx_from_file, found value [] +For parameter grid_choice, found value None +For parameter grid_policy, found value None +Could not find a proper value for grid_prefix +For parameter grids, found value None +For parameter grids_dev, found value {} +For parameter grouped_vars_per_file, found value [] +Could not find a proper value for included_expgroups +For parameter included_expgroups_lset, found value [] +Could not find a proper value for included_opportunities +For parameter included_opportunities_lset, found value [] +For parameter included_request_links, found value [] +Could not find a proper value for included_tables +For parameter included_tables_lset, found value [] +Could not find a proper value for included_vargroups +For parameter included_vargroups_lset, found value [] +Could not find a proper value for included_vars +For parameter included_vars_lset, found value [] +For parameter listof_home_vars, found value None +For parameter max_file_size_in_floats, found value 500000000.0 +Could not find a proper value for max_priority +For parameter max_priority_lset, found value 3 +For parameter max_split_freq, found value None +For parameter mips, found value OrderedDict() +For parameter nemo_sources_management_policy_master_of_the_world, found value False +For parameter non_standard_attributes, found value {} +For parameter non_standard_axes, found value {} +For parameter orography_field_name, found value orog +For parameter orphan_variables, found value [] +For parameter path_extra_tables, found value None +For parameter path_special_defs, found value None +For parameter path_to_parse, found value ./ +For parameter perso_sdims_description, found value {} +For parameter ping_variables_prefix, found value CMIP7_ +For parameter prefixed_orography_field_name, found value CMIP7_orog +For parameter print_stats_per_var_label, found value False +For parameter print_variables, found value True +For parameter realization_index, found value 1 +For parameter realms_per_context, found value ['seaIce', 'ocean', 'ocnBgchem'] +For parameter required_model_components, found value [] +For parameter sampling_timestep, found value None +Could not find a proper value for sectors +For parameter select, found value no +Could not find a proper value for select_excluded_expgroups +Could not find a proper value for select_excluded_opportunities +Could not find a proper value for select_excluded_pairs +Could not find a proper value for select_excluded_request_links +Could not find a proper value for select_excluded_tables +Could not find a proper value for select_excluded_vargroups +Could not find a proper value for select_excluded_vars +Could not find a proper value for select_grid_choice +Could not find a proper value for select_included_expgroups +Could not find a proper value for select_included_opportunities +Could not find a proper value for select_included_request_links +Could not find a proper value for select_included_tables +Could not find a proper value for select_included_vargroups +Could not find a proper value for select_included_vars +Could not find a proper value for select_max_priority +Could not find a proper value for select_mips +For parameter select_on_expt, found value False +For parameter select_on_year, found value False +For parameter select_sizes, found value None +Could not find a proper value for select_tierMax +Could not find a proper value for simple_domain_grid_regexp +For parameter sizes, found value None +For parameter source_id, found value None +For parameter source_type, found value None +For parameter special_timestep_vars, found value [] +For parameter split_frequencies, found value splitfreqs.dat +For parameter synchronisation_frequency, found value None +Could not find a proper value for tierMax +For parameter tierMax_lset, found value 3 +For parameter too_long_periods, found value [] +For parameter useAtForInstant, found value False +For parameter use_cmorvar_label_in_filename, found value False +For parameter use_union_zoom, found value False +For parameter vertical_interpolation_operation, found value instant +Could not find a proper value for vertical_interpolation_sample_freq +For parameter xios_version, found value 2 +For parameter year, found value None +For parameter zg_field_name, found value zg +Could not find a proper value for branch_year_in_child +For parameter grid_prefix, found value CMIP7_ +For parameter included_expgroups, found value [] +For parameter included_opportunities, found value [] +For parameter included_tables, found value [] +For parameter included_vargroups, found value [] +For parameter included_vars, found value [] +For parameter max_priority, found value 3 +Could not find a proper value for sectors +For parameter select_excluded_expgroups, found value [] +For parameter select_excluded_opportunities, found value [] +For parameter select_excluded_pairs, found value [] +For parameter select_excluded_request_links, found value None +For parameter select_excluded_tables, found value [] +For parameter select_excluded_vargroups, found value [] +For parameter select_excluded_vars, found value [] +For parameter select_grid_choice, found value LR +For parameter select_included_expgroups, found value [] +For parameter select_included_opportunities, found value [] +For parameter select_included_request_links, found value None +For parameter select_included_tables, found value [] +For parameter select_included_vargroups, found value [] +For parameter select_included_vars, found value [] +For parameter select_max_priority, found value 3 +For parameter select_mips, found value [] +For parameter select_tierMax, found value 3 +Could not find a proper value for simple_domain_grid_regexp +For parameter tierMax, found value 3 +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for branch_year_in_child +Could not find a proper value for sectors +Could not find a proper value for simple_domain_grid_regexp +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for HDL +Could not find a proper value for activity_id +For parameter branch_method, found value standard +For parameter branch_month_in_parent, found value 1 +Could not find a proper value for branch_year_in_parent +For parameter comment_lset, found value '' +For parameter comment_sset, found value '' +For parameter compression_level, found value 0 +For parameter contact, found value None +For parameter convention_str, found value CF-1.7 CMIP-6.2 +Function 'get_transformed_content': Passing merged **kwargs (potential function call overrides applied to config defaults: {'version': 'test', 'force_retrieve': False, 'cache_dir': 'data_request_directory', 'check_api_version': False, 'consolidate': False, 'export': 'release', 'log_file': 'default', 'log_level': 'info', 'offline': True, 'variable_name': 'CMIP7 Compound Name'}). +For parameter data_request_version_string, found value Software current_cmip7_dr_software - Content test +For parameter data_specs_version, found value Software current_cmip7_dr_software - Content test +For parameter date_range, found value %start_date%-%end_date% +Could not find a proper value for description +For parameter dr2xml_version, found value 3.1 +Could not find a proper value for experiment +For parameter expid_in_filename, found value None +For parameter forcing_index, found value 1 +For parameter history, found value none +Could not find a proper value for info_url +For parameter initialization_index, found value 1 +Could not find a proper value for institution +For parameter list_perso_dev_file, found value dr2xml_list_perso_and_dev_file_names +Could not find a proper value for mip_era +For parameter mip_era_lset, found value None +For parameter mip_era_sset, found value None +For parameter output_level, found value 10 +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +For parameter parent_time_ref_year, found value 1850 +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +For parameter physics_index, found value 1 +For parameter prefix, found value '' +Could not find a proper value for references +Could not find a proper value for source +For parameter sub_experiment, found value none +For parameter sub_experiment_id, found value none +Could not find a proper value for variant_info +Could not find a proper value for HDL +Could not find a proper value for activity_id +Could not find a proper value for branch_year_in_parent +Could not find a proper value for description +Could not find a proper value for experiment +Could not find a proper value for info_url +Could not find a proper value for institution +Could not find a proper value for mip_era +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +Could not find a proper value for references +Could not find a proper value for source +Could not find a proper value for variant_info Could not find id longitude of type coordinates_and_dimensions in the vocabulary server. Could not find id latitude of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) Find elements list of kind priority_level from vocabulary server. -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Find elements list of kind time_subsets from vocabulary server. -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 Could not find id height2m of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 Could not find id height10m of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id plev19 of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id plev3 of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id plev6 of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id sdepth100cm of type coordinates_and_dimensions in the vocabulary server. -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 Could not find id sdepth10cm of type coordinates_and_dimensions in the vocabulary server. -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id sdepth of type coordinates_and_dimensions in the vocabulary server. -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id olevel of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id op20bar of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id deltasigt of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 Could not find id depth0m of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct CMOR variables (whatever the grid): 105 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct var labels is: 72 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of simplified vars is: 105 Issues with standard names are: [] @@ -1609,638 +1829,1419 @@ For table Omon: bigthetao mlotstmax mlotstmin mpw so sos swh swhmax thetao tos w For table Oyr: tnkebto For table SIday: sithick siconc sithick siu siv For table SImon: sithick siconc simass sithick siu siv +For parameter id, found value nemo +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'IPSL', +'laboratory_used' = 'ipsl', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = 'None', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'LMDZ' = ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'], 'nemo' = ['seaIce', 'ocean', 'ocnBgchem'], 'orchidee' = ['land', 'landIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label arag: + Priority 3, Frequency mon, Description sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_arag +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label aragos: + Priority 3, Frequency mon, Description sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_aragos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label areacello: + Priority 1, Frequency fx, Description Cell areas for any grid used to report ocean variables and variables which are requested as used on the model ocean grid (e.g. hfsso, which is a downward heat flux from the atmosphere interpolated onto the ocean grid). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). +For parameter id, found value CMIP7_areacello +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label bigthetao: + Priority 1, Frequency mon, Description Diagnostic should be contributed only for models using conservative temperature as prognostic field. + Priority 2, Frequency day, Description Diagnostic should be contributed even for models using conservative temperature as prognostic field. +For parameter id, found value CMIP7_bigthetao +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label calc: + Priority 3, Frequency mon, Description sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_calc +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label calcos: + Priority 3, Frequency mon, Description sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_calcos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label chl: + Priority 3, Frequency day, Description Sum of chlorophyll from all phytoplankton group concentrations. In most models this is equal to chldiat+chlmisc, that is the sum of Diatom Chlorophyll Mass Concentration and Other Phytoplankton Chlorophyll Mass Concentration +For parameter id, found value CMIP7_chl +For parameter field_ref, found value ?dummy_XY_op20bar +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label deptho: + Priority 1, Frequency fx, Description Ocean bathymetry. Reported here is the sea floor depth for present day relative to z=0 geoid. Reported as missing for land grid cells. +For parameter id, found value CMIP7_deptho +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label dissic: + Priority 3, Frequency mon, Description Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration +For parameter id, found value CMIP7_dissic +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label masscello: + Priority 1, Frequency fx, Description Tracer grid-cell mass per unit area used for computing tracer budgets. For Boussinesq models with static ocean grid cell thickness, masscello = rhozero\*thickcello, where thickcello is static cell thickness and rhozero is constant Boussinesq reference density. More generally, masscello is time dependent and reported as part of Omon. +For parameter id, found value CMIP7_masscello +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mlotst: + Priority 2, Frequency day, Description Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. +For parameter id, found value CMIP7_mlotst +For parameter field_ref, found value ?dummy_XY_deltasigt +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mlotstmax: + Priority 2, Frequency mon, Description Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. +For parameter id, found value CMIP7_mlotstmax +For parameter field_ref, found value ?dummy_XY_deltasigt +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mlotstmin: + Priority 2, Frequency mon, Description Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. +For parameter id, found value CMIP7_mlotstmin +For parameter field_ref, found value ?dummy_XY_deltasigt +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mpw: + Priority 2, Frequency mon, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency 3hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency 6hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. +For parameter id, found value CMIP7_mpw +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label o2: + Priority 3, Frequency day, Description 'Mole concentration' means number of moles per unit volume, also called "molarity", and is used in the construction mole\_concentration\_of\_X\_in\_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox\_expressed\_as\_nitrogen'. +For parameter id, found value CMIP7_o2 +For parameter field_ref, found value ?dummy_XY_op20bar +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ph: + Priority 3, Frequency day, Description negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1. +For parameter id, found value CMIP7_ph +For parameter field_ref, found value ?dummy_XY_op20bar +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label siconc: + Priority 1, Frequency day, Description Areal fraction of a given grid cell that is covered by sea ice on the ocean grid, independent of the thickness of that ice. + Priority 1, Frequency mon, Description Areal fraction of a given grid cell that is covered by sea ice on the ocean grid, independent of the thickness of that ice. +For parameter id, found value CMIP7_siconc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label simass: + Priority 1, Frequency mon, Description Total mass of sea ice divided by grid-cell area. +For parameter id, found value CMIP7_simass +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sithick: + Priority 1, Frequency mon, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 1, Frequency mon, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 2, Frequency day, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 2, Frequency day, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. +For parameter id, found value CMIP7_sithick +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label siu: + Priority 1, Frequency mon, Description X-component of sea-ice velocity on native model grid. + Priority 2, Frequency day, Description X-component of sea-ice velocity on native model grid. +For parameter id, found value CMIP7_siu +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label siv: + Priority 1, Frequency mon, Description Y-component of sea-ice velocity on native model grid. + Priority 2, Frequency day, Description Y-component of sea-ice velocity on native model grid. +For parameter id, found value CMIP7_siv +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label so: + Priority 1, Frequency mon, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. + Priority 3, Frequency day, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. +For parameter id, found value CMIP7_so +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sos: + Priority 1, Frequency mon, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. + Priority 1, Frequency day, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. +For parameter id, found value CMIP7_sos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swh: + Priority 2, Frequency mon, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 3hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 6hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swh +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swhmax: + Priority 2, Frequency mon, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 6hr, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swhmax +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label talk: + Priority 3, Frequency mon, Description total alkalinity equivalent concentration (including carbonate, borate, phosphorus, silicon, and nitrogen components) +For parameter id, found value CMIP7_talk +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label thetao: + Priority 1, Frequency mon, Description Diagnostic should be contributed even for models using conservative temperature as prognostic field. + Priority 2, Frequency day, Description Diagnostic should be contributed even for models using conservative temperature as prognostic field. +For parameter id, found value CMIP7_thetao +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tnkebto: + Priority 3, Frequency yr, Description Depth integrated impacts on kinetic energy arising from parameterized eddy-induced advection. For CMIP5, this diagnostic was 3d, whereas the CMIP6 depth integrated diagnostic is sufficient for many purposes and reduces archive requirements. +For parameter id, found value CMIP7_tnkebto +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tos: + Priority 1, Frequency mon, Description This may differ from "surface temperature" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature. + Priority 1, Frequency day, Description This may differ from "surface temperature" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature. + Priority 2, Frequency 3hr, Description temperature of surface of open ocean, sampled synoptically. +For parameter id, found value CMIP7_tos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tossq: + Priority 2, Frequency day, Description Square of temperature of liquid ocean, averaged over the day. +For parameter id, found value CMIP7_tossq +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label uos: + Priority 3, Frequency day, Description Daily surface prognostic x-ward velocity component resolved by the model. +For parameter id, found value CMIP7_uos +For parameter field_ref, found value ?dummy_XY_depth0m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label vos: + Priority 3, Frequency day, Description Daily surface prognostic y-ward velocity component resolved by the model. +For parameter id, found value CMIP7_vos +For parameter field_ref, found value ?dummy_XY_depth0m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label wo: + Priority 1, Frequency mon, Description Prognostic z-ward velocity component resolved by the model. +For parameter id, found value CMIP7_wo +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label wpp: + Priority 2, Frequency mon, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency 3hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency 6hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. +For parameter id, found value CMIP7_wpp +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zos: + Priority 1, Frequency mon, Description This is the dynamic sea level, so should have zero global area mean. It should not include inverse barometer depressions from sea ice. + Priority 1, Frequency day, Description This is the dynamic sea level, so should have zero global area mean. zos is the effective sea level as if sea ice (and snow) at a grid cell were converted to liquid seawater (Campin et al., 2008). For OMIP, do _not _record inverse barometer responses from sea-ice (and snow) loading in zos. See (Griffies et al, 2016, https://doi.org/10.5194/gmd-9-3231-2016). +For parameter id, found value CMIP7_zos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zossq: + Priority 2, Frequency mon, Description Surface ocean geoid defines z=0. +For parameter id, found value CMIP7_zossq +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zostoga: + Priority 1, Frequency mon, Description There is no CMIP6 request for zosga nor zossga. + Priority 2, Frequency day, Description Global Average Thermosteric Sea Level Change +For parameter id, found value CMIP7_zostoga +For parameter field_ref, found value ?dummy_0d +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 37 variables written for current_directory/test_pingfiles_CMIP7_IPSL/test_outputs//ping_nemo.xml +For parameter data_request_config, found value __package-root__/dr_interface/CMIP7_config +For parameter data_request_content_version, found value test +For parameter data_request_path, found value None +For parameter data_request_used, found value CMIP7 +For parameter institution_id, found value IPSL +For parameter laboratory_used, found value ipsl +For parameter project, found value ping +For parameter project_settings, found value ping +For parameter save_project_settings, found value None +For parameter vocabulary_config, found value __package-root__/vocabulary/vocabulary.json +For parameter vocabulary_project, found value ping +For parameter vocabulary_used, found value None +No vocabulary configured. +For parameter CFsubhr_frequency, found value 1ts +For parameter add_Gibraltar, found value False +For parameter additional_allowed_model_components, found value [] +For parameter adhoc_policy_do_add_1deg_grid_for_tos, found value False +For parameter allow_duplicates, found value True +For parameter allow_duplicates_in_same_table, found value False +For parameter allow_pseudo_standard_names, found value False +For parameter allow_tos_3hr_1deg, found value True +Could not find a proper value for branch_year_in_child +For parameter branching, found value {} +For parameter bypass_CV_components, found value False +For parameter bytes_per_float, found value 2 +For parameter configuration, found value None +For parameter context, found value orchidee +For parameter debug_parsing, found value False +For parameter dr2xml_manages_enddate, found value True +For parameter end_year, found value False +For parameter excluded_expgroups_lset, found value [] +For parameter excluded_expgroups_sset, found value [] +For parameter excluded_opportunities_lset, found value [] +For parameter excluded_opportunities_sset, found value [] +For parameter excluded_pairs_lset, found value [] +For parameter excluded_pairs_sset, found value [] +For parameter excluded_request_links, found value [] +For parameter excluded_spshapes_lset, found value [] +For parameter excluded_tables_lset, found value [] +For parameter excluded_tables_sset, found value [] +For parameter excluded_vargroups_lset, found value [] +For parameter excluded_vargroups_sset, found value [] +For parameter excluded_vars_lset, found value [] +For parameter excluded_vars_per_config, found value [] +For parameter excluded_vars_sset, found value [] +For parameter experiment_for_requests, found value None +For parameter experiment_id, found value None +For parameter filter_on_realization, found value True +For parameter fx_from_file, found value [] +For parameter grid_choice, found value None +For parameter grid_policy, found value None +Could not find a proper value for grid_prefix +For parameter grids, found value None +For parameter grids_dev, found value {} +For parameter grouped_vars_per_file, found value [] +Could not find a proper value for included_expgroups +For parameter included_expgroups_lset, found value [] +Could not find a proper value for included_opportunities +For parameter included_opportunities_lset, found value [] +For parameter included_request_links, found value [] +Could not find a proper value for included_tables +For parameter included_tables_lset, found value [] +Could not find a proper value for included_vargroups +For parameter included_vargroups_lset, found value [] +Could not find a proper value for included_vars +For parameter included_vars_lset, found value [] +For parameter listof_home_vars, found value None +For parameter max_file_size_in_floats, found value 500000000.0 +Could not find a proper value for max_priority +For parameter max_priority_lset, found value 3 +For parameter max_split_freq, found value None +For parameter mips, found value OrderedDict() +For parameter nemo_sources_management_policy_master_of_the_world, found value False +For parameter non_standard_attributes, found value {} +For parameter non_standard_axes, found value {} +For parameter orography_field_name, found value orog +For parameter orphan_variables, found value [] +For parameter path_extra_tables, found value None +For parameter path_special_defs, found value None +For parameter path_to_parse, found value ./ +For parameter perso_sdims_description, found value {} +For parameter ping_variables_prefix, found value CMIP7_ +For parameter prefixed_orography_field_name, found value CMIP7_orog +For parameter print_stats_per_var_label, found value False +For parameter print_variables, found value True +For parameter realization_index, found value 1 +For parameter realms_per_context, found value ['land', 'landIce'] +For parameter required_model_components, found value [] +For parameter sampling_timestep, found value None +Could not find a proper value for sectors +For parameter select, found value no +Could not find a proper value for select_excluded_expgroups +Could not find a proper value for select_excluded_opportunities +Could not find a proper value for select_excluded_pairs +Could not find a proper value for select_excluded_request_links +Could not find a proper value for select_excluded_tables +Could not find a proper value for select_excluded_vargroups +Could not find a proper value for select_excluded_vars +Could not find a proper value for select_grid_choice +Could not find a proper value for select_included_expgroups +Could not find a proper value for select_included_opportunities +Could not find a proper value for select_included_request_links +Could not find a proper value for select_included_tables +Could not find a proper value for select_included_vargroups +Could not find a proper value for select_included_vars +Could not find a proper value for select_max_priority +Could not find a proper value for select_mips +For parameter select_on_expt, found value False +For parameter select_on_year, found value False +For parameter select_sizes, found value None +Could not find a proper value for select_tierMax +Could not find a proper value for simple_domain_grid_regexp +For parameter sizes, found value None +For parameter source_id, found value None +For parameter source_type, found value None +For parameter special_timestep_vars, found value [] +For parameter split_frequencies, found value splitfreqs.dat +For parameter synchronisation_frequency, found value None +Could not find a proper value for tierMax +For parameter tierMax_lset, found value 3 +For parameter too_long_periods, found value [] +For parameter useAtForInstant, found value False +For parameter use_cmorvar_label_in_filename, found value False +For parameter use_union_zoom, found value False +For parameter vertical_interpolation_operation, found value instant +Could not find a proper value for vertical_interpolation_sample_freq +For parameter xios_version, found value 2 +For parameter year, found value None +For parameter zg_field_name, found value zg +Could not find a proper value for branch_year_in_child +For parameter grid_prefix, found value CMIP7_ +For parameter included_expgroups, found value [] +For parameter included_opportunities, found value [] +For parameter included_tables, found value [] +For parameter included_vargroups, found value [] +For parameter included_vars, found value [] +For parameter max_priority, found value 3 +Could not find a proper value for sectors +For parameter select_excluded_expgroups, found value [] +For parameter select_excluded_opportunities, found value [] +For parameter select_excluded_pairs, found value [] +For parameter select_excluded_request_links, found value None +For parameter select_excluded_tables, found value [] +For parameter select_excluded_vargroups, found value [] +For parameter select_excluded_vars, found value [] +For parameter select_grid_choice, found value LR +For parameter select_included_expgroups, found value [] +For parameter select_included_opportunities, found value [] +For parameter select_included_request_links, found value None +For parameter select_included_tables, found value [] +For parameter select_included_vargroups, found value [] +For parameter select_included_vars, found value [] +For parameter select_max_priority, found value 3 +For parameter select_mips, found value [] +For parameter select_tierMax, found value 3 +Could not find a proper value for simple_domain_grid_regexp +For parameter tierMax, found value 3 +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for branch_year_in_child +Could not find a proper value for sectors +Could not find a proper value for simple_domain_grid_regexp +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for HDL +Could not find a proper value for activity_id +For parameter branch_method, found value standard +For parameter branch_month_in_parent, found value 1 +Could not find a proper value for branch_year_in_parent +For parameter comment_lset, found value '' +For parameter comment_sset, found value '' +For parameter compression_level, found value 0 +For parameter contact, found value None +For parameter convention_str, found value CF-1.7 CMIP-6.2 +For parameter data_request_version_string, found value Software current_cmip7_dr_software - Content test +For parameter data_specs_version, found value Software current_cmip7_dr_software - Content test +For parameter date_range, found value %start_date%-%end_date% +Could not find a proper value for description +For parameter dr2xml_version, found value 3.1 +Could not find a proper value for experiment +For parameter expid_in_filename, found value None +For parameter forcing_index, found value 1 +For parameter history, found value none +Could not find a proper value for info_url +For parameter initialization_index, found value 1 +Could not find a proper value for institution +For parameter list_perso_dev_file, found value dr2xml_list_perso_and_dev_file_names +Could not find a proper value for mip_era +For parameter mip_era_lset, found value None +For parameter mip_era_sset, found value None +For parameter output_level, found value 10 +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +For parameter parent_time_ref_year, found value 1850 +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +For parameter physics_index, found value 1 +For parameter prefix, found value '' +Could not find a proper value for references +Could not find a proper value for source +For parameter sub_experiment, found value none +For parameter sub_experiment_id, found value none +Could not find a proper value for variant_info +Could not find a proper value for HDL +Could not find a proper value for activity_id +Could not find a proper value for branch_year_in_parent +Could not find a proper value for description +Could not find a proper value for experiment +Could not find a proper value for info_url +Could not find a proper value for institution +Could not find a proper value for mip_era +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +Could not find a proper value for references +Could not find a proper value for source +Could not find a proper value for variant_info Number of distinct CMOR variables (whatever the grid): 105 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct var labels is: 72 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of simplified vars is: 105 Issues with standard names are: [] @@ -2255,638 +3256,1078 @@ For table Efx: slthick For table LImon: snc snc For table Lmon: lai mrso mrsos For table fx: areacella orog rootd +For parameter id, found value orchidee +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'IPSL', +'laboratory_used' = 'ipsl', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = 'None', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'LMDZ' = ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'], 'nemo' = ['seaIce', 'ocean', 'ocnBgchem'], 'orchidee' = ['land', 'landIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label areacella: + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). +For parameter id, found value CMIP7_areacella +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label bldep: + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours +For parameter id, found value CMIP7_bldep +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfdsl: + Priority 3, Frequency 3hr, Description Ground heat flux at 3hr +For parameter id, found value CMIP7_hfdsl +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label lai: + Priority 1, Frequency mon, Description A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows. +For parameter id, found value CMIP7_lai +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrso: + Priority 1, Frequency mon, Description the mass per unit area (summed over all soil layers) of water in all phases. +For parameter id, found value CMIP7_mrso +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrso100: + Priority 3, Frequency 3hr, Description Soil moisture at 3hr but for 0-1m +For parameter id, found value CMIP7_mrso100 +For parameter field_ref, found value ?dummy_XY_sdepth100cm +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrsos: + Priority 1, Frequency mon, Description the mass of water in all phases in a thin surface soil layer. + Priority 2, Frequency 3hr, Description the mass of water in all phases in a thin surface soil layer. +For parameter id, found value CMIP7_mrsos +For parameter field_ref, found value ?dummy_XY_sdepth10cm +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label orog: + Priority 1, Frequency fx, Description height above the geoid; as defined here, "the geoid" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Reported here is the height above the present-day geoid (0.0 over ocean). +For parameter id, found value CMIP7_orog +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rootd: + Priority 1, Frequency fx, Description report the maximum soil depth reachable by plant roots (if defined in model), i.e., the maximum soil depth from which they can extract moisture; report as "missing" where the land fraction is 0. +For parameter id, found value CMIP7_rootd +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label slthick: + Priority 1, Frequency fx, Description Thickness of Soil Layers +For parameter id, found value CMIP7_slthick +For parameter field_ref, found value ?dummy_XYSo_sdepth +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label snc: + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. +For parameter id, found value CMIP7_snc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label srfrad: + Priority 2, Frequency 3hr, Description Net radiative flux at surface +For parameter id, found value CMIP7_srfrad +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tran: + Priority 3, Frequency 3hr, Description Transpiration +For parameter id, found value CMIP7_tran +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tslsi: + Priority 2, Frequency 3hr, Description Surface temperature of all surfaces except open ocean, sampled synoptically. +For parameter id, found value CMIP7_tslsi +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 14 variables written for current_directory/test_pingfiles_CMIP7_IPSL/test_outputs//ping_orchidee.xml +For parameter data_request_config, found value __package-root__/dr_interface/CMIP7_config +For parameter data_request_content_version, found value test +For parameter data_request_path, found value None +For parameter data_request_used, found value CMIP7 +For parameter institution_id, found value IPSL +For parameter laboratory_used, found value ipsl +For parameter project, found value ping +For parameter project_settings, found value ping +For parameter save_project_settings, found value None +For parameter vocabulary_config, found value __package-root__/vocabulary/vocabulary.json +For parameter vocabulary_project, found value ping +For parameter vocabulary_used, found value None +No vocabulary configured. +For parameter CFsubhr_frequency, found value 1ts +For parameter add_Gibraltar, found value False +For parameter additional_allowed_model_components, found value [] +For parameter adhoc_policy_do_add_1deg_grid_for_tos, found value False +For parameter allow_duplicates, found value True +For parameter allow_duplicates_in_same_table, found value False +For parameter allow_pseudo_standard_names, found value False +For parameter allow_tos_3hr_1deg, found value True +Could not find a proper value for branch_year_in_child +For parameter branching, found value {} +For parameter bypass_CV_components, found value False +For parameter bytes_per_float, found value 2 +For parameter configuration, found value None +For parameter context, found value LMDZ +For parameter debug_parsing, found value False +For parameter dr2xml_manages_enddate, found value True +For parameter end_year, found value False +For parameter excluded_expgroups_lset, found value [] +For parameter excluded_expgroups_sset, found value [] +For parameter excluded_opportunities_lset, found value [] +For parameter excluded_opportunities_sset, found value [] +For parameter excluded_pairs_lset, found value [] +For parameter excluded_pairs_sset, found value [] +For parameter excluded_request_links, found value [] +For parameter excluded_spshapes_lset, found value [] +For parameter excluded_tables_lset, found value [] +For parameter excluded_tables_sset, found value [] +For parameter excluded_vargroups_lset, found value [] +For parameter excluded_vargroups_sset, found value [] +For parameter excluded_vars_lset, found value [] +For parameter excluded_vars_per_config, found value [] +For parameter excluded_vars_sset, found value [] +For parameter experiment_for_requests, found value None +For parameter experiment_id, found value None +For parameter filter_on_realization, found value True +For parameter fx_from_file, found value [] +For parameter grid_choice, found value None +For parameter grid_policy, found value None +Could not find a proper value for grid_prefix +For parameter grids, found value None +For parameter grids_dev, found value {} +For parameter grouped_vars_per_file, found value [] +Could not find a proper value for included_expgroups +For parameter included_expgroups_lset, found value [] +Could not find a proper value for included_opportunities +For parameter included_opportunities_lset, found value [] +For parameter included_request_links, found value [] +Could not find a proper value for included_tables +For parameter included_tables_lset, found value [] +Could not find a proper value for included_vargroups +For parameter included_vargroups_lset, found value [] +Could not find a proper value for included_vars +For parameter included_vars_lset, found value [] +For parameter listof_home_vars, found value None +For parameter max_file_size_in_floats, found value 500000000.0 +Could not find a proper value for max_priority +For parameter max_priority_lset, found value 3 +For parameter max_split_freq, found value None +For parameter mips, found value OrderedDict() +For parameter nemo_sources_management_policy_master_of_the_world, found value False +For parameter non_standard_attributes, found value {} +For parameter non_standard_axes, found value {} +For parameter orography_field_name, found value orog +For parameter orphan_variables, found value [] +For parameter path_extra_tables, found value None +For parameter path_special_defs, found value None +For parameter path_to_parse, found value ./ +For parameter perso_sdims_description, found value {} +For parameter ping_variables_prefix, found value CMIP7_ +For parameter prefixed_orography_field_name, found value CMIP7_orog +For parameter print_stats_per_var_label, found value False +For parameter print_variables, found value True +For parameter realization_index, found value 1 +For parameter realms_per_context, found value ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'] +For parameter required_model_components, found value [] +For parameter sampling_timestep, found value None +Could not find a proper value for sectors +For parameter select, found value no +Could not find a proper value for select_excluded_expgroups +Could not find a proper value for select_excluded_opportunities +Could not find a proper value for select_excluded_pairs +Could not find a proper value for select_excluded_request_links +Could not find a proper value for select_excluded_tables +Could not find a proper value for select_excluded_vargroups +Could not find a proper value for select_excluded_vars +Could not find a proper value for select_grid_choice +Could not find a proper value for select_included_expgroups +Could not find a proper value for select_included_opportunities +Could not find a proper value for select_included_request_links +Could not find a proper value for select_included_tables +Could not find a proper value for select_included_vargroups +Could not find a proper value for select_included_vars +Could not find a proper value for select_max_priority +Could not find a proper value for select_mips +For parameter select_on_expt, found value False +For parameter select_on_year, found value False +For parameter select_sizes, found value None +Could not find a proper value for select_tierMax +Could not find a proper value for simple_domain_grid_regexp +For parameter sizes, found value None +For parameter source_id, found value None +For parameter source_type, found value None +For parameter special_timestep_vars, found value [] +For parameter split_frequencies, found value splitfreqs.dat +For parameter synchronisation_frequency, found value None +Could not find a proper value for tierMax +For parameter tierMax_lset, found value 3 +For parameter too_long_periods, found value [] +For parameter useAtForInstant, found value False +For parameter use_cmorvar_label_in_filename, found value False +For parameter use_union_zoom, found value False +For parameter vertical_interpolation_operation, found value instant +Could not find a proper value for vertical_interpolation_sample_freq +For parameter xios_version, found value 2 +For parameter year, found value None +For parameter zg_field_name, found value zg +Could not find a proper value for branch_year_in_child +For parameter grid_prefix, found value CMIP7_ +For parameter included_expgroups, found value [] +For parameter included_opportunities, found value [] +For parameter included_tables, found value [] +For parameter included_vargroups, found value [] +For parameter included_vars, found value [] +For parameter max_priority, found value 3 +Could not find a proper value for sectors +For parameter select_excluded_expgroups, found value [] +For parameter select_excluded_opportunities, found value [] +For parameter select_excluded_pairs, found value [] +For parameter select_excluded_request_links, found value None +For parameter select_excluded_tables, found value [] +For parameter select_excluded_vargroups, found value [] +For parameter select_excluded_vars, found value [] +For parameter select_grid_choice, found value LR +For parameter select_included_expgroups, found value [] +For parameter select_included_opportunities, found value [] +For parameter select_included_request_links, found value None +For parameter select_included_tables, found value [] +For parameter select_included_vargroups, found value [] +For parameter select_included_vars, found value [] +For parameter select_max_priority, found value 3 +For parameter select_mips, found value [] +For parameter select_tierMax, found value 3 +Could not find a proper value for simple_domain_grid_regexp +For parameter tierMax, found value 3 +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for branch_year_in_child +Could not find a proper value for sectors +Could not find a proper value for simple_domain_grid_regexp +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for HDL +Could not find a proper value for activity_id +For parameter branch_method, found value standard +For parameter branch_month_in_parent, found value 1 +Could not find a proper value for branch_year_in_parent +For parameter comment_lset, found value '' +For parameter comment_sset, found value '' +For parameter compression_level, found value 0 +For parameter contact, found value None +For parameter convention_str, found value CF-1.7 CMIP-6.2 +For parameter data_request_version_string, found value Software current_cmip7_dr_software - Content test +For parameter data_specs_version, found value Software current_cmip7_dr_software - Content test +For parameter date_range, found value %start_date%-%end_date% +Could not find a proper value for description +For parameter dr2xml_version, found value 3.1 +Could not find a proper value for experiment +For parameter expid_in_filename, found value None +For parameter forcing_index, found value 1 +For parameter history, found value none +Could not find a proper value for info_url +For parameter initialization_index, found value 1 +Could not find a proper value for institution +For parameter list_perso_dev_file, found value dr2xml_list_perso_and_dev_file_names +Could not find a proper value for mip_era +For parameter mip_era_lset, found value None +For parameter mip_era_sset, found value None +For parameter output_level, found value 10 +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +For parameter parent_time_ref_year, found value 1850 +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +For parameter physics_index, found value 1 +For parameter prefix, found value '' +Could not find a proper value for references +Could not find a proper value for source +For parameter sub_experiment, found value none +For parameter sub_experiment_id, found value none +Could not find a proper value for variant_info +Could not find a proper value for HDL +Could not find a proper value for activity_id +Could not find a proper value for branch_year_in_parent +Could not find a proper value for description +Could not find a proper value for experiment +Could not find a proper value for info_url +Could not find a proper value for institution +Could not find a proper value for mip_era +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +Could not find a proper value for references +Could not find a proper value for source +Could not find a proper value for variant_info Number of distinct CMOR variables (whatever the grid): 105 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct var labels is: 72 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of simplified vars is: 105 Issues with standard names are: [] @@ -2913,4 +4354,645 @@ For table Lmon: lai mrso mrsos For table Omon: mpw swh swhmax wpp For table day: pr psl sfcWind ta tas tasmax tasmin zg For table fx: areacella sftlf areacella orog rootd +For parameter id, found value LMDZ +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'IPSL', +'laboratory_used' = 'ipsl', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = 'None', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'LMDZ' = ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'], 'nemo' = ['seaIce', 'ocean', 'ocnBgchem'], 'orchidee' = ['land', 'landIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label areacella: + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). +For parameter id, found value CMIP7_areacella +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label bldep: + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours +For parameter id, found value CMIP7_bldep +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfdsl: + Priority 3, Frequency 3hr, Description Ground heat flux at 3hr +For parameter id, found value CMIP7_hfdsl +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfls: + Priority 2, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_hfls +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfss: + Priority 2, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_hfss +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hurs: + Priority 1, Frequency 6hr, Description The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. +For parameter id, found value CMIP7_hurs +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label huss: + Priority 1, Frequency 3hr, Description This is sampled synoptically. +For parameter id, found value CMIP7_huss +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label lai: + Priority 1, Frequency mon, Description A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows. +For parameter id, found value CMIP7_lai +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mpw: + Priority 2, Frequency 3hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency 6hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency mon, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. +For parameter id, found value CMIP7_mpw +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrso: + Priority 1, Frequency mon, Description the mass per unit area (summed over all soil layers) of water in all phases. +For parameter id, found value CMIP7_mrso +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrso100: + Priority 3, Frequency 3hr, Description Soil moisture at 3hr but for 0-1m +For parameter id, found value CMIP7_mrso100 +For parameter field_ref, found value ?dummy_XY_sdepth100cm +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrsos: + Priority 1, Frequency mon, Description the mass of water in all phases in a thin surface soil layer. + Priority 2, Frequency 3hr, Description the mass of water in all phases in a thin surface soil layer. +For parameter id, found value CMIP7_mrsos +For parameter field_ref, found value ?dummy_XY_sdepth10cm +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label orog: + Priority 1, Frequency fx, Description height above the geoid; as defined here, "the geoid" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Reported here is the height above the present-day geoid (0.0 over ocean). +For parameter id, found value CMIP7_orog +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label pr: + Priority 1, Frequency 3hr, Description at surface; includes both liquid and solid phases. This is the 3-hour mean precipitation flux. + Priority 1, Frequency 1hr, Description Total precipitation flux + Priority 1, Frequency day, Description at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) + Priority 1, Frequency mon, Description at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) +For parameter id, found value CMIP7_pr +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label prc: + Priority 1, Frequency mon, Description at surface; includes both liquid and solid phases. +For parameter id, found value CMIP7_prc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ps: + Priority 1, Frequency day, Description surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Priority 2, Frequency 3hr, Description sampled synoptically to diagnose atmospheric tides, this is better than mean sea level pressure. +For parameter id, found value CMIP7_ps +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label psl: + Priority 1, Frequency day, Description Sea Level Pressure + Priority 2, Frequency 1hr, Description Sea level pressure +For parameter id, found value CMIP7_psl +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rlds: + Priority 3, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_rlds +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rlus: + Priority 3, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_rlus +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rootd: + Priority 1, Frequency fx, Description report the maximum soil depth reachable by plant roots (if defined in model), i.e., the maximum soil depth from which they can extract moisture; report as "missing" where the land fraction is 0. +For parameter id, found value CMIP7_rootd +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sfcWind: + Priority 1, Frequency day, Description near-surface (usually, 10 meters) wind speed. + Priority 1, Frequency mon, Description This is the mean of the speed, not the speed computed from the mean u and v components of wind +For parameter id, found value CMIP7_sfcWind +For parameter field_ref, found value ?dummy_XY_height10m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sftlf: + Priority 1, Frequency fx, Description Percentage of horizontal area occupied by land. +For parameter id, found value CMIP7_sftlf +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label slthick: + Priority 1, Frequency fx, Description Thickness of Soil Layers +For parameter id, found value CMIP7_slthick +For parameter field_ref, found value ?dummy_XYSo_sdepth +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label snc: + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. +For parameter id, found value CMIP7_snc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label srfrad: + Priority 2, Frequency 3hr, Description Net radiative flux at surface +For parameter id, found value CMIP7_srfrad +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swh: + Priority 2, Frequency 3hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 6hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency mon, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swh +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swhmax: + Priority 2, Frequency 6hr, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency mon, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swhmax +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ta: + Priority 1, Frequency day, Description Air Temperature + Priority 1, Frequency mon, Description Air Temperature + Priority 1, Frequency 6hr, Description Air Temperature +For parameter id, found value CMIP7_ta +For parameter field_ref, found value ?dummy_XY_plev19 +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ta6: + Priority 3, Frequency 3hr, Description Air temperature on 6 pressure levels in the lower troposphere +For parameter id, found value CMIP7_ta6 +For parameter field_ref, found value ?dummy_XY_plev6 +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tas: + Priority 1, Frequency 3hr, Description This is sampled synoptically. + Priority 1, Frequency day, Description near-surface (usually, 2 meter) air temperature + Priority 1, Frequency mon, Description near-surface (usually, 2 meter) air temperature +For parameter id, found value CMIP7_tas +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tasmax: + Priority 1, Frequency day, Description maximum near-surface (usually, 2 meter) air temperature (add cell\_method attribute "time: max") + Priority 1, Frequency mon, Description monthly mean of the daily-maximum near-surface air temperature. +For parameter id, found value CMIP7_tasmax +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tasmin: + Priority 1, Frequency day, Description minimum near-surface (usually, 2 meter) air temperature (add cell\_method attribute "time: min") + Priority 1, Frequency mon, Description monthly mean of the daily-minimum near-surface air temperature. +For parameter id, found value CMIP7_tasmin +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tran: + Priority 3, Frequency 3hr, Description Transpiration +For parameter id, found value CMIP7_tran +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ts: + Priority 1, Frequency mon, Description Surface temperature (skin for open ocean) +For parameter id, found value CMIP7_ts +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tslsi: + Priority 2, Frequency 3hr, Description Surface temperature of all surfaces except open ocean, sampled synoptically. +For parameter id, found value CMIP7_tslsi +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label uas: + Priority 2, Frequency 1hr, Description Zonal wind (positive in a eastward direction) at 10 meters above the surface. +For parameter id, found value CMIP7_uas +For parameter field_ref, found value ?dummy_XY_height10m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label vas: + Priority 2, Frequency 1hr, Description Meridional wind (positive in a northward direction) at 10 meters above the surface. +For parameter id, found value CMIP7_vas +For parameter field_ref, found value ?dummy_XY_height10m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label wpp: + Priority 2, Frequency 3hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency 6hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency mon, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. +For parameter id, found value CMIP7_wpp +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zg: + Priority 1, Frequency day, Description Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. + Priority 1, Frequency mon, Description Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. +For parameter id, found value CMIP7_zg +For parameter field_ref, found value ?dummy_XY_plev19 +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 39 variables written for current_directory/test_pingfiles_CMIP7_IPSL/test_outputs//ping_LMDZ.xml diff --git a/tests/test_pingfiles_CMIP7_IPSL_realm/reference_outputs/dr2xml_log b/tests/test_pingfiles_CMIP7_IPSL_realm/reference_outputs/dr2xml_log index 11985da9..dfe593b2 100644 --- a/tests/test_pingfiles_CMIP7_IPSL_realm/reference_outputs/dr2xml_log +++ b/tests/test_pingfiles_CMIP7_IPSL_realm/reference_outputs/dr2xml_log @@ -1,1596 +1,1816 @@ -Function 'get_transformed_content': Passing **kwargs from config file. +For parameter data_request_config, found value __package-root__/dr_interface/CMIP7_config +For parameter data_request_content_version, found value test +For parameter data_request_path, found value None +For parameter data_request_used, found value CMIP7 +For parameter institution_id, found value IPSL +For parameter laboratory_used, found value ipsl +For parameter project, found value ping +For parameter project_settings, found value ping +For parameter save_project_settings, found value None +For parameter vocabulary_config, found value __package-root__/vocabulary/vocabulary.json +For parameter vocabulary_project, found value ping +For parameter vocabulary_used, found value None +No vocabulary configured. +For parameter CFsubhr_frequency, found value 1ts +For parameter add_Gibraltar, found value False +For parameter additional_allowed_model_components, found value [] +For parameter adhoc_policy_do_add_1deg_grid_for_tos, found value False +For parameter allow_duplicates, found value True +For parameter allow_duplicates_in_same_table, found value False +For parameter allow_pseudo_standard_names, found value False +For parameter allow_tos_3hr_1deg, found value True +Could not find a proper value for branch_year_in_child +For parameter branching, found value {} +For parameter bypass_CV_components, found value False +For parameter bytes_per_float, found value 2 +For parameter configuration, found value None +For parameter context, found value nemo +For parameter debug_parsing, found value False +For parameter dr2xml_manages_enddate, found value True +For parameter end_year, found value False +For parameter excluded_expgroups_lset, found value [] +For parameter excluded_expgroups_sset, found value [] +For parameter excluded_opportunities_lset, found value [] +For parameter excluded_opportunities_sset, found value [] +For parameter excluded_pairs_lset, found value [] +For parameter excluded_pairs_sset, found value [] +For parameter excluded_request_links, found value [] +For parameter excluded_spshapes_lset, found value [] +For parameter excluded_tables_lset, found value [] +For parameter excluded_tables_sset, found value [] +For parameter excluded_vargroups_lset, found value [] +For parameter excluded_vargroups_sset, found value [] +For parameter excluded_vars_lset, found value [] +For parameter excluded_vars_per_config, found value [] +For parameter excluded_vars_sset, found value [] +For parameter experiment_for_requests, found value None +For parameter experiment_id, found value None +For parameter filter_on_realization, found value True +For parameter fx_from_file, found value [] +For parameter grid_choice, found value None +For parameter grid_policy, found value None +Could not find a proper value for grid_prefix +For parameter grids, found value None +For parameter grids_dev, found value {} +For parameter grouped_vars_per_file, found value [] +Could not find a proper value for included_expgroups +For parameter included_expgroups_lset, found value [] +Could not find a proper value for included_opportunities +For parameter included_opportunities_lset, found value [] +For parameter included_request_links, found value [] +Could not find a proper value for included_tables +For parameter included_tables_lset, found value [] +Could not find a proper value for included_vargroups +For parameter included_vargroups_lset, found value [] +Could not find a proper value for included_vars +For parameter included_vars_lset, found value [] +For parameter listof_home_vars, found value None +For parameter max_file_size_in_floats, found value 500000000.0 +Could not find a proper value for max_priority +For parameter max_priority_lset, found value 3 +For parameter max_split_freq, found value None +For parameter mips, found value OrderedDict() +For parameter nemo_sources_management_policy_master_of_the_world, found value False +For parameter non_standard_attributes, found value {} +For parameter non_standard_axes, found value {} +For parameter orography_field_name, found value orog +For parameter orphan_variables, found value [] +For parameter path_extra_tables, found value None +For parameter path_special_defs, found value None +For parameter path_to_parse, found value ./ +For parameter perso_sdims_description, found value {} +For parameter ping_variables_prefix, found value CMIP7_ +For parameter prefixed_orography_field_name, found value CMIP7_orog +For parameter print_stats_per_var_label, found value False +For parameter print_variables, found value True +For parameter realization_index, found value 1 +For parameter realms_per_context, found value ['seaIce', 'ocean', 'ocnBgchem'] +For parameter required_model_components, found value [] +For parameter sampling_timestep, found value None +Could not find a proper value for sectors +For parameter select, found value no +Could not find a proper value for select_excluded_expgroups +Could not find a proper value for select_excluded_opportunities +Could not find a proper value for select_excluded_pairs +Could not find a proper value for select_excluded_request_links +Could not find a proper value for select_excluded_tables +Could not find a proper value for select_excluded_vargroups +Could not find a proper value for select_excluded_vars +Could not find a proper value for select_grid_choice +Could not find a proper value for select_included_expgroups +Could not find a proper value for select_included_opportunities +Could not find a proper value for select_included_request_links +Could not find a proper value for select_included_tables +Could not find a proper value for select_included_vargroups +Could not find a proper value for select_included_vars +Could not find a proper value for select_max_priority +Could not find a proper value for select_mips +For parameter select_on_expt, found value False +For parameter select_on_year, found value False +For parameter select_sizes, found value None +Could not find a proper value for select_tierMax +Could not find a proper value for simple_domain_grid_regexp +For parameter sizes, found value None +For parameter source_id, found value None +For parameter source_type, found value None +For parameter special_timestep_vars, found value [] +For parameter split_frequencies, found value splitfreqs.dat +For parameter synchronisation_frequency, found value None +Could not find a proper value for tierMax +For parameter tierMax_lset, found value 3 +For parameter too_long_periods, found value [] +For parameter useAtForInstant, found value False +For parameter use_cmorvar_label_in_filename, found value False +For parameter use_union_zoom, found value False +For parameter vertical_interpolation_operation, found value instant +Could not find a proper value for vertical_interpolation_sample_freq +For parameter xios_version, found value 2 +For parameter year, found value None +For parameter zg_field_name, found value zg +Could not find a proper value for branch_year_in_child +For parameter grid_prefix, found value CMIP7_ +For parameter included_expgroups, found value [] +For parameter included_opportunities, found value [] +For parameter included_tables, found value [] +For parameter included_vargroups, found value [] +For parameter included_vars, found value [] +For parameter max_priority, found value 3 +Could not find a proper value for sectors +For parameter select_excluded_expgroups, found value [] +For parameter select_excluded_opportunities, found value [] +For parameter select_excluded_pairs, found value [] +For parameter select_excluded_request_links, found value None +For parameter select_excluded_tables, found value [] +For parameter select_excluded_vargroups, found value [] +For parameter select_excluded_vars, found value [] +For parameter select_grid_choice, found value LR +For parameter select_included_expgroups, found value [] +For parameter select_included_opportunities, found value [] +For parameter select_included_request_links, found value None +For parameter select_included_tables, found value [] +For parameter select_included_vargroups, found value [] +For parameter select_included_vars, found value [] +For parameter select_max_priority, found value 3 +For parameter select_mips, found value [] +For parameter select_tierMax, found value 3 +Could not find a proper value for simple_domain_grid_regexp +For parameter tierMax, found value 3 +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for branch_year_in_child +Could not find a proper value for sectors +Could not find a proper value for simple_domain_grid_regexp +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for HDL +Could not find a proper value for activity_id +For parameter branch_method, found value standard +For parameter branch_month_in_parent, found value 1 +Could not find a proper value for branch_year_in_parent +For parameter comment_lset, found value '' +For parameter comment_sset, found value '' +For parameter compression_level, found value 0 +For parameter contact, found value None +For parameter convention_str, found value CF-1.7 CMIP-6.2 +Function 'get_transformed_content': Passing merged **kwargs (potential function call overrides applied to config defaults: {'version': 'test', 'force_retrieve': False, 'cache_dir': 'data_request_directory', 'check_api_version': False, 'consolidate': False, 'export': 'release', 'log_file': 'default', 'log_level': 'info', 'offline': True, 'variable_name': 'CMIP7 Compound Name'}). +For parameter data_request_version_string, found value Software current_cmip7_dr_software - Content test +For parameter data_specs_version, found value Software current_cmip7_dr_software - Content test +For parameter date_range, found value %start_date%-%end_date% +Could not find a proper value for description +For parameter dr2xml_version, found value 3.1 +Could not find a proper value for experiment +For parameter expid_in_filename, found value None +For parameter forcing_index, found value 1 +For parameter history, found value none +Could not find a proper value for info_url +For parameter initialization_index, found value 1 +Could not find a proper value for institution +For parameter list_perso_dev_file, found value dr2xml_list_perso_and_dev_file_names +Could not find a proper value for mip_era +For parameter mip_era_lset, found value None +For parameter mip_era_sset, found value None +For parameter output_level, found value 10 +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +For parameter parent_time_ref_year, found value 1850 +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +For parameter physics_index, found value 1 +For parameter prefix, found value '' +Could not find a proper value for references +Could not find a proper value for source +For parameter sub_experiment, found value none +For parameter sub_experiment_id, found value none +Could not find a proper value for variant_info +Could not find a proper value for HDL +Could not find a proper value for activity_id +Could not find a proper value for branch_year_in_parent +Could not find a proper value for description +Could not find a proper value for experiment +Could not find a proper value for info_url +Could not find a proper value for institution +Could not find a proper value for mip_era +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +Could not find a proper value for references +Could not find a proper value for source +Could not find a proper value for variant_info Could not find id longitude of type coordinates_and_dimensions in the vocabulary server. Could not find id latitude of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) Find elements list of kind priority_level from vocabulary server. -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Find elements list of kind time_subsets from vocabulary server. -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 Could not find id height2m of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 Could not find id height10m of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id plev19 of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id plev3 of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id plev6 of type coordinates_and_dimensions in the vocabulary server. -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id sdepth100cm of type coordinates_and_dimensions in the vocabulary server. -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 Could not find id sdepth10cm of type coordinates_and_dimensions in the vocabulary server. -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id sdepth of type coordinates_and_dimensions in the vocabulary server. -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id olevel of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id op20bar of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Could not find id deltasigt of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 Could not find id depth0m of type coordinates_and_dimensions in the vocabulary server. -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct CMOR variables (whatever the grid): 105 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct var labels is: 72 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of simplified vars is: 105 Issues with standard names are: [] @@ -1609,640 +1829,1482 @@ For table Omon: bigthetao mlotstmax mlotstmin mpw so sos swh swhmax thetao tos w For table Oyr: tnkebto For table SIday: sithick siconc sithick siu siv For table SImon: sithick siconc simass sithick siu siv +For parameter id, found value nemo +For parameter DR_version, found value CMIP7 Data Request version Software 1.5.dev0+g5a2ea3fbb.d20260206 - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'IPSL', +'laboratory_used' = 'ipsl', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = 'None', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'LMDZ' = ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'], 'nemo' = ['seaIce', 'ocean', 'ocnBgchem'], 'orchidee' = ['land', 'landIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label siconc: + Priority 1, Frequency day, Description Areal fraction of a given grid cell that is covered by sea ice on the ocean grid, independent of the thickness of that ice. + Priority 1, Frequency mon, Description Areal fraction of a given grid cell that is covered by sea ice on the ocean grid, independent of the thickness of that ice. +For parameter id, found value CMIP7_siconc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label simass: + Priority 1, Frequency mon, Description Total mass of sea ice divided by grid-cell area. +For parameter id, found value CMIP7_simass +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sithick: + Priority 1, Frequency mon, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 1, Frequency mon, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 2, Frequency day, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 2, Frequency day, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. +For parameter id, found value CMIP7_sithick +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label siu: + Priority 1, Frequency mon, Description X-component of sea-ice velocity on native model grid. + Priority 2, Frequency day, Description X-component of sea-ice velocity on native model grid. +For parameter id, found value CMIP7_siu +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label siv: + Priority 1, Frequency mon, Description Y-component of sea-ice velocity on native model grid. + Priority 2, Frequency day, Description Y-component of sea-ice velocity on native model grid. +For parameter id, found value CMIP7_siv +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 5 variables written for current_directory/test_pingfiles_CMIP7_IPSL_realm/test_outputs//ping_nemo_seaIce.xml +For parameter id, found value nemo +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'IPSL', +'laboratory_used' = 'ipsl', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = 'None', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'LMDZ' = ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'], 'nemo' = ['seaIce', 'ocean', 'ocnBgchem'], 'orchidee' = ['land', 'landIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label areacello: + Priority 1, Frequency fx, Description Cell areas for any grid used to report ocean variables and variables which are requested as used on the model ocean grid (e.g. hfsso, which is a downward heat flux from the atmosphere interpolated onto the ocean grid). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). +For parameter id, found value CMIP7_areacello +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label bigthetao: + Priority 1, Frequency mon, Description Diagnostic should be contributed only for models using conservative temperature as prognostic field. + Priority 2, Frequency day, Description Diagnostic should be contributed even for models using conservative temperature as prognostic field. +For parameter id, found value CMIP7_bigthetao +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label deptho: + Priority 1, Frequency fx, Description Ocean bathymetry. Reported here is the sea floor depth for present day relative to z=0 geoid. Reported as missing for land grid cells. +For parameter id, found value CMIP7_deptho +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label masscello: + Priority 1, Frequency fx, Description Tracer grid-cell mass per unit area used for computing tracer budgets. For Boussinesq models with static ocean grid cell thickness, masscello = rhozero\*thickcello, where thickcello is static cell thickness and rhozero is constant Boussinesq reference density. More generally, masscello is time dependent and reported as part of Omon. +For parameter id, found value CMIP7_masscello +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mlotst: + Priority 2, Frequency day, Description Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. +For parameter id, found value CMIP7_mlotst +For parameter field_ref, found value ?dummy_XY_deltasigt +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mlotstmax: + Priority 2, Frequency mon, Description Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. +For parameter id, found value CMIP7_mlotstmax +For parameter field_ref, found value ?dummy_XY_deltasigt +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mlotstmin: + Priority 2, Frequency mon, Description Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth. +For parameter id, found value CMIP7_mlotstmin +For parameter field_ref, found value ?dummy_XY_deltasigt +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mpw: + Priority 2, Frequency mon, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency 3hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency 6hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. +For parameter id, found value CMIP7_mpw +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sithick: + Priority 1, Frequency mon, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 1, Frequency mon, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 2, Frequency day, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. + Priority 2, Frequency day, Description Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area. +For parameter id, found value CMIP7_sithick +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label so: + Priority 1, Frequency mon, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. + Priority 3, Frequency day, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. +For parameter id, found value CMIP7_so +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sos: + Priority 1, Frequency mon, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. + Priority 1, Frequency day, Description Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. +For parameter id, found value CMIP7_sos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swh: + Priority 2, Frequency mon, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 3hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 6hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swh +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swhmax: + Priority 2, Frequency mon, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 6hr, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swhmax +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label thetao: + Priority 1, Frequency mon, Description Diagnostic should be contributed even for models using conservative temperature as prognostic field. + Priority 2, Frequency day, Description Diagnostic should be contributed even for models using conservative temperature as prognostic field. +For parameter id, found value CMIP7_thetao +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tnkebto: + Priority 3, Frequency yr, Description Depth integrated impacts on kinetic energy arising from parameterized eddy-induced advection. For CMIP5, this diagnostic was 3d, whereas the CMIP6 depth integrated diagnostic is sufficient for many purposes and reduces archive requirements. +For parameter id, found value CMIP7_tnkebto +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tos: + Priority 1, Frequency mon, Description This may differ from "surface temperature" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature. + Priority 1, Frequency day, Description This may differ from "surface temperature" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature. + Priority 2, Frequency 3hr, Description temperature of surface of open ocean, sampled synoptically. +For parameter id, found value CMIP7_tos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tossq: + Priority 2, Frequency day, Description Square of temperature of liquid ocean, averaged over the day. +For parameter id, found value CMIP7_tossq +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label uos: + Priority 3, Frequency day, Description Daily surface prognostic x-ward velocity component resolved by the model. +For parameter id, found value CMIP7_uos +For parameter field_ref, found value ?dummy_XY_depth0m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label vos: + Priority 3, Frequency day, Description Daily surface prognostic y-ward velocity component resolved by the model. +For parameter id, found value CMIP7_vos +For parameter field_ref, found value ?dummy_XY_depth0m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label wo: + Priority 1, Frequency mon, Description Prognostic z-ward velocity component resolved by the model. +For parameter id, found value CMIP7_wo +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label wpp: + Priority 2, Frequency mon, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency 3hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency 6hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. +For parameter id, found value CMIP7_wpp +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zos: + Priority 1, Frequency mon, Description This is the dynamic sea level, so should have zero global area mean. It should not include inverse barometer depressions from sea ice. + Priority 1, Frequency day, Description This is the dynamic sea level, so should have zero global area mean. zos is the effective sea level as if sea ice (and snow) at a grid cell were converted to liquid seawater (Campin et al., 2008). For OMIP, do _not _record inverse barometer responses from sea-ice (and snow) loading in zos. See (Griffies et al, 2016, https://doi.org/10.5194/gmd-9-3231-2016). +For parameter id, found value CMIP7_zos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zossq: + Priority 2, Frequency mon, Description Surface ocean geoid defines z=0. +For parameter id, found value CMIP7_zossq +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zostoga: + Priority 1, Frequency mon, Description There is no CMIP6 request for zosga nor zossga. + Priority 2, Frequency day, Description Global Average Thermosteric Sea Level Change +For parameter id, found value CMIP7_zostoga +For parameter field_ref, found value ?dummy_0d +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 24 variables written for current_directory/test_pingfiles_CMIP7_IPSL_realm/test_outputs//ping_nemo_ocean.xml +For parameter id, found value nemo +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'IPSL', +'laboratory_used' = 'ipsl', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = 'None', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'LMDZ' = ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'], 'nemo' = ['seaIce', 'ocean', 'ocnBgchem'], 'orchidee' = ['land', 'landIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label arag: + Priority 3, Frequency mon, Description sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_arag +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label aragos: + Priority 3, Frequency mon, Description sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_aragos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label calc: + Priority 3, Frequency mon, Description sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_calc +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label calcos: + Priority 3, Frequency mon, Description sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.) +For parameter id, found value CMIP7_calcos +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label chl: + Priority 3, Frequency day, Description Sum of chlorophyll from all phytoplankton group concentrations. In most models this is equal to chldiat+chlmisc, that is the sum of Diatom Chlorophyll Mass Concentration and Other Phytoplankton Chlorophyll Mass Concentration +For parameter id, found value CMIP7_chl +For parameter field_ref, found value ?dummy_XY_op20bar +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label dissic: + Priority 3, Frequency mon, Description Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration +For parameter id, found value CMIP7_dissic +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label o2: + Priority 3, Frequency day, Description 'Mole concentration' means number of moles per unit volume, also called "molarity", and is used in the construction mole\_concentration\_of\_X\_in\_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox\_expressed\_as\_nitrogen'. +For parameter id, found value CMIP7_o2 +For parameter field_ref, found value ?dummy_XY_op20bar +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ph: + Priority 3, Frequency day, Description negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1. +For parameter id, found value CMIP7_ph +For parameter field_ref, found value ?dummy_XY_op20bar +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label talk: + Priority 3, Frequency mon, Description total alkalinity equivalent concentration (including carbonate, borate, phosphorus, silicon, and nitrogen components) +For parameter id, found value CMIP7_talk +For parameter field_ref, found value ?dummy_XYO +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 9 variables written for current_directory/test_pingfiles_CMIP7_IPSL_realm/test_outputs//ping_nemo_ocnBgchem.xml +For parameter data_request_config, found value __package-root__/dr_interface/CMIP7_config +For parameter data_request_content_version, found value test +For parameter data_request_path, found value None +For parameter data_request_used, found value CMIP7 +For parameter institution_id, found value IPSL +For parameter laboratory_used, found value ipsl +For parameter project, found value ping +For parameter project_settings, found value ping +For parameter save_project_settings, found value None +For parameter vocabulary_config, found value __package-root__/vocabulary/vocabulary.json +For parameter vocabulary_project, found value ping +For parameter vocabulary_used, found value None +No vocabulary configured. +For parameter CFsubhr_frequency, found value 1ts +For parameter add_Gibraltar, found value False +For parameter additional_allowed_model_components, found value [] +For parameter adhoc_policy_do_add_1deg_grid_for_tos, found value False +For parameter allow_duplicates, found value True +For parameter allow_duplicates_in_same_table, found value False +For parameter allow_pseudo_standard_names, found value False +For parameter allow_tos_3hr_1deg, found value True +Could not find a proper value for branch_year_in_child +For parameter branching, found value {} +For parameter bypass_CV_components, found value False +For parameter bytes_per_float, found value 2 +For parameter configuration, found value None +For parameter context, found value orchidee +For parameter debug_parsing, found value False +For parameter dr2xml_manages_enddate, found value True +For parameter end_year, found value False +For parameter excluded_expgroups_lset, found value [] +For parameter excluded_expgroups_sset, found value [] +For parameter excluded_opportunities_lset, found value [] +For parameter excluded_opportunities_sset, found value [] +For parameter excluded_pairs_lset, found value [] +For parameter excluded_pairs_sset, found value [] +For parameter excluded_request_links, found value [] +For parameter excluded_spshapes_lset, found value [] +For parameter excluded_tables_lset, found value [] +For parameter excluded_tables_sset, found value [] +For parameter excluded_vargroups_lset, found value [] +For parameter excluded_vargroups_sset, found value [] +For parameter excluded_vars_lset, found value [] +For parameter excluded_vars_per_config, found value [] +For parameter excluded_vars_sset, found value [] +For parameter experiment_for_requests, found value None +For parameter experiment_id, found value None +For parameter filter_on_realization, found value True +For parameter fx_from_file, found value [] +For parameter grid_choice, found value None +For parameter grid_policy, found value None +Could not find a proper value for grid_prefix +For parameter grids, found value None +For parameter grids_dev, found value {} +For parameter grouped_vars_per_file, found value [] +Could not find a proper value for included_expgroups +For parameter included_expgroups_lset, found value [] +Could not find a proper value for included_opportunities +For parameter included_opportunities_lset, found value [] +For parameter included_request_links, found value [] +Could not find a proper value for included_tables +For parameter included_tables_lset, found value [] +Could not find a proper value for included_vargroups +For parameter included_vargroups_lset, found value [] +Could not find a proper value for included_vars +For parameter included_vars_lset, found value [] +For parameter listof_home_vars, found value None +For parameter max_file_size_in_floats, found value 500000000.0 +Could not find a proper value for max_priority +For parameter max_priority_lset, found value 3 +For parameter max_split_freq, found value None +For parameter mips, found value OrderedDict() +For parameter nemo_sources_management_policy_master_of_the_world, found value False +For parameter non_standard_attributes, found value {} +For parameter non_standard_axes, found value {} +For parameter orography_field_name, found value orog +For parameter orphan_variables, found value [] +For parameter path_extra_tables, found value None +For parameter path_special_defs, found value None +For parameter path_to_parse, found value ./ +For parameter perso_sdims_description, found value {} +For parameter ping_variables_prefix, found value CMIP7_ +For parameter prefixed_orography_field_name, found value CMIP7_orog +For parameter print_stats_per_var_label, found value False +For parameter print_variables, found value True +For parameter realization_index, found value 1 +For parameter realms_per_context, found value ['land', 'landIce'] +For parameter required_model_components, found value [] +For parameter sampling_timestep, found value None +Could not find a proper value for sectors +For parameter select, found value no +Could not find a proper value for select_excluded_expgroups +Could not find a proper value for select_excluded_opportunities +Could not find a proper value for select_excluded_pairs +Could not find a proper value for select_excluded_request_links +Could not find a proper value for select_excluded_tables +Could not find a proper value for select_excluded_vargroups +Could not find a proper value for select_excluded_vars +Could not find a proper value for select_grid_choice +Could not find a proper value for select_included_expgroups +Could not find a proper value for select_included_opportunities +Could not find a proper value for select_included_request_links +Could not find a proper value for select_included_tables +Could not find a proper value for select_included_vargroups +Could not find a proper value for select_included_vars +Could not find a proper value for select_max_priority +Could not find a proper value for select_mips +For parameter select_on_expt, found value False +For parameter select_on_year, found value False +For parameter select_sizes, found value None +Could not find a proper value for select_tierMax +Could not find a proper value for simple_domain_grid_regexp +For parameter sizes, found value None +For parameter source_id, found value None +For parameter source_type, found value None +For parameter special_timestep_vars, found value [] +For parameter split_frequencies, found value splitfreqs.dat +For parameter synchronisation_frequency, found value None +Could not find a proper value for tierMax +For parameter tierMax_lset, found value 3 +For parameter too_long_periods, found value [] +For parameter useAtForInstant, found value False +For parameter use_cmorvar_label_in_filename, found value False +For parameter use_union_zoom, found value False +For parameter vertical_interpolation_operation, found value instant +Could not find a proper value for vertical_interpolation_sample_freq +For parameter xios_version, found value 2 +For parameter year, found value None +For parameter zg_field_name, found value zg +Could not find a proper value for branch_year_in_child +For parameter grid_prefix, found value CMIP7_ +For parameter included_expgroups, found value [] +For parameter included_opportunities, found value [] +For parameter included_tables, found value [] +For parameter included_vargroups, found value [] +For parameter included_vars, found value [] +For parameter max_priority, found value 3 +Could not find a proper value for sectors +For parameter select_excluded_expgroups, found value [] +For parameter select_excluded_opportunities, found value [] +For parameter select_excluded_pairs, found value [] +For parameter select_excluded_request_links, found value None +For parameter select_excluded_tables, found value [] +For parameter select_excluded_vargroups, found value [] +For parameter select_excluded_vars, found value [] +For parameter select_grid_choice, found value LR +For parameter select_included_expgroups, found value [] +For parameter select_included_opportunities, found value [] +For parameter select_included_request_links, found value None +For parameter select_included_tables, found value [] +For parameter select_included_vargroups, found value [] +For parameter select_included_vars, found value [] +For parameter select_max_priority, found value 3 +For parameter select_mips, found value [] +For parameter select_tierMax, found value 3 +Could not find a proper value for simple_domain_grid_regexp +For parameter tierMax, found value 3 +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for branch_year_in_child +Could not find a proper value for sectors +Could not find a proper value for simple_domain_grid_regexp +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for HDL +Could not find a proper value for activity_id +For parameter branch_method, found value standard +For parameter branch_month_in_parent, found value 1 +Could not find a proper value for branch_year_in_parent +For parameter comment_lset, found value '' +For parameter comment_sset, found value '' +For parameter compression_level, found value 0 +For parameter contact, found value None +For parameter convention_str, found value CF-1.7 CMIP-6.2 +For parameter data_request_version_string, found value Software current_cmip7_dr_software - Content test +For parameter data_specs_version, found value Software current_cmip7_dr_software - Content test +For parameter date_range, found value %start_date%-%end_date% +Could not find a proper value for description +For parameter dr2xml_version, found value 3.1 +Could not find a proper value for experiment +For parameter expid_in_filename, found value None +For parameter forcing_index, found value 1 +For parameter history, found value none +Could not find a proper value for info_url +For parameter initialization_index, found value 1 +Could not find a proper value for institution +For parameter list_perso_dev_file, found value dr2xml_list_perso_and_dev_file_names +Could not find a proper value for mip_era +For parameter mip_era_lset, found value None +For parameter mip_era_sset, found value None +For parameter output_level, found value 10 +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +For parameter parent_time_ref_year, found value 1850 +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +For parameter physics_index, found value 1 +For parameter prefix, found value '' +Could not find a proper value for references +Could not find a proper value for source +For parameter sub_experiment, found value none +For parameter sub_experiment_id, found value none +Could not find a proper value for variant_info +Could not find a proper value for HDL +Could not find a proper value for activity_id +Could not find a proper value for branch_year_in_parent +Could not find a proper value for description +Could not find a proper value for experiment +Could not find a proper value for info_url +Could not find a proper value for institution +Could not find a proper value for mip_era +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +Could not find a proper value for references +Could not find a proper value for source +Could not find a proper value for variant_info Number of distinct CMOR variables (whatever the grid): 105 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct var labels is: 72 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of simplified vars is: 105 Issues with standard names are: [] @@ -2257,639 +3319,1116 @@ For table Efx: slthick For table LImon: snc snc For table Lmon: lai mrso mrsos For table fx: areacella orog rootd +For parameter id, found value orchidee +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'IPSL', +'laboratory_used' = 'ipsl', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = 'None', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'LMDZ' = ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'], 'nemo' = ['seaIce', 'ocean', 'ocnBgchem'], 'orchidee' = ['land', 'landIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label areacella: + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). +For parameter id, found value CMIP7_areacella +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label bldep: + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours +For parameter id, found value CMIP7_bldep +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfdsl: + Priority 3, Frequency 3hr, Description Ground heat flux at 3hr +For parameter id, found value CMIP7_hfdsl +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label lai: + Priority 1, Frequency mon, Description A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows. +For parameter id, found value CMIP7_lai +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrso: + Priority 1, Frequency mon, Description the mass per unit area (summed over all soil layers) of water in all phases. +For parameter id, found value CMIP7_mrso +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrso100: + Priority 3, Frequency 3hr, Description Soil moisture at 3hr but for 0-1m +For parameter id, found value CMIP7_mrso100 +For parameter field_ref, found value ?dummy_XY_sdepth100cm +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrsos: + Priority 1, Frequency mon, Description the mass of water in all phases in a thin surface soil layer. + Priority 2, Frequency 3hr, Description the mass of water in all phases in a thin surface soil layer. +For parameter id, found value CMIP7_mrsos +For parameter field_ref, found value ?dummy_XY_sdepth10cm +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label orog: + Priority 1, Frequency fx, Description height above the geoid; as defined here, "the geoid" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Reported here is the height above the present-day geoid (0.0 over ocean). +For parameter id, found value CMIP7_orog +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rootd: + Priority 1, Frequency fx, Description report the maximum soil depth reachable by plant roots (if defined in model), i.e., the maximum soil depth from which they can extract moisture; report as "missing" where the land fraction is 0. +For parameter id, found value CMIP7_rootd +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label slthick: + Priority 1, Frequency fx, Description Thickness of Soil Layers +For parameter id, found value CMIP7_slthick +For parameter field_ref, found value ?dummy_XYSo_sdepth +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label snc: + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. +For parameter id, found value CMIP7_snc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label srfrad: + Priority 2, Frequency 3hr, Description Net radiative flux at surface +For parameter id, found value CMIP7_srfrad +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tran: + Priority 3, Frequency 3hr, Description Transpiration +For parameter id, found value CMIP7_tran +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tslsi: + Priority 2, Frequency 3hr, Description Surface temperature of all surfaces except open ocean, sampled synoptically. +For parameter id, found value CMIP7_tslsi +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 14 variables written for current_directory/test_pingfiles_CMIP7_IPSL_realm/test_outputs//ping_orchidee_land.xml +For parameter id, found value orchidee +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'IPSL', +'laboratory_used' = 'ipsl', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = 'None', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'LMDZ' = ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'], 'nemo' = ['seaIce', 'ocean', 'ocnBgchem'], 'orchidee' = ['land', 'landIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label snc: + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. +For parameter id, found value CMIP7_snc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 1 variables written for current_directory/test_pingfiles_CMIP7_IPSL_realm/test_outputs//ping_orchidee_landIce.xml +For parameter data_request_config, found value __package-root__/dr_interface/CMIP7_config +For parameter data_request_content_version, found value test +For parameter data_request_path, found value None +For parameter data_request_used, found value CMIP7 +For parameter institution_id, found value IPSL +For parameter laboratory_used, found value ipsl +For parameter project, found value ping +For parameter project_settings, found value ping +For parameter save_project_settings, found value None +For parameter vocabulary_config, found value __package-root__/vocabulary/vocabulary.json +For parameter vocabulary_project, found value ping +For parameter vocabulary_used, found value None +No vocabulary configured. +For parameter CFsubhr_frequency, found value 1ts +For parameter add_Gibraltar, found value False +For parameter additional_allowed_model_components, found value [] +For parameter adhoc_policy_do_add_1deg_grid_for_tos, found value False +For parameter allow_duplicates, found value True +For parameter allow_duplicates_in_same_table, found value False +For parameter allow_pseudo_standard_names, found value False +For parameter allow_tos_3hr_1deg, found value True +Could not find a proper value for branch_year_in_child +For parameter branching, found value {} +For parameter bypass_CV_components, found value False +For parameter bytes_per_float, found value 2 +For parameter configuration, found value None +For parameter context, found value LMDZ +For parameter debug_parsing, found value False +For parameter dr2xml_manages_enddate, found value True +For parameter end_year, found value False +For parameter excluded_expgroups_lset, found value [] +For parameter excluded_expgroups_sset, found value [] +For parameter excluded_opportunities_lset, found value [] +For parameter excluded_opportunities_sset, found value [] +For parameter excluded_pairs_lset, found value [] +For parameter excluded_pairs_sset, found value [] +For parameter excluded_request_links, found value [] +For parameter excluded_spshapes_lset, found value [] +For parameter excluded_tables_lset, found value [] +For parameter excluded_tables_sset, found value [] +For parameter excluded_vargroups_lset, found value [] +For parameter excluded_vargroups_sset, found value [] +For parameter excluded_vars_lset, found value [] +For parameter excluded_vars_per_config, found value [] +For parameter excluded_vars_sset, found value [] +For parameter experiment_for_requests, found value None +For parameter experiment_id, found value None +For parameter filter_on_realization, found value True +For parameter fx_from_file, found value [] +For parameter grid_choice, found value None +For parameter grid_policy, found value None +Could not find a proper value for grid_prefix +For parameter grids, found value None +For parameter grids_dev, found value {} +For parameter grouped_vars_per_file, found value [] +Could not find a proper value for included_expgroups +For parameter included_expgroups_lset, found value [] +Could not find a proper value for included_opportunities +For parameter included_opportunities_lset, found value [] +For parameter included_request_links, found value [] +Could not find a proper value for included_tables +For parameter included_tables_lset, found value [] +Could not find a proper value for included_vargroups +For parameter included_vargroups_lset, found value [] +Could not find a proper value for included_vars +For parameter included_vars_lset, found value [] +For parameter listof_home_vars, found value None +For parameter max_file_size_in_floats, found value 500000000.0 +Could not find a proper value for max_priority +For parameter max_priority_lset, found value 3 +For parameter max_split_freq, found value None +For parameter mips, found value OrderedDict() +For parameter nemo_sources_management_policy_master_of_the_world, found value False +For parameter non_standard_attributes, found value {} +For parameter non_standard_axes, found value {} +For parameter orography_field_name, found value orog +For parameter orphan_variables, found value [] +For parameter path_extra_tables, found value None +For parameter path_special_defs, found value None +For parameter path_to_parse, found value ./ +For parameter perso_sdims_description, found value {} +For parameter ping_variables_prefix, found value CMIP7_ +For parameter prefixed_orography_field_name, found value CMIP7_orog +For parameter print_stats_per_var_label, found value False +For parameter print_variables, found value True +For parameter realization_index, found value 1 +For parameter realms_per_context, found value ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'] +For parameter required_model_components, found value [] +For parameter sampling_timestep, found value None +Could not find a proper value for sectors +For parameter select, found value no +Could not find a proper value for select_excluded_expgroups +Could not find a proper value for select_excluded_opportunities +Could not find a proper value for select_excluded_pairs +Could not find a proper value for select_excluded_request_links +Could not find a proper value for select_excluded_tables +Could not find a proper value for select_excluded_vargroups +Could not find a proper value for select_excluded_vars +Could not find a proper value for select_grid_choice +Could not find a proper value for select_included_expgroups +Could not find a proper value for select_included_opportunities +Could not find a proper value for select_included_request_links +Could not find a proper value for select_included_tables +Could not find a proper value for select_included_vargroups +Could not find a proper value for select_included_vars +Could not find a proper value for select_max_priority +Could not find a proper value for select_mips +For parameter select_on_expt, found value False +For parameter select_on_year, found value False +For parameter select_sizes, found value None +Could not find a proper value for select_tierMax +Could not find a proper value for simple_domain_grid_regexp +For parameter sizes, found value None +For parameter source_id, found value None +For parameter source_type, found value None +For parameter special_timestep_vars, found value [] +For parameter split_frequencies, found value splitfreqs.dat +For parameter synchronisation_frequency, found value None +Could not find a proper value for tierMax +For parameter tierMax_lset, found value 3 +For parameter too_long_periods, found value [] +For parameter useAtForInstant, found value False +For parameter use_cmorvar_label_in_filename, found value False +For parameter use_union_zoom, found value False +For parameter vertical_interpolation_operation, found value instant +Could not find a proper value for vertical_interpolation_sample_freq +For parameter xios_version, found value 2 +For parameter year, found value None +For parameter zg_field_name, found value zg +Could not find a proper value for branch_year_in_child +For parameter grid_prefix, found value CMIP7_ +For parameter included_expgroups, found value [] +For parameter included_opportunities, found value [] +For parameter included_tables, found value [] +For parameter included_vargroups, found value [] +For parameter included_vars, found value [] +For parameter max_priority, found value 3 +Could not find a proper value for sectors +For parameter select_excluded_expgroups, found value [] +For parameter select_excluded_opportunities, found value [] +For parameter select_excluded_pairs, found value [] +For parameter select_excluded_request_links, found value None +For parameter select_excluded_tables, found value [] +For parameter select_excluded_vargroups, found value [] +For parameter select_excluded_vars, found value [] +For parameter select_grid_choice, found value LR +For parameter select_included_expgroups, found value [] +For parameter select_included_opportunities, found value [] +For parameter select_included_request_links, found value None +For parameter select_included_tables, found value [] +For parameter select_included_vargroups, found value [] +For parameter select_included_vars, found value [] +For parameter select_max_priority, found value 3 +For parameter select_mips, found value [] +For parameter select_tierMax, found value 3 +Could not find a proper value for simple_domain_grid_regexp +For parameter tierMax, found value 3 +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for branch_year_in_child +Could not find a proper value for sectors +Could not find a proper value for simple_domain_grid_regexp +Could not find a proper value for vertical_interpolation_sample_freq +Could not find a proper value for HDL +Could not find a proper value for activity_id +For parameter branch_method, found value standard +For parameter branch_month_in_parent, found value 1 +Could not find a proper value for branch_year_in_parent +For parameter comment_lset, found value '' +For parameter comment_sset, found value '' +For parameter compression_level, found value 0 +For parameter contact, found value None +For parameter convention_str, found value CF-1.7 CMIP-6.2 +For parameter data_request_version_string, found value Software current_cmip7_dr_software - Content test +For parameter data_specs_version, found value Software current_cmip7_dr_software - Content test +For parameter date_range, found value %start_date%-%end_date% +Could not find a proper value for description +For parameter dr2xml_version, found value 3.1 +Could not find a proper value for experiment +For parameter expid_in_filename, found value None +For parameter forcing_index, found value 1 +For parameter history, found value none +Could not find a proper value for info_url +For parameter initialization_index, found value 1 +Could not find a proper value for institution +For parameter list_perso_dev_file, found value dr2xml_list_perso_and_dev_file_names +Could not find a proper value for mip_era +For parameter mip_era_lset, found value None +For parameter mip_era_sset, found value None +For parameter output_level, found value 10 +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +For parameter parent_time_ref_year, found value 1850 +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +For parameter physics_index, found value 1 +For parameter prefix, found value '' +Could not find a proper value for references +Could not find a proper value for source +For parameter sub_experiment, found value none +For parameter sub_experiment_id, found value none +Could not find a proper value for variant_info +Could not find a proper value for HDL +Could not find a proper value for activity_id +Could not find a proper value for branch_year_in_parent +Could not find a proper value for description +Could not find a proper value for experiment +Could not find a proper value for info_url +Could not find a proper value for institution +Could not find a proper value for mip_era +Could not find a proper value for parent_activity_id +Could not find a proper value for parent_experiment_id +Could not find a proper value for parent_mip_era +Could not find a proper value for parent_source_id +Could not find a proper value for parent_time_units +Could not find a proper value for parent_variant_label +Could not find a proper value for references +Could not find a proper value for source +Could not find a proper value for variant_info Number of distinct CMOR variables (whatever the grid): 105 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of distinct var labels is: 72 -Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.bldep.tpt-u-hxy-u.3hr.GLB (branded name bldep_tpt-u-hxy-u, official label bldep_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfls.tavg-u-hxy-u.3hr.GLB (branded name hfls_tavg-u-hxy-u, official label hfls_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.hfss.tavg-u-hxy-u.3hr.GLB (branded name hfss_tavg-u-hxy-u, official label hfss_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.hurs.tavg-h2m-hxy-u.6hr.GLB (branded name hurs_tavg-h2m-hxy-u, official label hurs_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.huss.tpt-h2m-hxy-u.3hr.GLB (branded name huss_tpt-h2m-hxy-u, official label huss_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.1hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.pr.tavg-u-hxy-u.3hr.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.day.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.pr.tavg-u-hxy-u.mon.GLB (branded name pr_tavg-u-hxy-u, official label pr_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.prc.tavg-u-hxy-u.mon.GLB (branded name prc_tavg-u-hxy-u, official label prc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ps.tavg-u-hxy-u.day.GLB (branded name ps_tavg-u-hxy-u, official label ps_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.ps.tpt-u-hxy-u.3hr.GLB (branded name ps_tpt-u-hxy-u, official label ps_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.psl.tavg-u-hxy-u.day.GLB (branded name psl_tavg-u-hxy-u, official label psl_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.psl.tpt-u-hxy-u.1hr.GLB (branded name psl_tpt-u-hxy-u, official label psl_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlds.tavg-u-hxy-u.3hr.GLB (branded name rlds_tavg-u-hxy-u, official label rlds_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.rlus.tavg-u-hxy-u.3hr.GLB (branded name rlus_tavg-u-hxy-u, official label rlus_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.day.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB (branded name sfcWind_tavg-h10m-hxy-u, official label sfcWind_tavg-h10m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.sftlf.ti-u-hxy-u.fx.GLB (branded name sftlf_ti-u-hxy-u, official label sftlf_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.day.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tavg-p19-hxy-air.mon.GLB (branded name ta_tavg-p19-hxy-air, official label ta_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ta.tpt-p3-hxy-air.6hr.GLB (branded name ta_tpt-p3-hxy-air, official label ta_tpt-p3-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: atmos.ta.tpt-p6-hxy-air.3hr.GLB (branded name ta_tpt-p6-hxy-air, official label ta_tpt-p6-hxy-air) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.day.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tavg-h2m-hxy-u.mon.GLB (branded name tas_tavg-h2m-hxy-u, official label tas_tavg-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.day.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmax-h2m-hxy-u.mon.GLB (branded name tas_tmax-h2m-hxy-u, official label tas_tmax-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.day.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.tas.tmin-h2m-hxy-u.mon.GLB (branded name tas_tmin-h2m-hxy-u, official label tas_tmin-h2m-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: atmos.tas.tpt-h2m-hxy-u.3hr.GLB (branded name tas_tpt-h2m-hxy-u, official label tas_tpt-h2m-hxy-u) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.ts.tavg-u-hxy-u.mon.GLB (branded name ts_tavg-u-hxy-u, official label ts_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.uas.tpt-h10m-hxy-u.1hr.GLB (branded name uas_tpt-h10m-hxy-u, official label uas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: atmos.vas.tpt-h10m-hxy-u.1hr.GLB (branded name vas_tpt-h10m-hxy-u, official label vas_tpt-h10m-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.day.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: atmos.zg.tavg-p19-hxy-air.mon.GLB (branded name zg_tavg-p19-hxy-air, official label zg_tavg-p19-hxy-air) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.hfdsl.tavg-u-hxy-lnd.3hr.GLB (branded name hfdsl_tavg-u-hxy-lnd, official label hfdsl_tavg-u-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.lai.tavg-u-hxy-lnd.mon.GLB (branded name lai_tavg-u-hxy-lnd, official label lai_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrso.tavg-u-hxy-lnd.mon.GLB (branded name mrso_tavg-u-hxy-lnd, official label mrso_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB (branded name mrsol_tavg-d100cm-hxy-lnd, official label mrsol_tavg-d100cm-hxy-lnd) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB (branded name mrsol_tavg-d10cm-hxy-lnd, official label mrsol_tavg-d10cm-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB (branded name mrsol_tpt-d10cm-hxy-lnd, official label mrsol_tpt-d10cm-hxy-lnd) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.orog.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.orog.ti-u-hxy-u.fx.GLB (branded name orog_ti-u-hxy-u, official label orog_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.rootd.ti-u-hxy-lnd.fx.GLB (branded name rootd_ti-u-hxy-lnd, official label rootd_ti-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: land.slthick.ti-sl-hxy-lnd.fx.GLB (branded name slthick_ti-sl-hxy-lnd, official label slthick_ti-sl-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.srfrad.tavg-u-hxy-u.3hr.GLB (branded name srfrad_tavg-u-hxy-u, official label srfrad_tavg-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: land.tran.tavg-u-hxy-u.3hr.GLB (branded name tran_tavg-u-hxy-u, official label tran_tavg-u-hxy-u) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: land.tslsi.tpt-u-hxy-u.3hr.GLB (branded name tslsi_tpt-u-hxy-u, official label tslsi_tpt-u-hxy-u) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: landIce.snc.tavg-u-hxy-lnd.mon.GLB (branded name snc_tavg-u-hxy-lnd, official label snc_tavg-u-hxy-lnd) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.areacell.ti-u-hxy-u.fx.GLB (branded name areacell_ti-u-hxy-u, official label areacell_ti-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB (branded name bigthetao_tavg-ol-hxy-sea, official label bigthetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB (branded name bigthetao_tavg-op20bar-hxy-sea, official label bigthetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.deptho.ti-u-hxy-sea.fx.GLB (branded name deptho_ti-u-hxy-sea, official label deptho_ti-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.masscello.ti-ol-hxy-sea.fx.GLB (branded name masscello_ti-ol-hxy-sea, official label masscello_ti-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotst.tavg-u-hxy-sea.day.GLB (branded name mlotst_tavg-u-hxy-sea, official label mlotst_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmax.tmax-u-hxy-sea.mon.GLB (branded name mlotstmax_tmax-u-hxy-sea, official label mlotstmax_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mlotstmin.tmin-u-hxy-sea.mon.GLB (branded name mlotstmin_tmin-u-hxy-sea, official label mlotstmin_tmin-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.3hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.6hr.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.mpw.tavg-u-hxy-sea.mon.GLB (branded name mpw_tavg-u-hxy-sea, official label mpw_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.so.tavg-ol-hxy-sea.day.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.so.tavg-ol-hxy-sea.mon.GLB (branded name so_tavg-ol-hxy-sea, official label so_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.day.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.sos.tavg-u-hxy-sea.mon.GLB (branded name sos_tavg-u-hxy-sea, official label sos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.3hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.6hr.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tavg-u-hxy-sea.mon.GLB (branded name swh_tavg-u-hxy-sea, official label swh_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.6hr.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.swh.tmax-u-hxy-sea.mon.GLB (branded name swh_tmax-u-hxy-sea, official label swh_tmax-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.thetao.tavg-ol-hxy-sea.mon.GLB (branded name thetao_tavg-ol-hxy-sea, official label thetao_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([2, 3]) +Variable considered: ocean.thetao.tavg-op20bar-hxy-sea.day.GLB (branded name thetao_tavg-op20bar-hxy-sea, official label thetao_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: High, priority_level: Medium] ([2, 3]) Priority_retain 2 -Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.tnkebto.tavg-u-hxy-sea.yr.GLB (branded name tnkebto_tavg-u-hxy-sea, official label tnkebto_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([3, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.day.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: Medium] ([1, 3]) Priority_retain 1 -Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.tos.tavg-u-hxy-sea.mon.GLB (branded name tos_tavg-u-hxy-sea, official label tos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tos.tpt-u-hxy-sea.3hr.GLB (branded name tos_tpt-u-hxy-sea, official label tos_tpt-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.tossq.tavg-u-hxy-sea.day.GLB (branded name tossq_tavg-u-hxy-sea, official label tossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.uos.tavg-u-hxy-sea.day.GLB (branded name uos_tavg-u-hxy-sea, official label uos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocean.vos.tavg-u-hxy-sea.day.GLB (branded name vos_tavg-u-hxy-sea, official label vos_tavg-u-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.wo.tavg-ol-hxy-sea.mon.GLB (branded name wo_tavg-ol-hxy-sea, official label wo_tavg-ol-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.3hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.6hr.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.wpp.tavg-u-hxy-sea.mon.GLB (branded name wpp_tavg-u-hxy-sea, official label wpp_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654), priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([2, 1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.day.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core, priority_level: High] ([1, 2]) Priority_retain 1 -Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zos.tavg-u-hxy-sea.mon.GLB (branded name zos_tavg-u-hxy-sea, official label zos_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zossq.tavg-u-hxy-sea.mon.GLB (branded name zossq_tavg-u-hxy-sea, official label zossq_tavg-u-hxy-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.day.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: ocean.zostoga.tavg-u-hm-sea.mon.GLB (branded name zostoga_tavg-u-hm-sea, official label zostoga_tavg-u-hm-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB (branded name arag_tavg-d0m-hxy-sea, official label arag_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB (branded name arag_tavg-ol-hxy-sea, official label arag_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB (branded name calc_tavg-d0m-hxy-sea, official label calc_tavg-d0m-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB (branded name calc_tavg-ol-hxy-sea, official label calc_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB (branded name chl_tavg-op20bar-hxy-sea, official label chl_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB (branded name dissic_tavg-ol-hxy-sea, official label dissic_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB (branded name o2_tavg-op20bar-hxy-sea, official label o2_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB (branded name ph_tavg-op20bar-hxy-sea, official label ph_tavg-op20bar-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB -Priorities found: [priority_level: Medium (id: 527f5c95-8c97-11ef-944e-41a8eb05f654)] ([3]) +Variable considered: ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB (branded name talk_tavg-ol-hxy-sea, official label talk_tavg-ol-hxy-sea) +Priorities found: [priority_level: Medium] ([3]) Priority_retain 3 -Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.day.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siconc.tavg-u-hxy-u.mon.GLB (branded name siconc_tavg-u-hxy-u, official label siconc_tavg-u-hxy-u) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.simass.tavg-u-hxy-sea.mon.GLB (branded name simass_tavg-u-hxy-sea, official label simass_tavg-u-hxy-sea) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.day.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.sithick.tavg-u-hxy-si.mon.GLB (branded name sithick_tavg-u-hxy-si, official label sithick_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siu.tavg-u-hxy-si.day.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siu.tavg-u-hxy-si.mon.GLB (branded name siu_tavg-u-hxy-si, official label siu_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 -Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB -Priorities found: [priority_level: High (id: 527f5c94-8c97-11ef-944e-41a8eb05f654)] ([2]) +Variable considered: seaIce.siv.tavg-u-hxy-si.day.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: High] ([2]) Priority_retain 2 -Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB -Priorities found: [priority_level: Core (id: 527f5c97-8c97-11ef-944e-41a8eb05f654)] ([1]) +Variable considered: seaIce.siv.tavg-u-hxy-si.mon.GLB (branded name siv_tavg-u-hxy-si, official label siv_tavg-u-hxy-si) +Priorities found: [priority_level: Core] ([1]) Priority_retain 1 Number of simplified vars is: 105 Issues with standard names are: [] @@ -2916,8 +4455,895 @@ For table Lmon: lai mrso mrsos For table Omon: mpw swh swhmax wpp For table day: pr psl sfcWind ta tas tasmax tasmin zg For table fx: areacella sftlf areacella orog rootd +For parameter id, found value LMDZ +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'IPSL', +'laboratory_used' = 'ipsl', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = 'None', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'LMDZ' = ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'], 'nemo' = ['seaIce', 'ocean', 'ocnBgchem'], 'orchidee' = ['land', 'landIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label areacella: + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). +For parameter id, found value CMIP7_areacella +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label bldep: + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours +For parameter id, found value CMIP7_bldep +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfls: + Priority 2, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_hfls +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfss: + Priority 2, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_hfss +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hurs: + Priority 1, Frequency 6hr, Description The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. +For parameter id, found value CMIP7_hurs +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label huss: + Priority 1, Frequency 3hr, Description This is sampled synoptically. +For parameter id, found value CMIP7_huss +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mpw: + Priority 2, Frequency 3hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency 6hr, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. + Priority 2, Frequency mon, Description Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum. +For parameter id, found value CMIP7_mpw +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label pr: + Priority 1, Frequency 3hr, Description at surface; includes both liquid and solid phases. This is the 3-hour mean precipitation flux. + Priority 1, Frequency 1hr, Description Total precipitation flux + Priority 1, Frequency day, Description at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) + Priority 1, Frequency mon, Description at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) +For parameter id, found value CMIP7_pr +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label prc: + Priority 1, Frequency mon, Description at surface; includes both liquid and solid phases. +For parameter id, found value CMIP7_prc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ps: + Priority 1, Frequency day, Description surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates + Priority 2, Frequency 3hr, Description sampled synoptically to diagnose atmospheric tides, this is better than mean sea level pressure. +For parameter id, found value CMIP7_ps +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label psl: + Priority 1, Frequency day, Description Sea Level Pressure + Priority 2, Frequency 1hr, Description Sea level pressure +For parameter id, found value CMIP7_psl +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rlds: + Priority 3, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_rlds +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rlus: + Priority 3, Frequency 3hr, Description This is the 3-hour mean flux. +For parameter id, found value CMIP7_rlus +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sfcWind: + Priority 1, Frequency day, Description near-surface (usually, 10 meters) wind speed. + Priority 1, Frequency mon, Description This is the mean of the speed, not the speed computed from the mean u and v components of wind +For parameter id, found value CMIP7_sfcWind +For parameter field_ref, found value ?dummy_XY_height10m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label sftlf: + Priority 1, Frequency fx, Description Percentage of horizontal area occupied by land. +For parameter id, found value CMIP7_sftlf +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swh: + Priority 2, Frequency 3hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency 6hr, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency mon, Description Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swh +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label swhmax: + Priority 2, Frequency 6hr, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. + Priority 2, Frequency mon, Description Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum. +For parameter id, found value CMIP7_swhmax +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ta: + Priority 1, Frequency day, Description Air Temperature + Priority 1, Frequency mon, Description Air Temperature + Priority 1, Frequency 6hr, Description Air Temperature +For parameter id, found value CMIP7_ta +For parameter field_ref, found value ?dummy_XY_plev19 +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ta6: + Priority 3, Frequency 3hr, Description Air temperature on 6 pressure levels in the lower troposphere +For parameter id, found value CMIP7_ta6 +For parameter field_ref, found value ?dummy_XY_plev6 +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tas: + Priority 1, Frequency 3hr, Description This is sampled synoptically. + Priority 1, Frequency day, Description near-surface (usually, 2 meter) air temperature + Priority 1, Frequency mon, Description near-surface (usually, 2 meter) air temperature +For parameter id, found value CMIP7_tas +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tasmax: + Priority 1, Frequency day, Description maximum near-surface (usually, 2 meter) air temperature (add cell\_method attribute "time: max") + Priority 1, Frequency mon, Description monthly mean of the daily-maximum near-surface air temperature. +For parameter id, found value CMIP7_tasmax +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tasmin: + Priority 1, Frequency day, Description minimum near-surface (usually, 2 meter) air temperature (add cell\_method attribute "time: min") + Priority 1, Frequency mon, Description monthly mean of the daily-minimum near-surface air temperature. +For parameter id, found value CMIP7_tasmin +For parameter field_ref, found value ?dummy_XY_height2m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label ts: + Priority 1, Frequency mon, Description Surface temperature (skin for open ocean) +For parameter id, found value CMIP7_ts +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label uas: + Priority 2, Frequency 1hr, Description Zonal wind (positive in a eastward direction) at 10 meters above the surface. +For parameter id, found value CMIP7_uas +For parameter field_ref, found value ?dummy_XY_height10m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label vas: + Priority 2, Frequency 1hr, Description Meridional wind (positive in a northward direction) at 10 meters above the surface. +For parameter id, found value CMIP7_vas +For parameter field_ref, found value ?dummy_XY_height10m +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label wpp: + Priority 2, Frequency 3hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency 6hr, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. + Priority 2, Frequency mon, Description Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, this represents the spectral peak across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. +For parameter id, found value CMIP7_wpp +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label zg: + Priority 1, Frequency day, Description Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. + Priority 1, Frequency mon, Description Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface. +For parameter id, found value CMIP7_zg +For parameter field_ref, found value ?dummy_XY_plev19 +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 27 variables written for current_directory/test_pingfiles_CMIP7_IPSL_realm/test_outputs//ping_LMDZ_atmos.xml +For parameter id, found value LMDZ +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'IPSL', +'laboratory_used' = 'ipsl', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = 'None', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'LMDZ' = ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'], 'nemo' = ['seaIce', 'ocean', 'ocnBgchem'], 'orchidee' = ['land', 'landIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label areacella: + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). + Priority 1, Frequency fx, Description Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere). +For parameter id, found value CMIP7_areacella +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label bldep: + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours +For parameter id, found value CMIP7_bldep +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label hfdsl: + Priority 3, Frequency 3hr, Description Ground heat flux at 3hr +For parameter id, found value CMIP7_hfdsl +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label lai: + Priority 1, Frequency mon, Description A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows. +For parameter id, found value CMIP7_lai +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrso: + Priority 1, Frequency mon, Description the mass per unit area (summed over all soil layers) of water in all phases. +For parameter id, found value CMIP7_mrso +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrso100: + Priority 3, Frequency 3hr, Description Soil moisture at 3hr but for 0-1m +For parameter id, found value CMIP7_mrso100 +For parameter field_ref, found value ?dummy_XY_sdepth100cm +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label mrsos: + Priority 1, Frequency mon, Description the mass of water in all phases in a thin surface soil layer. + Priority 2, Frequency 3hr, Description the mass of water in all phases in a thin surface soil layer. +For parameter id, found value CMIP7_mrsos +For parameter field_ref, found value ?dummy_XY_sdepth10cm +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label orog: + Priority 1, Frequency fx, Description height above the geoid; as defined here, "the geoid" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Reported here is the height above the present-day geoid (0.0 over ocean). +For parameter id, found value CMIP7_orog +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label rootd: + Priority 1, Frequency fx, Description report the maximum soil depth reachable by plant roots (if defined in model), i.e., the maximum soil depth from which they can extract moisture; report as "missing" where the land fraction is 0. +For parameter id, found value CMIP7_rootd +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label slthick: + Priority 1, Frequency fx, Description Thickness of Soil Layers +For parameter id, found value CMIP7_slthick +For parameter field_ref, found value ?dummy_XYSo_sdepth +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label snc: + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. +For parameter id, found value CMIP7_snc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label srfrad: + Priority 2, Frequency 3hr, Description Net radiative flux at surface +For parameter id, found value CMIP7_srfrad +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tran: + Priority 3, Frequency 3hr, Description Transpiration +For parameter id, found value CMIP7_tran +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +Found the following descriptions for label tslsi: + Priority 2, Frequency 3hr, Description Surface temperature of all surfaces except open ocean, sampled synoptically. +For parameter id, found value CMIP7_tslsi +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 14 variables written for current_directory/test_pingfiles_CMIP7_IPSL_realm/test_outputs//ping_LMDZ_land.xml +For parameter id, found value LMDZ +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'IPSL', +'laboratory_used' = 'ipsl', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = 'None', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'LMDZ' = ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'], 'nemo' = ['seaIce', 'ocean', 'ocnBgchem'], 'orchidee' = ['land', 'landIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label snc: + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. + Priority 1, Frequency mon, Description Fraction of each grid cell that is occupied by snow that rests on land portion of cell. +For parameter id, found value CMIP7_snc +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 1 variables written for current_directory/test_pingfiles_CMIP7_IPSL_realm/test_outputs//ping_LMDZ_landIce.xml +For parameter id, found value LMDZ +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'IPSL', +'laboratory_used' = 'ipsl', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = 'None', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'LMDZ' = ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'], 'nemo' = ['seaIce', 'ocean', 'ocnBgchem'], 'orchidee' = ['land', 'landIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +For parameter id, found value CMIP7_ap +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 0 variables written for current_directory/test_pingfiles_CMIP7_IPSL_realm/test_outputs//ping_LMDZ_atmosChem.xml +For parameter id, found value LMDZ +For parameter DR_version, found value CMIP7 Data Request version Software current_cmip7_dr_software - Content test +For parameter dr2xml_version, found value dr2xml version 3.1 +For parameter lab_settings, found value Lab_and_model settings +{'data_request_content_version' = 'test', +'data_request_used' = 'CMIP7', +'excluded_vars' = [], +'excluded_vars_file' = [], +'institution_id' = 'IPSL', +'laboratory_used' = 'ipsl', +'listof_home_vars' = 'None', +'max_priority' = '3', +'mips' = {}, +'path_extra_tables' = 'None', +'path_special_defs' = 'None', +'ping_variables_prefix' = 'CMIP7_', +'project' = 'ping', +'realms_per_context' = {'LMDZ' = ['atmos', 'land', 'landIce', 'atmosChem', 'aerosol'], 'nemo' = ['seaIce', 'ocean', 'ocnBgchem'], 'orchidee' = ['land', 'landIce']}, +'tierMax' = '3'} +For parameter simulation_settings, found value Simulation settings +{} +For parameter year, found value Year processed None +Found the following descriptions for label bldep: + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours + Priority 2, Frequency 3hr, Description Boundary Layer Depth every 3 hours +For parameter id, found value CMIP7_bldep +For parameter field_ref, found value ?dummy_XY +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_ap_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec +For parameter id, found value CMIP7_b_bnds +For parameter field_ref, found value dummy_hyb +Could not find a proper value for name +Could not find a proper value for freq_op +Could not find a proper value for freq_offset +Could not find a proper value for grid_ref +Could not find a proper value for long_name +Could not find a proper value for standard_name +Could not find a proper value for unit +Could not find a proper value for operation +Could not find a proper value for detect_missing_value +Could not find a proper value for prec 1 variables written for current_directory/test_pingfiles_CMIP7_IPSL_realm/test_outputs//ping_LMDZ_aerosol.xml diff --git a/tests/test_project_settings.py b/tests/test_project_settings.py index c5908708..85c29697 100644 --- a/tests/test_project_settings.py +++ b/tests/test_project_settings.py @@ -60,6 +60,22 @@ def test_ping_settings(self): sset = dict() config = dict(context="arpsfx", dirname=None, prefix="CMIP6_", year=0, root="__init__.py") initialize_settings(lset=lset, sset=sset, select="no", **config) + init = get_settings_values("init") + ref_init = { + 'data_request_config': f'{project_dir}/dr2xml/dr_interface/CMIP7_config', + 'data_request_content_version': f"{project_dir}/tests/common/dr_cmip6_config/1_0_21post1", + 'data_request_path': None, + 'data_request_used': 'CMIP6', + 'institution_id': 'CNRM-CERFACS', + 'laboratory_used': None, + 'project': 'ping', + 'project_settings': 'ping', + 'save_project_settings': None, + 'vocabulary_config': f'{project_dir}/dr2xml/vocabulary/vocabulary.json', + 'vocabulary_project': "ping", + 'vocabulary_used': None + } + self.assertDictEqual(init, ref_init) internal = get_settings_values("internal") ref_internal = {'CFsubhr_frequency': '1ts', 'add_Gibraltar': False, @@ -74,13 +90,11 @@ def test_ping_settings(self): 'bytes_per_float': 2, 'configuration': None, 'context': 'arpsfx', - 'data_request_config': f'{project_dir}/dr2xml/dr_interface/CMIP7_config', - 'data_request_content_version': f"{project_dir}/tests/common/dr_cmip6_config/1_0_21post1", - 'data_request_path': None, - 'data_request_used': 'CMIP6', 'debug_parsing': False, 'dr2xml_manages_enddate': True, 'end_year': False, + 'excluded_expgroups_lset': [], + 'excluded_expgroups_sset': [], 'excluded_opportunities_lset': [], 'excluded_opportunities_sset': [], 'excluded_pairs_lset': [], @@ -98,12 +112,14 @@ def test_ping_settings(self): 'experiment_id': None, 'filter_on_realization': True, 'fx_from_file': [], - 'grid_choice': [None], + 'grid_choice': None, 'grid_policy': None, 'grid_prefix': 'CMIP6_', - 'grids': [None], + 'grids': None, 'grids_dev': {}, 'grouped_vars_per_file': [], + 'included_expgroups': [], + 'included_expgroups_lset': [], 'included_opportunities': [], 'included_opportunities_lset': [], 'included_request_links': [], @@ -113,8 +129,6 @@ def test_ping_settings(self): 'included_vargroups_lset': [], 'included_vars': [], 'included_vars_lset': [], - 'institution_id': 'CNRM-CERFACS', - 'laboratory_used': None, 'listof_home_vars': None, 'max_file_size_in_floats': 500000000.0, 'max_priority': 3, @@ -137,15 +151,13 @@ def test_ping_settings(self): 'prefixed_orography_field_name': 'CMIP6_orog', 'print_stats_per_var_label': False, 'print_variables': True, - 'project': 'ping', - 'project_settings': 'ping', 'realization_index': '1', 'realms_per_context': ['atmos', 'atmos atmosChem', 'aerosol', 'atmos land', 'land', 'landIce land', 'aerosol land', 'land landIce', 'landIce'], 'required_model_components': [], 'sampling_timestep': None, - 'save_project_settings': None, 'select': 'no', + 'select_excluded_expgroups': [], 'select_excluded_opportunities': [], 'select_excluded_pairs': [], 'select_excluded_request_links': None, @@ -153,6 +165,7 @@ def test_ping_settings(self): 'select_excluded_vargroups': [], 'select_excluded_vars': [], 'select_grid_choice': 'LR', + 'select_included_expgroups': [], 'select_included_opportunities': [], 'select_included_request_links': None, 'select_included_tables': [], @@ -164,7 +177,7 @@ def test_ping_settings(self): 'ISMIP6', 'LS3MIP', 'LUMIP', 'OMIP', 'PDRMIP', 'PMIP', 'RFMIP', 'SIMIP', 'SPECS', 'ScenarioMIP', 'SolarMIP', 'VIACSAB', 'VolMIP'], 'select_on_expt': False, - 'select_on_year': None, + 'select_on_year': False, 'select_sizes': None, 'select_tierMax': 3, 'sizes': None, @@ -172,6 +185,7 @@ def test_ping_settings(self): 'source_type': None, 'special_timestep_vars': [], 'split_frequencies': 'splitfreqs.dat', + 'synchronisation_frequency': None, 'tierMax': 3, 'tierMax_lset': 3, 'too_long_periods': [], @@ -186,11 +200,12 @@ def test_ping_settings(self): common = get_settings_values("common") ref_common = {'branch_method': 'standard', 'branch_month_in_parent': '1', - 'comment_lab': '', - 'comment_sim': '', + 'comment_lset': '', + 'comment_sset': '', 'compression_level': '0', 'contact': 'None', 'convention_str': 'CF-1.7 CMIP-6.2', + 'data_request_version_string': '01.00.21.post1', 'data_specs_version': '01.00.21.post1', 'date_range': '%start_date%-%end_date%', 'dr2xml_version': '3.1', @@ -199,6 +214,8 @@ def test_ping_settings(self): 'history': 'none', 'initialization_index': '1', 'list_perso_dev_file': 'dr2xml_list_perso_and_dev_file_names', + 'mip_era_lset': None, + 'mip_era_sset': None, 'output_level': '10', 'parent_time_ref_year': '1850', 'physics_index': '1', diff --git a/tests/tools_for_tests.py b/tests/tools_for_tests.py index 74fcd272..7db39452 100644 --- a/tests/tools_for_tests.py +++ b/tests/tools_for_tests.py @@ -136,7 +136,6 @@ def create_config_elements(simulation="my_simulation", contexts=list(), add_prof year="1980", enddate="19800131", pingfiles="", printout="1", debug=False, is_ping=False, filename="ping_{content}.xml", by_realm=False): current_dir = os.path.dirname(os.path.abspath(__file__)) - data_request_directory = os.sep.join([os.path.dirname(os.path.dirname(os.path.dirname(current_dir))), "data_request", "CMIP7_DReq_Software", "data_request_api"]) simulation_dir = os.path.sep.join([current_dir, "test_{}".format(simulation)]) inputs_dir = os.path.sep.join([simulation_dir, "input"]) kwargs = dict( @@ -155,8 +154,7 @@ def create_config_elements(simulation="my_simulation", contexts=list(), add_prof lab_and_model_settings=read_element_from_python_file(element="lab_and_model_settings", simulation=simulation, current_dir=current_dir), reference_directory=os.path.sep.join([simulation_dir, "reference_outputs"]), - current_directory=current_dir, - current_data_request=data_request_directory + current_directory=current_dir ) dirname = os.path.sep.join([simulation_dir, "test_outputs", ""]) if is_ping: @@ -207,7 +205,6 @@ class TestRun(object): simulation_settings = dict() reference_directory = None current_directory = None - current_data_request = None launch_function = None def test_simulation(self): @@ -215,7 +212,6 @@ def test_simulation(self): shutil.rmtree(self.config["dirname"]) os.makedirs(self.config["dirname"]) current_directory = self.current_directory - data_request_directory = self.current_data_request self.launch_function(simulation=self.simulation, config_dict=self.config, contexts=self.contexts, lset=self.lab_and_model_settings, sset=self.simulation_settings, add_profile=self.add_profile, @@ -224,12 +220,14 @@ def test_simulation(self): from dr2xml.config import version anonymize_dict = dict(current_directory=current_directory, current_version=version, - current_data_request=data_request_directory) + current_dr2xml=os.path.dirname(current_directory)) data_request_used = self.lab_and_model_settings.get("data_request_used", "CMIP6") if data_request_used in ["CMIP7", ]: from data_request_api import version as cmip7_dr_software_version anonymize_dict["current_cmip7_dr_software"] = cmip7_dr_software_version + from data_request_api.command_line.config import dreqcfg + anonymize_dict["data_request_directory"] = dreqcfg.load_config()["cache_dir"] elif data_request_used in ["CMIP6", ]: data_request_content_version = self.lab_and_model_settings.get("data_request_content_version", "latest_stable") if data_request_content_version not in ["latest_stable", "stable", "latest"]: diff --git a/utilities/encoding_tools.py b/utilities/encoding_tools.py index 7a192295..6d712b25 100644 --- a/utilities/encoding_tools.py +++ b/utilities/encoding_tools.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- from __future__ import division, absolute_import, print_function, unicode_literals import sys diff --git a/utilities/json_tools.py b/utilities/json_tools.py index e8aa81ae..39d59d0c 100644 --- a/utilities/json_tools.py +++ b/utilities/json_tools.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- from __future__ import division, absolute_import, print_function, unicode_literals import copy @@ -33,4 +35,4 @@ def format_json_before_writing(settings): def write_json_content(filename, settings): with open(filename, "w") as fp: - json.dump(format_json_before_writing(copy.deepcopy(settings)), fp) + json.dump(format_json_before_writing(copy.deepcopy(settings)), fp, indent=4, sort_keys=True) diff --git a/utilities/parser_tools.py b/utilities/parser_tools.py new file mode 100644 index 00000000..de5da677 --- /dev/null +++ b/utilities/parser_tools.py @@ -0,0 +1,43 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +from __future__ import division, absolute_import, print_function, unicode_literals + +import six +import argparse + +def check_bool(value): + if isinstance(value, bool): + return value + elif isinstance(value, (six.string_types, int)): + if value in ["", "0", "no", "none", "None", "False", "false", 0]: + return False + elif value in ["1", "yes", "True", "true", 1]: + return True + else: + try: + return bool(value) + except ValueError: + raise argparse.ArgumentTypeError("%s is not a boolean" % value) + else: + raise TypeError("Unexpected case") + + +def check_int(value): + if isinstance(value, int): + return value + elif isinstance(value, six.string_types) and value in ["none", "None", ""]: + return None + else: + try: + value = int(value) + return value + except ValueError: + raise argparse.ArgumentTypeError("%s is not an integer" % value) + +def check_none_or_other(value): + if value is None or value in ["", "none", "None"]: + return None + elif isinstance(value, six.string_types): + return value.strip() + else: + return str(value).strip() \ No newline at end of file