diff --git a/esmvalcore/cmor/table.py b/esmvalcore/cmor/table.py index f80f339584..9620151ca5 100644 --- a/esmvalcore/cmor/table.py +++ b/esmvalcore/cmor/table.py @@ -1,11 +1,12 @@ """CMOR information reader for ESMValTool. -Read variable information from CMOR 2 and CMOR 3 tables and make it +Read variable information from CMOR2 and CMOR3 tables and make it easily available for the other components of ESMValTool """ from __future__ import annotations +import contextlib import copy import errno import glob @@ -15,7 +16,7 @@ from collections import Counter from functools import lru_cache, total_ordering from pathlib import Path -from typing import Union +from typing import Any, Union import yaml @@ -23,7 +24,13 @@ logger = logging.getLogger(__name__) -CMORTable = Union["CMIP3Info", "CMIP5Info", "CMIP6Info", "CustomInfo"] +CMORTable = Union[ + "CMIP3Info", + "CMIP5Info", + "CMIP6Info", + "Input4MIPsInfo", + "CustomInfo", +] CMOR_TABLES: dict[str, CMORTable] = {} """dict of str, obj: CMOR info objects.""" @@ -53,9 +60,7 @@ def _update_cmor_facets(facets): f"Unable to load CMOR table (project) '{project}' for variable " f"'{short_name}' with mip '{mip}'" ) - raise RecipeError( - msg, - ) + raise RecipeError(msg) facets["original_short_name"] = table_entry.short_name for key in _CMOR_KEYS: if key not in facets: @@ -115,9 +120,7 @@ def get_var_info( f"No CMOR tables available for project '{project}'. The following " f"tables are available: {', '.join(CMOR_TABLES)}." ) - raise KeyError( - msg, - ) + raise KeyError(msg) # CORDEX X-hourly tables define the mip as ending in 'h' instead of 'hr' if project == "CORDEX" and mip.endswith("hr"): @@ -229,6 +232,15 @@ def _read_table(cfg_developer, table, install_dir, custom, alt_names): default_table_prefix=default_table_prefix, alt_names=alt_names, ) + if cmor_type == "input4MIPs": + return Input4MIPsInfo( + table_path, + default=custom, + strict=cmor_strict, + default_table_prefix=default_table_prefix, + alt_names=alt_names, + ) + msg = f"Unsupported CMOR type {cmor_type}" raise ValueError(msg) @@ -236,42 +248,47 @@ def _read_table(cfg_developer, table, install_dir, custom, alt_names): class InfoBase: """Base class for all table info classes. - This uses CMOR 3 json format + This uses CMOR3 json format Parameters ---------- - default: object - Default table to look variables on if not found - - alt_names: list[list[str]] + default: + Default table to look variables on if not found. + alt_names: List of known alternative names for variables + strict: + If ``False``, will look for a variable in other tables if it can not be + found in the requested one. - strict: bool - If False, will look for a variable in other tables if it can not be - found in the requested one """ - def __init__(self, default, alt_names, strict): + def __init__( + self, + default: CMORTable | None = None, + alt_names: list[str] | None = None, + strict: bool = True, + ) -> None: if alt_names is None: - alt_names = "" + alt_names = [] self.default = default self.alt_names = alt_names self.strict = strict - self.tables = {} + self.tables: dict[str, TableInfo] = {} - def get_table(self, table): + def get_table(self, table: str) -> TableInfo | None: """Search and return the table info. Parameters ---------- - table: str - Table name + table: + Table name. Returns ------- - TableInfo - Return the TableInfo object for the requested table if - found, returns None if not + TableInfo | None + Return the ``TableInfo`` object for the requested table if + found, ``None`` if not. + """ return self.tables.get(table) @@ -334,27 +351,36 @@ def get_variable( return var_info - def _look_in_default(self, derived, alt_names_list, table_name): + def _look_in_default( + self, + derived: bool, + alt_names_list: list[str], + table_name: str, + ) -> VariableInfo | None: """Look for variable in default table.""" var_info = None - if not self.strict or derived: + if (not self.strict or derived) and self.default is not None: for alt_names in alt_names_list: var_info = self.default.get_variable(table_name, alt_names) if var_info: break return var_info - def _look_in_all_tables(self, derived, alt_names_list): + def _look_in_all_tables( + self, + derived: bool, + alt_names_list: list[str], + ) -> VariableInfo | None: """Look for variable in all tables.""" var_info = None if not self.strict or derived: - for alt_names in alt_names_list: - var_info = self._look_all_tables(alt_names) + for alt_name in alt_names_list: + var_info = self._look_all_tables(alt_name) if var_info: break return var_info - def _get_alt_names_list(self, short_name): + def _get_alt_names_list(self, short_name: str) -> list[str]: """Get list of alternative variable names.""" alt_names_list = [short_name] for alt_names in self.alt_names: @@ -368,47 +394,57 @@ def _get_alt_names_list(self, short_name): ) return alt_names_list - def _update_frequency_from_mip(self, table_name, var_info): + def _update_frequency_from_mip( + self, + table_name: str, + var_info: VariableInfo, + ) -> VariableInfo: """Update frequency information of var_info from table.""" mip_info = self.get_table(table_name) if mip_info: var_info.frequency = mip_info.frequency return var_info - def _look_all_tables(self, alt_names): + def _look_all_tables(self, alt_name: str) -> VariableInfo | None: """Look for variable in all tables.""" for table_vars in sorted(self.tables.values()): - if alt_names in table_vars: - return table_vars[alt_names] + if alt_name in table_vars: + return table_vars[alt_name] return None class CMIP6Info(InfoBase): """Class to read CMIP6-like data request. - This uses CMOR 3 json format + This uses CMOR3 JSON format. Parameters ---------- - cmor_tables_path: str - Path to the folder containing the Tables folder with the json files - - default: object - Default table to look variables on if not found + cmor_tables_path: + Path to the folder containing the ``Tables`` folder with the JSON + files. + default: + Default table to look variables on if not found. + alt_names: + List of known alternative names for variables + strict: + If ``False``, will look for a variable in other tables if it can not be + found in the requested one. + default_table_prefix: + Prefix that needs to be added to the ``mip`` to get the name of the + file containing the ``mip`` table. Defaults to the value provided in + ``cmor_type``. - strict: bool - If False, will look for a variable in other tables if it can not be - found in the requested one """ def __init__( self, - cmor_tables_path, - default=None, - alt_names=None, - strict=True, - default_table_prefix="", - ): + cmor_tables_path: str, + default: CMORTable | None = None, + alt_names: list[str] | None = None, + strict: bool = True, + default_table_prefix: str = "", + ) -> None: super().__init__(default, alt_names, strict) cmor_tables_path = self._get_cmor_path(cmor_tables_path) @@ -418,7 +454,7 @@ def __init__( self.default_table_prefix = default_table_prefix - self.var_to_freq = {} + self.var_to_freq: dict[str, dict[str, Any]] = {} self._load_coordinates() for json_file in glob.glob(os.path.join(self._cmor_folder, "*.json")): @@ -436,7 +472,7 @@ def __init__( raise @staticmethod - def _get_cmor_path(cmor_tables_path): + def _get_cmor_path(cmor_tables_path: str) -> str: if os.path.isdir(cmor_tables_path): return cmor_tables_path cwd = os.path.dirname(os.path.realpath(__file__)) @@ -444,11 +480,9 @@ def _get_cmor_path(cmor_tables_path): if os.path.isdir(cmor_tables_path): return cmor_tables_path msg = f"CMOR tables not found in {cmor_tables_path}" - raise ValueError( - msg, - ) + raise ValueError(msg) - def _load_table(self, json_file): + def _load_table(self, json_file: str) -> None: with open(json_file, encoding="utf-8") as inf: raw_data = json.loads(inf.read()) if not self._is_table(raw_data): @@ -475,7 +509,11 @@ def _load_table(self, json_file): table.frequency = table_freq self.tables[table.name] = table - def _assign_dimensions(self, var, generic_levels): + def _assign_dimensions( + self, + var: VariableInfo, + generic_levels: list[str], + ) -> None: for dimension in var.dimensions: if dimension in generic_levels: coord = CoordinateInfo(dimension) @@ -497,7 +535,7 @@ def _assign_dimensions(self, var, generic_levels): var.coordinates[dimension] = coord - def _load_coordinates(self): + def _load_coordinates(self) -> None: self.coords = {} for json_file in glob.glob( os.path.join(self._cmor_folder, "*coordinate*.json"), @@ -509,7 +547,7 @@ def _load_coordinates(self): coord.read_json(table_data["axis_entry"][coord_name]) self.coords[coord_name] = coord - def _load_controlled_vocabulary(self): + def _load_controlled_vocabulary(self) -> None: self.activities = {} self.institutes = {} for json_file in glob.glob( @@ -533,19 +571,20 @@ def _load_controlled_vocabulary(self): except (KeyError, AttributeError): pass - def get_table(self, table): + def get_table(self, table: str) -> TableInfo | None: """Search and return the table info. Parameters ---------- - table: str - Table name + table: + Table name. Returns ------- - TableInfo - Return the TableInfo object for the requested table if - found, returns None if not + TableInfo | None + Return the ``TableInfo`` object for the requested table if + found, ``None`` if not. + """ try: return self.tables[table] @@ -553,7 +592,7 @@ def get_table(self, table): return self.tables.get(f"{self.default_table_prefix}{table}") @staticmethod - def _is_table(table_data): + def _is_table(table_data: dict[str, Any]) -> bool: if "variable_entry" not in table_data: return False return "Header" in table_data @@ -981,7 +1020,7 @@ def get_table(self, table): Returns ------- - TableInfo + TableInfo | None Return the TableInfo object for the requested table if found, returns None if not """ @@ -1026,6 +1065,66 @@ def _read_variable(self, short_name, frequency): return var +class Input4MIPsInfo(CMIP6Info): + """Class to read Input4MIPs-like data request. + + This uses CMOR3 JSON format. + + Parameters + ---------- + cmor_tables_path: + Path to the folder containing the ``Tables`` folder with the JSON + files. + default: + Default table to look variables on if not found. + alt_names: + List of known alternative names for variables + strict: + If ``False``, will look for a variable in other tables if it can not be + found in the requested one. + default_table_prefix: + Prefix that needs to be added to the ``mip`` to get the name of the + file containing the ``mip`` table. Defaults to the value provided in + ``cmor_type``. + + """ + + def _load_controlled_vocabulary(self) -> None: + """Load information from controlled vocabulary.""" + self.activities = {} + self.institutes = {} + self.dataset_categories = {} + + for json_file in Path(self._cmor_folder).glob("*_CV.json"): + table_data = json.loads(json_file.read_text(encoding="utf-8")) + if "CV" not in table_data: + logger.warning( + "Controlled vocabulary file %s does not contain top level " + "key 'CV'", + json_file, + ) + continue + cv_data = table_data["CV"] + + # Activity: In the current version of the tables, this will always + # be ['input4MIPs'] + if "activity_id" in cv_data: + self.activities = cv_data["activity_id"] + + # Institute and dataset category + if "source_id" in cv_data: + source_ids = cv_data["source_id"] + for source_id in source_ids: + with contextlib.suppress(KeyError, AttributeError): + self.institutes[source_id] = source_ids[source_id][ + "institution_id" + ] + with contextlib.suppress(KeyError, AttributeError): + self.dataset_categories[source_id] = source_ids[ + source_id + ]["dataset_category"] + + class CustomInfo(CMIP5Info): """Class to read custom var info for ESMVal. @@ -1060,9 +1159,7 @@ def __init__(self, cmor_tables_path: str | Path | None = None) -> None: f"Custom CMOR tables path {self._user_table_folder} is " f"not a directory" ) - raise ValueError( - msg, - ) + raise ValueError(msg) self._read_table_dir(self._user_table_folder) else: self._user_table_folder = None diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_A3hr.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_A3hr.json new file mode 100644 index 0000000000..1ccaa4d3db --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_A3hr.json @@ -0,0 +1,90 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"0.125000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"atmos", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_A3hr" + }, + "variable_entry":{ + "prra":{ + "cell_measures":"area: areacella", + "cell_methods":"area: time: mean", + "comment":"In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics", + "dimensions":"longitude latitude time", + "frequency":"3hr", + "long_name":"Rainfall Flux", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"prra", + "positive":"", + "standard_name":"rainfall_flux", + "type":"real", + "units":"kg m-2 s-1", + "valid_max":"", + "valid_min":"" + }, + "prsn":{ + "cell_measures":"area: areacella", + "cell_methods":"area: time: mean", + "comment":"At surface; includes precipitation of all forms of water in the solid phase", + "dimensions":"longitude latitude time", + "frequency":"3hr", + "long_name":"Snowfall Flux", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"prsn", + "positive":"", + "standard_name":"snowfall_flux", + "type":"real", + "units":"kg m-2 s-1", + "valid_max":"", + "valid_min":"" + }, + "rlds":{ + "cell_measures":"area: areacella", + "cell_methods":"area: time: mean", + "comment":"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.", + "dimensions":"longitude latitude time", + "frequency":"3hr", + "long_name":"Surface Downwelling Longwave Radiation", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"rlds", + "positive":"down", + "standard_name":"surface_downwelling_longwave_flux_in_air", + "type":"real", + "units":"W m-2", + "valid_max":"", + "valid_min":"" + }, + "rsds":{ + "cell_measures":"area: areacella", + "cell_methods":"area: time: mean", + "comment":"Surface solar irradiance for UV calculations.", + "dimensions":"longitude latitude time", + "frequency":"3hr", + "long_name":"Surface Downwelling Shortwave Radiation", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"rsds", + "positive":"down", + "standard_name":"surface_downwelling_shortwave_flux_in_air", + "type":"real", + "units":"W m-2", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_A3hrPt.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_A3hrPt.json new file mode 100644 index 0000000000..80acb02bc3 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_A3hrPt.json @@ -0,0 +1,126 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"0.125000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"atmos", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_A3hrPt" + }, + "variable_entry":{ + "huss":{ + "cell_measures":"area: areacella", + "cell_methods":"area: mean time: point", + "comment":"Near-surface (usually, 2 meter) specific humidity", + "dimensions":"longitude latitude time1 height2m", + "frequency":"3hrPt", + "long_name":"Near-Surface Specific Humidity", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"huss", + "positive":"", + "standard_name":"specific_humidity", + "type":"real", + "units":"1", + "valid_max":"", + "valid_min":"" + }, + "psl":{ + "cell_measures":"area: areacella", + "cell_methods":"area: mean time: point", + "comment":"Sea Level Pressure", + "dimensions":"longitude latitude time1", + "frequency":"3hrPt", + "long_name":"Sea Level Pressure", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"psl", + "positive":"", + "standard_name":"air_pressure_at_mean_sea_level", + "type":"real", + "units":"Pa", + "valid_max":"", + "valid_min":"" + }, + "tas":{ + "cell_measures":"area: areacella", + "cell_methods":"area: mean time: point", + "comment":"near-surface (usually, 2 meter) air temperature", + "dimensions":"longitude latitude time1 height2m", + "frequency":"3hrPt", + "long_name":"Near-Surface Air Temperature", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"tas", + "positive":"", + "standard_name":"air_temperature", + "type":"real", + "units":"K", + "valid_max":"", + "valid_min":"" + }, + "ts":{ + "cell_measures":"area: areacella", + "cell_methods":"area: mean time: point", + "comment":"Temperature of the lower boundary of the atmosphere", + "dimensions":"longitude latitude time1", + "frequency":"3hrPt", + "long_name":"Surface Temperature", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"ts", + "positive":"", + "standard_name":"surface_temperature", + "type":"real", + "units":"K", + "valid_max":"", + "valid_min":"" + }, + "uas":{ + "cell_measures":"area: areacella", + "cell_methods":"area: mean time: point", + "comment":"Eastward component of the near-surface wind", + "dimensions":"longitude latitude time1 height10m", + "frequency":"3hrPt", + "long_name":"Eastward Near-Surface Wind", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"uas", + "positive":"", + "standard_name":"eastward_wind", + "type":"real", + "units":"m s-1", + "valid_max":"", + "valid_min":"" + }, + "vas":{ + "cell_measures":"area: areacella", + "cell_methods":"area: mean time: point", + "comment":"Northward component of the near surface wind", + "dimensions":"longitude latitude time1 height10m", + "frequency":"3hrPt", + "long_name":"Northward Near-Surface Wind", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"vas", + "positive":"", + "standard_name":"northward_wind", + "type":"real", + "units":"m s-1", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Afx.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Afx.json new file mode 100644 index 0000000000..833263fc0b --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Afx.json @@ -0,0 +1,72 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"0.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"alevel", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"atmos land", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_Afx" + }, + "variable_entry":{ + "areacella":{ + "cell_measures":"", + "cell_methods":"area: sum", + "comment":"For atmospheres with more than 1 mesh (e.g., staggered grids), report areas that apply to surface vertical fluxes of energy", + "dimensions":"longitude latitude", + "frequency":"fx", + "long_name":"Grid-Cell Area for Atmospheric Grid Variables", + "modeling_realm":"atmos land", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"areacella", + "positive":"", + "standard_name":"cell_area", + "type":"real", + "units":"m2", + "valid_max":"", + "valid_min":"" + }, + "sftlf":{ + "cell_measures":"area: areacella", + "cell_methods":"area: mean", + "comment":"Please express 'X_area_fraction' as the percentage of horizontal area occupied by X", + "dimensions":"longitude latitude", + "frequency":"fx", + "long_name":"Percentage of the Grid Cell Occupied by Land (Including Lakes)", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"sftlf", + "positive":"", + "standard_name":"land_area_fraction", + "type":"real", + "units":"%", + "valid_max":"", + "valid_min":"" + }, + "sftof":{ + "cell_measures":"area: areacella", + "cell_methods":"area: mean", + "comment":"Percentage of horizontal area occupied by ocean", + "dimensions":"longitude latitude", + "frequency":"fx", + "long_name":"Sea Area Percentage", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"sftof", + "positive":"", + "standard_name":"sea_area_fraction", + "type":"real", + "units":"%", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Ayr.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Ayr.json new file mode 100644 index 0000000000..4dcbc94519 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Ayr.json @@ -0,0 +1,72 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"30.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"alevel alevhalf", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"atmos atmosChem", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_Ayr" + }, + "variable_entry":{ + "evspsbl":{ + "cell_measures":"area: areacella", + "cell_methods":"area: time: mean", + "comment":"Evaporation at surface (also known as evapotranspiration): flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation)", + "dimensions":"longitude latitude time", + "frequency":"yr", + "long_name":"Evaporation Including Sublimation and Transpiration", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"evspsbl", + "positive":"", + "standard_name":"water_evapotranspiration_flux", + "type":"real", + "units":"kg m-2 s-1", + "valid_max":"", + "valid_min":"" + }, + "pr":{ + "cell_measures":"area: areacella", + "cell_methods":"area: time: mean", + "comment":"includes both liquid and solid phases", + "dimensions":"longitude latitude time", + "frequency":"yr", + "long_name":"Precipitation", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"pr", + "positive":"", + "standard_name":"precipitation_flux", + "type":"real", + "units":"kg m-2 s-1", + "valid_max":"", + "valid_min":"" + }, + "ts":{ + "cell_measures":"area: areacella", + "cell_methods":"area: time: mean", + "comment":"Temperature of the lower boundary of the atmosphere", + "dimensions":"longitude latitude time", + "frequency":"yr", + "long_name":"Surface Temperature", + "modeling_realm":"atmos", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"ts", + "positive":"", + "standard_name":"surface_temperature", + "type":"real", + "units":"K", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_CV.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_CV.json new file mode 100644 index 0000000000..37422ac00b --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_CV.json @@ -0,0 +1,1161 @@ +{ + "CV":{ + "activity_id":[ + "input4MIPs" + ], + "dataset_category":[ + "GHGConcentrations", + "SSTsAndSeaIce", + "aerosolProperties", + "atmosphericState", + "emissions", + "landState", + "ozone", + "radiation", + "solar", + "surfaceAir", + "surfaceFluxes" + ], + "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", + "yrC":"annual climatology computed from annual mean samples", + "yrPt":"sampled yearly, at specified time point within the time period" + }, + "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" + }, + "institution_id":{ + "CCCma":"Canadian Centre for Climate Modelling and Analysis, Victoria, BC V8P 5C2, Canada", + "CNRM-Cerfacs":"CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31100, France)", + "IACETH":"Institute for Atmosphere and Climate, ETH Zurich, Zurich 8092, Switzerland", + "IAMC":"Integrated Assessment Modeling Consortium (see www.globalchange.umd.edu/iamc/membership for complete membership). Mailing address: International Institute for Applied Systems Analysis (IIASA), Schlossplatz 1, A-2361 Laxenburg, Austria", + "ImperialCollege":"Imperial College London, South Kensington Campus, London SW7 2AZ, UK", + "MOHC":"Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK", + "MPI-B":"Max Planck Institute for Biogeochemistry, Jena 07745, Germany", + "MPI-M":"Max Planck Institute for Meteorology, Hamburg 20146, Germany", + "MRI":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "NASA-GSFC":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "NCAR":"National Center for Atmospheric Research, Boulder, CO 80307, USA", + "NCAS":"National Centre for Atmospheric Science, University of Reading, Reading RG6 6BB, UK", + "PCMDI":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "PNNL-JGCRI":"Pacific Northwest National Laboratory - Joint Global Change Research Institute, College Park, MD 20740, USA", + "SOLARIS-HEPPA":"SOLARIS-HEPPA, GEOMAR Helmholtz Centre for Ocean Research, Kiel 24105, Germany", + "UCI":"Department of Earth System Science, University of California Irvine, Irvine, CA 92697, USA", + "UColorado":"University of Colorado, Boulder, CO 80309, USA", + "UReading":"University of Reading, Reading RG6 6UA, UK", + "UoM":"Australian-German Climate & Energy College, The University of Melbourne (UoM), Parkville, Victoria 3010, Australia", + "UofMD":"University of Maryland (UofMD), College Park, MD 20742, USA", + "VUA":"Vrije Universiteit Amsterdam, De Boelelaan 1105, 1081 HV Amsterdam, Netherlands" + }, + "license":" data produced by is licensed under a Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing input4MIPs output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law.", + "mip_era":[ + "AMIP1", + "AMIP2", + "CMIP1", + "CMIP2", + "CMIP3", + "CMIP5", + "CMIP6", + "CMIP6Plus" + ], + "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" + ], + "product":[ + "derived", + "observations", + "reanalysis" + ], + "realm":{ + "aerosol":"Aerosol", + "atmos":"Atmosphere", + "atmosChem":"Atmospheric Chemistry", + "land":"Land Surface", + "landIce":"Land Ice", + "ocean":"Ocean", + "ocnBgchem":"Ocean Biogeochemistry", + "seaIce":"Sea Ice" + }, + "region":[ + "africa", + "antarctica", + "arabian_sea", + "aral_sea", + "arctic_ocean", + "asia", + "atlantic_ocean", + "australia", + "baltic_sea", + "barents_opening", + "barents_sea", + "beaufort_sea", + "bellingshausen_sea", + "bering_sea", + "bering_strait", + "black_sea", + "canadian_archipelago", + "caribbean_sea", + "caspian_sea", + "central_america", + "chukchi_sea", + "contiguous_united_states", + "denmark_strait", + "drake_passage", + "east_china_sea", + "english_channel", + "eurasia", + "europe", + "faroe_scotland_channel", + "florida_bahamas_strait", + "fram_strait", + "global", + "global_land", + "global_ocean", + "great_lakes", + "greenland", + "gulf_of_alaska", + "gulf_of_mexico", + "hudson_bay", + "iceland_faroe_channel", + "indian_ocean", + "indo_pacific_ocean", + "indonesian_throughflow", + "irish_sea", + "lake_baykal", + "lake_chad", + "lake_malawi", + "lake_tanganyika", + "lake_victoria", + "mediterranean_sea", + "mozambique_channel", + "north_america", + "north_sea", + "norwegian_sea", + "pacific_equatorial_undercurrent", + "pacific_ocean", + "persian_gulf", + "red_sea", + "ross_sea", + "sea_of_japan", + "sea_of_okhotsk", + "south_america", + "south_china_sea", + "southern_ocean", + "taiwan_luzon_straits", + "weddell_sea", + "windward_passage", + "yellow_sea" + ], + "required_global_attributes":[ + "Conventions", + "activity_id", + "contact", + "creation_date", + "dataset_category", + "frequency", + "further_info_url", + "grid_label", + "institution", + "institution_id", + "license", + "mip_era", + "nominal_resolution", + "realm", + "region", + "source", + "source_id", + "source_version", + "table_id", + "target_mip", + "title", + "tracking_id", + "variable_id" + ], + "source_id":{ + "ACCESS1-3-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model ACCESS1-3 as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"ACCESS1-3-rcp85-1-0 derived dataset computed from CMIP5 ACCESS1-3 historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"ACCESS1-3-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - ACCESS1-3-rcp85-1-0 derived data prepared for input4MIPs" + }, + "CCSM4-rcp26-1-0":{ + "comment":"Prepared using CMIP5 model CCSM4 as input. A combination of historical and rcp26 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CCSM4-rcp26-1-0 derived dataset computed from CMIP5 CCSM4 historical and rcp26 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CCSM4-rcp26-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CCSM4-rcp26-1-0 derived data prepared for input4MIPs" + }, + "CCSM4-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model CCSM4 as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CCSM4-rcp85-1-0 derived dataset computed from CMIP5 CCSM4 historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CCSM4-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CCSM4-rcp85-1-0 derived data prepared for input4MIPs" + }, + "CESM2-ssp585-1-0":{ + "comment":"Prepared using CMIP6 model CESM2 as input. A combination of historical and ssp585 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CESM2-ssp585-1-0 derived dataset computed from CMIP6 CESM2 historical and ssp585 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CESM2-ssp585-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CESM2-ssp585-1-0 derived data prepared for input4MIPs" + }, + "CNRM-CM6-1-ssp126-1-0":{ + "comment":"Prepared using CMIP6 model CNRM-CM6-1 as input. A combination of historical and ssp126 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CNRM-CM6-1-ssp126-1-0 derived dataset computed from CMIP6 CNRM-CM6-1 historical and ssp126 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CNRM-CM6-1-ssp126-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CNRM-CM6-1-ssp126-1-0 derived data prepared for input4MIPs" + }, + "CNRM-CM6-1-ssp585-1-0":{ + "comment":"Prepared using CMIP6 model CNRM-CM6-1 as input. A combination of historical and ssp585 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CNRM-CM6-1-ssp585-1-0 derived dataset computed from CMIP6 CNRM-CM6-1 historical and ssp585 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CNRM-CM6-1-ssp585-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CNRM-CM6-1-ssp585-1-0 derived data prepared for input4MIPs" + }, + "CNRM-ESM2-1-ssp585-1-0":{ + "comment":"Prepared using CMIP6 model CNRM-ESM2-1 as input. A combination of historical and ssp585 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CNRM-ESM2-1-ssp585-1-0 derived dataset computed from CMIP6 CNRM-ESM2-1 historical and ssp585 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CNRM-ESM2-1-ssp585-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CNRM-ESM2-1-ssp585-1-0 derived data prepared for input4MIPs" + }, + "CSIRO-MK3-6-0-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model CSIRO-MK3-6-0 as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CSIRO-MK3-6-0-rcp85-1-0 derived dataset computed from CMIP5 CSIRO-MK3-6-0 historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CSIRO-MK3-6-0-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CSIRO-MK3-6-0-rcp85-1-0 derived data prepared for input4MIPs" + }, + "HadGEM2-ES-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model HadGEM2-ES as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"HadGEM2-ES-rcp85-1-0 derived dataset computed from CMIP5 HadGEM2-ES historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"HadGEM2-ES-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - HadGEM2-ES-rcp85-1-0 derived data prepared for input4MIPs" + }, + "IPSL-CM5A-MR-rcp26-1-0":{ + "comment":"Prepared using CMIP5 model IPSL-CM5A-MR as input. A combination of historical and rcp26 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"IPSL-CM5A-MR-rcp26-1-0 derived dataset computed from CMIP5 IPSL-CM5A-MR historical and rcp26 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"IPSL-CM5A-MR-rcp26-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - IPSL-CM5A-MR-rcp26-1-0 derived data prepared for input4MIPs" + }, + "IPSL-CM5A-MR-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model IPSL-CM5A-MR as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"IPSL-CM5A-MR-rcp85-1-0 derived dataset computed from CMIP5 IPSL-CM5A-MR historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"IPSL-CM5A-MR-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - IPSL-CM5A-MR-rcp85-1-0 derived data prepared for input4MIPs" + }, + "MIROC-ESM-CHEM-rcp26-1-0":{ + "comment":"Prepared using CMIP5 model MIROC-ESM-CHEM as input. A combination of historical and rcp26 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"MIROC-ESM-CHEM-rcp26-1-0 derived dataset computed from CMIP5 MIROC-ESM-CHEM historical and rcp26 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"MIROC-ESM-CHEM-rcp26-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - MIROC-ESM-CHEM-rcp26-1-0 derived data prepared for input4MIPs" + }, + "MIROC-ESM-CHEM-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model MIROC-ESM-CHEM as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"MIROC-ESM-CHEM-rcp85-1-0 derived dataset computed from CMIP5 MIROC-ESM-CHEM historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"MIROC-ESM-CHEM-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - MIROC-ESM-CHEM-rcp85-1-0 derived data prepared for input4MIPs" + }, + "MIROC5-rcp26-1-0":{ + "comment":"Prepared using CMIP5 model MIROC5 as input. A combination of historical and rcp26 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"MIROC5-rcp26-1-0 derived dataset computed from CMIP5 MIROC5 historical and rcp26 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"MIROC5-rcp26-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - MIROC5-rcp26-1-0 derived data prepared for input4MIPs" + }, + "MIROC5-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model MIROC5 as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"MIROC5-rcp85-1-0 derived dataset computed from CMIP5 MIROC5 historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"MIROC5-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - MIROC5-rcp85-1-0 derived data prepared for input4MIPs" + }, + "MRI-JRA55-do-1-3":{ + "mip_era":"CMIP6", + "source":"MRI JRA55-do 1.3: Atmospheric state generated for OMIP based on the JRA-55 reanalysis" + }, + "MRI-JRA55-do-1-3-2":{ + "comment":"Based on JRA-55 reanalysis (1958-01 to 2019-01)", + "contact":"Hiroyuki Tsujino (htsujino@mri-jma.go.jp)", + "dataset_category":"atmosphericState", + "further_info_url":"http://climate.mri-jma.go.jp/~htsujino/jra55do.html", + "institution":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "institution_id":"MRI", + "mip_era":"CMIP6", + "product":"reanalysis", + "references":"Tsujino et al., 2018: JRA-55 based surface dataset for driving ocean-sea-ice models (JRA55-do), Ocean Modelling, 130(1), pp 79-139. https://doi.org/10.1016/j.ocemod.2018.07.002", + "region":[ + "global_ocean" + ], + "release_year":"2019", + "source":"MRI JRA55-do 1.3.2: Atmospheric state generated for OMIP based on the JRA-55 reanalysis", + "source_description":"Atmospheric state and terrestrial runoff datasets produced by MRI for the OMIP experiment of CMIP6", + "source_id":"MRI-JRA55-do-1-3-2", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "friver", + "huss", + "licalvf", + "prra", + "prsn", + "psl", + "rlds", + "sftof", + "siconc", + "siconca", + "sos", + "tas", + "tos", + "ts", + "uas", + "uos", + "vas", + "vos" + ], + "source_version":"1.3.2", + "target_mip":"OMIP", + "title":"MRI JRA55-do 1.3.2 dataset prepared for input4MIPs" + }, + "MRI-JRA55-do-1-4-0":{ + "comment":"Based on JRA-55 reanalysis (1958-01 to 2019-01)", + "contact":"Hiroyuki Tsujino (htsujino@mri-jma.go.jp)", + "dataset_category":"atmosphericState", + "further_info_url":"http://climate.mri-jma.go.jp/~htsujino/jra55do.html", + "institution":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "institution_id":"MRI", + "mip_era":"CMIP6", + "product":"reanalysis", + "references":"Tsujino et al., 2018: JRA-55 based surface dataset for driving ocean-sea-ice models (JRA55-do), Ocean Modelling, 130(1), pp 79-139. https://doi.org/10.1016/j.ocemod.2018.07.002", + "region":[ + "global_ocean" + ], + "release_year":"2019", + "source":"MRI JRA55-do 1.4.0: Atmospheric state generated for OMIP based on the JRA-55 reanalysis", + "source_description":"Atmospheric state and terrestrial runoff datasets produced by MRI for the OMIP experiment of CMIP6", + "source_id":"MRI-JRA55-do-1-4-0", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "friver", + "huss", + "licalvf", + "prra", + "prsn", + "psl", + "rlds", + "sftof", + "siconc", + "siconca", + "sos", + "tas", + "tos", + "ts", + "uas", + "uos", + "vas", + "vos" + ], + "source_version":"1.4.0", + "target_mip":"OMIP", + "title":"MRI JRA55-do 1.4.0 dataset prepared for input4MIPs" + }, + "MRI-JRA55-do-1-5-0":{ + "comment":"Based on JRA-55 reanalysis (1958-01 to 2020-07)", + "contact":"Hiroyuki Tsujino (htsujino@mri-jma.go.jp)", + "dataset_category":"atmosphericState", + "further_info_url":"http://climate.mri-jma.go.jp/~htsujino/jra55do.html", + "institution":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "institution_id":"MRI", + "mip_era":"CMIP6", + "product":"reanalysis", + "references":"Tsujino et al., 2018: JRA-55 based surface dataset for driving ocean-sea-ice models (JRA55-do), Ocean Modelling, 130(1), pp 79-139. https://doi.org/10.1016/j.ocemod.2018.07.002", + "region":[ + "global_ocean" + ], + "release_year":"2020", + "source":"MRI JRA55-do 1.5.0: Atmospheric state generated for OMIP based on the JRA-55 reanalysis", + "source_description":"Atmospheric state and terrestrial runoff datasets produced by MRI for the OMIP experiment of CMIP6", + "source_id":"MRI-JRA55-do-1-5-0", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "friver", + "huss", + "licalvf", + "prra", + "prsn", + "psl", + "rlds", + "sftof", + "siconc", + "siconca", + "sos", + "tas", + "tos", + "ts", + "uas", + "uos", + "vas", + "vos" + ], + "source_version":"1.5.0", + "target_mip":"OMIP", + "title":"MRI JRA55-do 1.5.0 dataset prepared for input4MIPs" + }, + "MRI-JRA55-do-1-6-0":{ + "calendar":"gregorian", + "comment":"Based on JRA-55 reanalysis (1958-01 to 2024-01)", + "contact":"Hiroyuki Tsujino (htsujino@mri-jma.go.jp)", + "dataset_category":"atmosphericState", + "further_info_url":"http://climate.mri-jma.go.jp/~htsujino/jra55do.html", + "grid":"data regridded to the normal atmosphere TL319 gaussian grid (320x640 latxlon) from a reduced TL319 gaussian grid", + "grid_label":"gn", + "institution":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "institution_id":"MRI", + "license":"OMIP boundary condition data produced by MRI is licensed under a Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing input4MIPs output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law", + "mip_era":"CMIP6Plus", + "nominal_resolution":"50 km", + "product":"reanalysis", + "references":"Tsujino et al., 2018: JRA-55 based surface dataset for driving ocean-sea-ice models (JRA55-do), Ocean Modelling, 130(1), pp 79-139. https://doi.org/10.1016/j.ocemod.2018.07.002", + "region":[ + "global_ocean" + ], + "release_year":"2024", + "source":"MRI JRA55-do 1.6.0: Atmospheric state generated for OMIP based on the JRA-55 reanalysis", + "source_description":"Atmospheric state and terrestrial runoff datasets produced by MRI for the OMIP experiment of CMIP6Plus", + "source_id":"MRI-JRA55-do-1-6-0", + "source_type":"satellite_blended", + "source_variables":[ + [ + "areacello", + "friver", + "huss", + "licalvf", + "prra", + "prsn", + "psl", + "rlds", + "sftof", + "siconc", + "siconca", + "sos", + "tas", + "tos", + "ts", + "uas", + "uos", + "vas", + "vos" + ] + ], + "source_version":"1.6.0", + "target_mip":"OMIP", + "title":"MRI JRA55-do 1.6.0 dataset prepared for input4MIPs" + }, + "NorESM1-M-rcp26-1-0":{ + "comment":"Prepared using CMIP5 model NorESM1-M as input. A combination of historical and rcp26 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"NorESM1-M-rcp26-1-0 derived dataset computed from CMIP5 NorESM1-M historical and rcp26 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"NorESM1-M-rcp26-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - NorESM1-M-rcp26-1-0 derived data prepared for input4MIPs" + }, + "NorESM1-M-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model NorESM1-M as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"NorESM1-M-rcp85-1-0 derived dataset computed from CMIP5 NorESM1-M historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"NorESM1-M-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - NorESM1-M-rcp85-1-0 derived data prepared for input4MIPs" + }, + "PCMDI-AMIP-1-1-3":{ + "mip_era":"CMIP6", + "source":"PCMDI-AMIP 1.1.3: Merged SST based on UK MetOffice HadISST and NCEP OI2" + }, + "PCMDI-AMIP-1-1-4":{ + "comment":"Based on Hurrell SST/sea ice consistency criteria applied to merged HadISST (1870-01 to 1981-10) & NCEP-0I2 (1981-11 to 2017-12)", + "contact":"PCMDI (pcmdi-cmip@llnl.gov)", + "dataset_category":"SSTsAndSeaIce", + "further_info_url":"https://pcmdi.llnl.gov/mips/amip", + "grid":"1x1 degree longitude x latitude", + "grid_label":"gn", + "institution":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "institution_id":"PCMDI", + "mip_era":"CMIP6", + "nominal_resolution":"1x1 degree", + "product":"observations", + "references":"Taylor, K.E., D. Williamson and F. Zwiers, 2000: The sea surface temperature and sea ice concentration boundary conditions for AMIP II simulations. PCMDI Report 60, Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, 25 pp. Available online: https://pcmdi.llnl.gov/report/pdf/60.pdf", + "region":[ + "global_ocean" + ], + "release_year":"2018", + "source":"PCMDI-AMIP 1.1.4: Merged SST based on UK MetOffice HadISST and NCEP OI2", + "source_description":"Sea surface temperature and sea-ice datasets produced by PCMDI (LLNL) for the AMIP (DECK) experiment of CMIP6", + "source_id":"PCMDI-AMIP-1-1-4", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "sftof", + "siconc", + "siconcbcs", + "tos", + "tosbcs" + ], + "source_version":"1.1.4", + "target_mip":"CMIP", + "title":"PCMDI-AMIP 1.1.4 dataset prepared for input4MIPs" + }, + "PCMDI-AMIP-1-1-5":{ + "comment":"Based on Hurrell SST/sea ice consistency criteria applied to merged HadISST (1870-01 to 1981-10) & NCEP-0I2 (1981-11 to 2018-06)", + "contact":"PCMDI (pcmdi-cmip@llnl.gov)", + "dataset_category":"SSTsAndSeaIce", + "further_info_url":"https://pcmdi.llnl.gov/mips/amip", + "grid":"1x1 degree longitude x latitude", + "grid_label":"gn", + "institution":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "institution_id":"PCMDI", + "mip_era":"CMIP6", + "nominal_resolution":"1x1 degree", + "product":"observations", + "references":"Taylor, K.E., D. Williamson and F. Zwiers, 2000: The sea surface temperature and sea ice concentration boundary conditions for AMIP II simulations. PCMDI Report 60, Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, 25 pp. Available online: https://pcmdi.llnl.gov/report/pdf/60.pdf", + "region":[ + "global_ocean" + ], + "release_year":"2018", + "source":"PCMDI-AMIP 1.1.5: Merged SST based on UK MetOffice HadISST and NCEP OI2", + "source_description":"Sea surface temperature and sea-ice datasets produced by PCMDI (LLNL) for the AMIP (DECK) experiment of CMIP6", + "source_id":"PCMDI-AMIP-1-1-5", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "sftof", + "siconc", + "siconcbcs", + "tos", + "tosbcs" + ], + "source_version":"1.1.5", + "target_mip":"CMIP", + "title":"PCMDI-AMIP 1.1.5 dataset prepared for input4MIPs" + }, + "PCMDI-AMIP-1-1-6":{ + "comment":"Based on Hurrell SST/sea ice consistency criteria applied to merged HadISST (1870-01 to 1981-10) & NCEP-0I2 (1981-11 to 2018-12)", + "contact":"PCMDI (pcmdi-cmip@llnl.gov)", + "dataset_category":"SSTsAndSeaIce", + "further_info_url":"https://pcmdi.llnl.gov/mips/amip", + "grid":"1x1 degree longitude x latitude", + "grid_label":"gn", + "institution":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "institution_id":"PCMDI", + "mip_era":"CMIP6", + "nominal_resolution":"1x1 degree", + "product":"observations", + "references":"Taylor, K.E., D. Williamson and F. Zwiers, 2000: The sea surface temperature and sea ice concentration boundary conditions for AMIP II simulations. PCMDI Report 60, Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, 25 pp. Available online: https://pcmdi.llnl.gov/report/pdf/60.pdf", + "region":[ + "global_ocean" + ], + "release_year":"2019", + "source":"PCMDI-AMIP 1.1.6: Merged SST based on UK MetOffice HadISST and NCEP OI2", + "source_description":"Sea surface temperature and sea-ice datasets produced by PCMDI (LLNL) for the AMIP (DECK) experiment of CMIP6", + "source_id":"PCMDI-AMIP-1-1-6", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "sftof", + "siconc", + "siconcbcs", + "tos", + "tosbcs" + ], + "source_version":"1.1.6", + "target_mip":"CMIP", + "title":"PCMDI-AMIP 1.1.6 dataset prepared for input4MIPs" + }, + "PCMDI-AMIP-1-1-7":{ + "calendar":"gregorian", + "comment":"Based on Hurrell SST/sea ice consistency criteria applied to merged HadISST (1870-01 to 1981-10) & NCEP-0I2 (1981-11 to 2021-06)", + "contact":"PCMDI (pcmdi-cmip@llnl.gov)", + "dataset_category":"SSTsAndSeaIce", + "further_info_url":"https://pcmdi.llnl.gov/mips/amip", + "grid":"1x1 degree longitude x latitude", + "grid_label":"gn", + "institution":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "institution_id":"PCMDI", + "mip_era":"CMIP6", + "nominal_resolution":"1x1 degree", + "product":"observations", + "references":"Taylor, K.E., D. Williamson and F. Zwiers, 2000: The sea surface temperature and sea ice concentration boundary conditions for AMIP II simulations. PCMDI Report 60, Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, 25 pp. Available online: https://pcmdi.llnl.gov/report/pdf/60.pdf", + "region":[ + "global_ocean" + ], + "release_year":"2022", + "source":"PCMDI-AMIP 1.1.7: Merged SST based on UK MetOffice HadISST and NCEP OI2", + "source_description":"Sea surface temperature and sea-ice datasets produced by PCMDI (LLNL) for the AMIP (DECK) experiment of CMIP6", + "source_id":"PCMDI-AMIP-1-1-7", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "sftof", + "siconc", + "siconcbcs", + "tos", + "tosbcs" + ], + "source_version":"1.1.7", + "target_mip":"CMIP", + "title":"PCMDI-AMIP 1.1.7 dataset prepared for input4MIPs" + }, + "PCMDI-AMIP-1-1-8":{ + "calendar":"gregorian", + "comment":"Based on Hurrell SST/sea ice consistency criteria applied to merged HadISST (1870-01 to 1981-10) & NCEP-0I2 (1981-11 to 2021-12)", + "contact":"PCMDI (pcmdi-cmip@llnl.gov)", + "dataset_category":"SSTsAndSeaIce", + "further_info_url":"https://pcmdi.llnl.gov/mips/amip", + "grid":"1x1 degree longitude x latitude", + "grid_label":"gn", + "institution":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "institution_id":"PCMDI", + "license":"AMIP boundary condition data produced by PCMDI is licensed under a Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing input4MIPs output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law", + "mip_era":"CMIP6", + "nominal_resolution":"1x1 degree", + "product":"observations", + "references":"Taylor, K.E., D. Williamson and F. Zwiers, 2000: The sea surface temperature and sea ice concentration boundary conditions for AMIP II simulations. PCMDI Report 60, Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, 25 pp. Available online: https://pcmdi.llnl.gov/report/pdf/60.pdf", + "region":[ + "global_ocean" + ], + "release_year":"2022", + "source":"PCMDI-AMIP 1.1.8: Merged SST based on UK MetOffice HadISST and NCEP OI2", + "source_description":"Sea surface temperature and sea-ice datasets produced by PCMDI (LLNL) for the AMIP (DECK) experiment of CMIP6", + "source_id":"PCMDI-AMIP-1-1-8", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "sftof", + "siconc", + "siconcbcs", + "tos", + "tosbcs" + ], + "source_version":"1.1.8", + "target_mip":"CMIP", + "title":"PCMDI-AMIP 1.1.8 dataset prepared for input4MIPs" + }, + "PCMDI-AMIP-1-1-9":{ + "calendar":"gregorian", + "comment":"Based on Hurrell SST/sea ice consistency criteria applied to merged HadISST (1870-01 to 1981-10) & NCEP-0I2 (1981-11 to 2022-12)", + "contact":"PCMDI (pcmdi-cmip@llnl.gov)", + "dataset_category":"SSTsAndSeaIce", + "further_info_url":"https://pcmdi.llnl.gov/mips/amip", + "grid":"1x1 degree longitude x latitude", + "grid_label":"gn", + "institution":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "institution_id":"PCMDI", + "license":"AMIP boundary condition data produced by PCMDI is licensed under a Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing input4MIPs output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law", + "mip_era":"CMIP6Plus", + "nominal_resolution":"1x1 degree", + "product":"observations", + "references":"Taylor, K.E., D. Williamson and F. Zwiers, 2000: The sea surface temperature and sea ice concentration boundary conditions for AMIP II simulations. PCMDI Report 60, Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, 25 pp. Available online: https://pcmdi.llnl.gov/report/pdf/60.pdf", + "region":[ + "global_ocean" + ], + "release_year":"2023", + "source":"PCMDI-AMIP 1.1.9: Merged SST based on UK MetOffice HadISST and NCEP OI2", + "source_description":"Sea surface temperature and sea-ice datasets produced by PCMDI (LLNL) for the AMIP (DECK) experiment of CMIP6Plus", + "source_id":"PCMDI-AMIP-1-1-9", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "sftof", + "siconc", + "siconcbcs", + "tos", + "tosbcs" + ], + "source_version":"1.1.9", + "target_mip":"CMIP", + "title":"PCMDI-AMIP 1.1.9 dataset prepared for input4MIPs" + }, + "UKESM1-0-LL-ssp585-1-0":{ + "comment":"Prepared using CMIP6 model UKESM1-0-LL as input. A combination of historical and ssp585 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"UKESM1-0-LL-ssp585-1-0 derived dataset computed from CMIP6 UKESM1-0-LL historical and ssp585 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"UKESM1-0-LL-ssp585-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - UKESM1-0-LL-ssp585-1-0 derived data prepared for input4MIPs" + } + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIday.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIday.json new file mode 100644 index 0000000000..365d080306 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIday.json @@ -0,0 +1,36 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"30.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"olevel olevhalf", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"landIce", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_LIday" + }, + "variable_entry":{ + "licalvf":{ + "cell_measures":"area: areacellg", + "cell_methods":"area: time: mean where ice_sheet", + "comment":"Computed as the flux of solid ice into the ocean divided by the area of the land portion of the grid cell", + "dimensions":"longitude latitude time", + "frequency":"day", + "long_name":"Land Ice Calving Flux", + "modeling_realm":"landIce", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"licalvf", + "positive":"", + "standard_name":"land_ice_specific_mass_flux_due_to_calving", + "type":"real", + "units":"kg m-2 s-1", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIfx.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIfx.json new file mode 100644 index 0000000000..f0c2e0f730 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIfx.json @@ -0,0 +1,36 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"landIce", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_LIfx" + }, + "variable_entry":{ + "areacellg":{ + "cell_measures":"", + "cell_methods":"area: sum", + "comment":"Area of the target grid (not the interpolated area of the source grid)", + "dimensions":"longitude latitude", + "frequency":"fx", + "long_name":"Grid-Cell Area for Ice Sheet Variables", + "modeling_realm":"landIce", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"areacellg", + "positive":"", + "standard_name":"cell_area", + "type":"real", + "units":"m2", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIyr.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIyr.json new file mode 100644 index 0000000000..f1a168d514 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIyr.json @@ -0,0 +1,36 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"30.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"landIce land", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_LIyr" + }, + "variable_entry":{ + "sftflf":{ + "cell_measures":"area: areacella", + "cell_methods":"area: time: mean", + "comment":"Percentage of grid cell covered by floating ice shelf, the component of the ice sheet that is flowing over sea water", + "dimensions":"longitude latitude time", + "frequency":"yr", + "long_name":"Floating Ice Shelf Area Percentage", + "modeling_realm":"landIce", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"sftflf", + "positive":"", + "standard_name":"floating_ice_shelf_area_fraction", + "type":"real", + "units":"%", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIyrAnt.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIyrAnt.json new file mode 100644 index 0000000000..838d8b649b --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIyrAnt.json @@ -0,0 +1,36 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"365.00", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"landIce", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_LIyrAnt" + }, + "variable_entry":{ + "acabf":{ + "cell_measures":"area: areacellg", + "cell_methods":"area: time: mean where ice_sheet", + "comment":"Specific mass balance means the net rate at which ice is added per unit area at the land ice surface. Computed as the total surface mass balance on the land ice portion of the grid cell divided by land ice area in the grid cell. A negative value means loss of ice", + "dimensions":"xant yant time", + "frequency":"yr", + "long_name":"Surface Mass Balance Flux", + "modeling_realm":"landIce", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"acabf", + "positive":"", + "standard_name":"land_ice_surface_specific_mass_balance_flux", + "type":"real", + "units":"kg m-2 s-1", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIyrC.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIyrC.json new file mode 100644 index 0000000000..a4dfd121f0 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIyrC.json @@ -0,0 +1,36 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"30.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"olevel olevhalf", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"landIce", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_LIyrC" + }, + "variable_entry":{ + "licalvf":{ + "cell_measures":"area: areacellg", + "cell_methods":"area: time: mean where ice_sheet", + "comment":"Computed as the flux of solid ice into the ocean divided by the area of the land portion of the grid cell", + "dimensions":"longitude latitude time2", + "frequency":"yrC", + "long_name":"Land Ice Calving Flux", + "modeling_realm":"landIce", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"licalvf", + "positive":"", + "standard_name":"land_ice_specific_mass_flux_due_to_calving", + "type":"real", + "units":"kg m-2 s-1", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIyrGre.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIyrGre.json new file mode 100644 index 0000000000..b7d85e69fb --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_LIyrGre.json @@ -0,0 +1,36 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"365.00", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"landIce", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_LIyrGre" + }, + "variable_entry":{ + "acabf":{ + "cell_measures":"area: areacellg", + "cell_methods":"area: time: mean where ice_sheet", + "comment":"Specific mass balance means the net rate at which ice is added per unit area at the land ice surface. Computed as the total surface mass balance on the land ice portion of the grid cell divided by land ice area in the grid cell. A negative value means loss of ice", + "dimensions":"xgre ygre time", + "frequency":"yr", + "long_name":"Surface Mass Balance Flux", + "modeling_realm":"landIce", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"acabf", + "positive":"", + "standard_name":"land_ice_surface_specific_mass_balance_flux", + "type":"real", + "units":"kg m-2 s-1", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Lday.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Lday.json new file mode 100644 index 0000000000..ee90871e89 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Lday.json @@ -0,0 +1,36 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"30.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"land", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_Lday" + }, + "variable_entry":{ + "friver":{ + "cell_measures":"area: areacella", + "cell_methods":"area: mean where sea time: mean", + "comment":"computed as the river flux of water into the ocean divided by the area of the ocean portion of the grid cell", + "dimensions":"longitude latitude time", + "frequency":"day", + "long_name":"Water Flux into Sea Water from Rivers", + "modeling_realm":"land", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"friver", + "positive":"", + "standard_name":"water_flux_into_sea_water_from_rivers", + "type":"real", + "units":"kg m-2 s-1", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Lyr.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Lyr.json new file mode 100644 index 0000000000..34c91a038d --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Lyr.json @@ -0,0 +1,36 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"30.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"land", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_Lyr" + }, + "variable_entry":{ + "mrros":{ + "cell_measures":"area: areacella", + "cell_methods":"area: mean where land time: mean", + "comment":"The total surface run off leaving the land portion of the grid cell (excluding drainage through the base of the soil model)", + "dimensions":"longitude latitude time", + "frequency":"yr", + "long_name":"Surface Runoff", + "modeling_realm":"land", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"mrros", + "positive":"", + "standard_name":"surface_runoff_flux", + "type":"real", + "units":"kg m-2 s-1", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Oday.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Oday.json new file mode 100644 index 0000000000..5ad507e7f8 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Oday.json @@ -0,0 +1,72 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"30.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"olevel olevhalf", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"ocean", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_Oday" + }, + "variable_entry":{ + "ficeberg2d":{ + "cell_measures":"area: areacello", + "cell_methods":"area: mean where sea time: mean", + "comment":"computed as the iceberg melt water flux into the ocean divided by the area of the ocean portion of the grid cell", + "dimensions":"longitude latitude time", + "frequency":"day", + "long_name":"Water Flux into Sea Water from Icebergs", + "modeling_realm":"ocean", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"ficeberg", + "positive":"", + "standard_name":"water_flux_into_sea_water_from_icebergs", + "type":"real", + "units":"kg m-2 s-1", + "valid_max":"", + "valid_min":"" + }, + "friver":{ + "cell_measures":"area: areacello", + "cell_methods":"area: mean where sea time: mean", + "comment":"computed as the river flux of water into the ocean divided by the area of the ocean portion of the grid cell", + "dimensions":"longitude latitude time", + "frequency":"day", + "long_name":"Water Flux into Sea Water from Rivers", + "modeling_realm":"ocean", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"friver", + "positive":"", + "standard_name":"water_flux_into_sea_water_from_rivers", + "type":"real", + "units":"kg m-2 s-1", + "valid_max":"", + "valid_min":"" + }, + "tos":{ + "cell_measures":"area: areacello", + "cell_methods":"area: mean where sea time: mean", + "comment":"Temperature of upper boundary of the liquid ocean, including temperatures below sea-ice and floating ice shelves", + "dimensions":"longitude latitude time", + "frequency":"day", + "long_name":"Sea Surface Temperature", + "modeling_realm":"ocean", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"tos", + "positive":"", + "standard_name":"sea_surface_temperature", + "type":"real", + "units":"degC", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Ofx.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Ofx.json new file mode 100644 index 0000000000..4e5d2d96bb --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Ofx.json @@ -0,0 +1,72 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"0.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"olevel", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"ocean", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_Ofx" + }, + "variable_entry":{ + "areacello":{ + "cell_measures":"", + "cell_methods":"area: sum", + "comment":"Horizontal area of ocean grid cells", + "dimensions":"longitude latitude", + "frequency":"fx", + "long_name":"Grid-Cell Area for Ocean Variables", + "modeling_realm":"ocean", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"areacello", + "positive":"", + "standard_name":"cell_area", + "type":"real", + "units":"m2", + "valid_max":"", + "valid_min":"" + }, + "sftof":{ + "cell_measures":"area: areacello", + "cell_methods":"area: mean", + "comment":"Percentage of horizontal area occupied by ocean", + "dimensions":"longitude latitude", + "frequency":"fx", + "long_name":"Sea Area Percentage", + "modeling_realm":"ocean", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"sftof", + "positive":"", + "standard_name":"sea_area_fraction", + "type":"real", + "units":"%", + "valid_max":"", + "valid_min":"" + }, + "ugrido":{ + "cell_measures":"--UGRID", + "cell_methods":"", + "comment":"Ony required for models with unstructured grids: this label should be used for a file containing information about the grid structure, following the UGRID convention.", + "dimensions":"longitude latitude", + "frequency":"fx", + "long_name":"UGRID Grid Specification", + "modeling_realm":"ocean", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"ugrido", + "positive":"", + "standard_name":"longitude", + "type":"real", + "units":"", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Omon.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Omon.json new file mode 100644 index 0000000000..797cbf0686 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Omon.json @@ -0,0 +1,72 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"30.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"olevel olevhalf", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"ocean", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_Omon" + }, + "variable_entry":{ + "tos":{ + "cell_measures":"area: areacello", + "cell_methods":"time: mean", + "comment":"", + "dimensions":"longitude latitude time", + "frequency":"mon", + "long_name":"Sea Surface Temperature", + "modeling_realm":"ocean", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"tos", + "positive":"", + "standard_name":"sea_surface_temperature", + "type":"real", + "units":"degC", + "valid_max":"", + "valid_min":"" + }, + "tosbcs":{ + "cell_measures":"area: areacello", + "cell_methods":"time: point", + "comment":"", + "dimensions":"longitude latitude time1", + "frequency":"mon", + "long_name":"Constructed mid-month Sea Surface Temperature", + "modeling_realm":"ocean", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"tosbcs", + "positive":"", + "standard_name":"sea_surface_temperature", + "type":"real", + "units":"degC", + "valid_max":"65", + "valid_min":"-25" + }, + "volcello":{ + "cell_measures":"area: areacello volume: volcello", + "cell_methods":"area: sum where sea time: mean", + "comment":"grid-cell volume ca. 2000.", + "dimensions":"longitude latitude olevel time", + "frequency":"mon", + "long_name":"Ocean Grid-Cell Volume", + "modeling_realm":"ocean", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"volcello", + "positive":"", + "standard_name":"ocean_volume", + "type":"real", + "units":"m3", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_OmonC.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_OmonC.json new file mode 100644 index 0000000000..f8bde3a800 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_OmonC.json @@ -0,0 +1,36 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"30.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"olevel olevhalf", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"ocean", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_OmonC" + }, + "variable_entry":{ + "sos":{ + "cell_measures":"area: areacello", + "cell_methods":"area: mean where sea time: mean", + "comment":"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. ", + "dimensions":"longitude latitude time2", + "frequency":"monC", + "long_name":"Sea Surface Salinity", + "modeling_realm":"ocean", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"sos", + "positive":"", + "standard_name":"sea_surface_salinity", + "type":"real", + "units":"0.001", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Oyr.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Oyr.json new file mode 100644 index 0000000000..e086742e10 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_Oyr.json @@ -0,0 +1,36 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"30.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"olevel olevhalf", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"ocean", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_Oyr" + }, + "variable_entry":{ + "so":{ + "cell_measures":"area: areacello volume: volcello", + "cell_methods":"area: mean where sea time: mean", + "comment":"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", + "dimensions":"longitude latitude time", + "frequency":"yr", + "long_name":"Sea Water Salinity", + "modeling_realm":"ocean", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"so", + "positive":"", + "standard_name":"sea_water_salinity", + "type":"real", + "units":"0.001", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_OyrC.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_OyrC.json new file mode 100644 index 0000000000..731777f104 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_OyrC.json @@ -0,0 +1,54 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"30.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"olevel olevhalf", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"ocean", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_OyrC" + }, + "variable_entry":{ + "uos":{ + "cell_measures":"--OPT", + "cell_methods":"area: mean where sea time: mean", + "comment":"Prognostic x-ward velocity component resolved by the model", + "dimensions":"longitude latitude time2", + "frequency":"yrC", + "long_name":"Sea Water X Velocity", + "modeling_realm":"ocean", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"uos", + "positive":"", + "standard_name":"sea_water_x_velocity", + "type":"real", + "units":"m s-1", + "valid_max":"", + "valid_min":"" + }, + "vos":{ + "cell_measures":"--OPT", + "cell_methods":"area: mean where sea time: mean", + "comment":"Prognostic y-ward velocity component resolved by the model", + "dimensions":"longitude latitude time2", + "frequency":"yrC", + "long_name":"Sea Water Y Velocity", + "modeling_realm":"ocean", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"vos", + "positive":"", + "standard_name":"sea_water_y_velocity", + "type":"real", + "units":"m s-1", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_SI3hrPt.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_SI3hrPt.json new file mode 100644 index 0000000000..ded33bc685 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_SI3hrPt.json @@ -0,0 +1,36 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"0.125000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"seaIce", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_SI3hrPt" + }, + "variable_entry":{ + "siconca":{ + "cell_measures":"area: areacella", + "cell_methods":"area: mean time: point", + "comment":"Percentage of grid cell covered by sea ice", + "dimensions":"longitude latitude time1 typesi", + "frequency":"3hrPt", + "long_name":"Sea-Ice Area Percentage (Atmospheric Grid)", + "modeling_realm":"seaIce", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"siconca", + "positive":"", + "standard_name":"sea_ice_area_fraction", + "type":"real", + "units":"%", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_SIday.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_SIday.json new file mode 100644 index 0000000000..fc737b186a --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_SIday.json @@ -0,0 +1,36 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"1.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"seaIce", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_SIday" + }, + "variable_entry":{ + "siconc":{ + "cell_measures":"area: areacello", + "cell_methods":"area: mean where sea time: mean", + "comment":"Percentage of grid cell covered by sea ice", + "dimensions":"longitude latitude time typesi", + "frequency":"day", + "long_name":"Sea-Ice Area Percentage (Ocean Grid)", + "modeling_realm":"seaIce", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"siconc", + "positive":"", + "standard_name":"sea_ice_area_fraction", + "type":"real", + "units":"%", + "valid_max":"", + "valid_min":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_SImon.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_SImon.json new file mode 100644 index 0000000000..21116cc498 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_SImon.json @@ -0,0 +1,54 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "approx_interval":"30.00000", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "generic_levels":"", + "int_missing_value":"-999", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "realm":"seaIce", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_SImon" + }, + "variable_entry":{ + "siconc":{ + "cell_measures":"area: areacello", + "cell_methods":"area: time: mean", + "comment":"Percentage of grid cell covered by sea ice", + "dimensions":"longitude latitude time", + "frequency":"mon", + "long_name":"Sea-Ice Area Percentage (Ocean Grid)", + "modeling_realm":"seaIce", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"siconc", + "positive":"", + "standard_name":"sea_ice_area_fraction", + "type":"real", + "units":"%", + "valid_max":"", + "valid_min":"" + }, + "siconcbcs":{ + "cell_measures":"area: areacello", + "cell_methods":"time: point", + "comment":"Percentage of grid cell covered by sea ice", + "dimensions":"longitude latitude time1", + "frequency":"mon", + "long_name":"Constructed mid-month Sea-ice area fraction", + "modeling_realm":"seaIce", + "ok_max_mean_abs":"", + "ok_min_mean_abs":"", + "out_name":"siconcbcs", + "positive":"", + "standard_name":"sea_ice_area_fraction", + "type":"real", + "units":"%", + "valid_max":"2000", + "valid_min":"-2000" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_coordinate.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_coordinate.json new file mode 100644 index 0000000000..6e36ddae9e --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_coordinate.json @@ -0,0 +1,3226 @@ +{ + "axis_entry":{ + "alt16":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"altitude", + "must_have_bounds":"yes", + "out_name":"alt16", + "positive":"up", + "requested":[ + "0", + "250", + "750", + "1250", + "1750", + "2250", + "2750", + "3500", + "4500", + "6000", + "8000", + "10000", + "12000", + "14500", + "16000", + "18000" + ], + "requested_bounds":[ + "-99000.0", + "0.0", + "0.0", + "500.0", + "500.0", + "1000.0", + "1000.0", + "1500.0", + "1500.0", + "2000.0", + "2000.0", + "2500.0", + "2500.0", + "3000.0", + "3000.0", + "4000.0", + "4000.0", + "5000.0", + "5000.0", + "7000.0", + "7000.0", + "9000.0", + "9000.0", + "11000.0", + "11000.0", + "13000.0", + "13000.0", + "15000.0", + "15000.0", + "17000.0", + "17000.0", + "99000.0" + ], + "standard_name":"altitude", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "alt40":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"altitude", + "must_have_bounds":"yes", + "out_name":"alt40", + "positive":"up", + "requested":[ + "240.", + "720.", + "1200.", + "1680.", + "2160.", + "2640.", + "3120.", + "3600.", + "4080.", + "4560.", + "5040.", + "5520.", + "6000.", + "6480.", + "6960.", + "7440.", + "7920.", + "8400.", + "8880.", + "9360.", + "9840.", + "10320.", + "10800.", + "11280.", + "11760.", + "12240.", + "12720.", + "13200.", + "13680.", + "14160.", + "14640.", + "15120.", + "15600.", + "16080.", + "16560.", + "17040.", + "17520.", + "18000.", + "18480.", + "18960." + ], + "requested_bounds":[ + "0.0", + "480.0", + "480.0", + "960.0", + "960.0", + "1440.0", + "1440.0", + "1920.0", + "1920.0", + "2400.0", + "2400.0", + "2880.0", + "2880.0", + "3360.0", + "3360.0", + "3840.0", + "3840.0", + "4320.0", + "4320.0", + "4800.0", + "4800.0", + "5280.0", + "5280.0", + "5760.0", + "5760.0", + "6240.0", + "6240.0", + "6720.0", + "6720.0", + "7200.0", + "7200.0", + "7680.0", + "7680.0", + "8160.0", + "8160.0", + "8640.0", + "8640.0", + "9120.0", + "9120.0", + "9600.0", + "9600.0", + "10080.0", + "10080.0", + "10560.0", + "10560.0", + "11040.0", + "11040.0", + "11520.0", + "11520.0", + "12000.0", + "12000.0", + "12480.0", + "12480.0", + "12960.0", + "12960.0", + "13440.0", + "13440.0", + "13920.0", + "13920.0", + "14400.0", + "14400.0", + "14880.0", + "14880.0", + "15360.0", + "15360.0", + "15840.0", + "15840.0", + "16320.0", + "16320.0", + "16800.0", + "16800.0", + "17280.0", + "17280.0", + "17760.0", + "17760.0", + "18240.0", + "18240.0", + "18720.0", + "18720.0", + "19200.0" + ], + "standard_name":"altitude", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "alternate_hybrid_sigma":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"p = ap + b*ps", + "generic_level_name":"alevel", + "long_name":"hybrid sigma pressure coordinate", + "must_have_bounds":"yes", + "out_name":"lev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"atmosphere_hybrid_sigma_pressure_coordinate", + "stored_direction":"decreasing", + "tolerance":"", + "type":"", + "units":"1", + "valid_max":"1.0", + "valid_min":"0.0", + "value":"", + "z_bounds_factors":"ap: ap_bnds b: b_bnds ps: ps", + "z_factors":"ap: ap b: b ps: ps" + }, + "alternate_hybrid_sigma_half":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"p = ap + b*ps", + "generic_level_name":"alevhalf", + "long_name":"hybrid sigma pressure coordinate", + "must_have_bounds":"no", + "out_name":"lev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"atmosphere_hybrid_sigma_pressure_coordinate", + "stored_direction":"decreasing", + "tolerance":"", + "type":"", + "units":"1", + "valid_max":"1.0", + "valid_min":"0.0", + "value":"", + "z_bounds_factors":"", + "z_factors":"ap: ap b: b ps: ps" + }, + "basin":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"ocean basin", + "must_have_bounds":"no", + "out_name":"basin", + "positive":"", + "requested":[ + "atlantic_arctic_ocean", + "indian_pacific_ocean", + "global_ocean" + ], + "requested_bounds":"", + "standard_name":"region", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "dbze":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"CloudSat simulator equivalent radar reflectivity factor", + "must_have_bounds":"yes", + "out_name":"dbze", + "positive":"", + "requested":[ + "-47.5", + "-42.5", + "-37.5", + "-32.5", + "-27.5", + "-22.5", + "-17.5", + "-12.5", + "-7.5", + "-2.5", + "2.5", + "7.5", + "12.5", + "17.5", + "22.5" + ], + "requested_bounds":[ + "-50.0", + "-45.0", + "-45.0", + "-40.0", + "-40.0", + "-35.0", + "-35.0", + "-30.0", + "-30.0", + "-25.0", + "-25.0", + "-20.0", + "-20.0", + "-15.0", + "-15.0", + "-10.0", + "-10.0", + "-5.0", + "-5.0", + "0.0", + "0.0", + "5.0", + "5.0", + "10.0", + "10.0", + "15.0", + "15.0", + "20.0", + "20.0", + "25.0" + ], + "standard_name":"equivalent_reflectivity_factor", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"dBZ", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "depth0m":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"depth", + "must_have_bounds":"no", + "out_name":"depth", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"depth", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"100.0", + "valid_min":"0.0", + "value":"0.", + "z_bounds_factors":"", + "z_factors":"" + }, + "depth100m":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"depth", + "must_have_bounds":"no", + "out_name":"depth", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"depth", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"120.0", + "valid_min":"80.0", + "value":"100.", + "z_bounds_factors":"", + "z_factors":"" + }, + "depth2000m":{ + "axis":"Z", + "bounds_values":"0.0 2000.0", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"depth", + "must_have_bounds":"yes", + "out_name":"depth", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"depth", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"2000.0", + "valid_min":"0.0", + "value":"1000.", + "z_bounds_factors":"", + "z_factors":"" + }, + "depth300m":{ + "axis":"Z", + "bounds_values":"0.0 300.0", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"depth", + "must_have_bounds":"yes", + "out_name":"depth", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"depth", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"300.0", + "valid_min":"0.0", + "value":"150.", + "z_bounds_factors":"", + "z_factors":"" + }, + "depth700m":{ + "axis":"Z", + "bounds_values":"0.0 700.0", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"depth", + "must_have_bounds":"yes", + "out_name":"depth", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"depth", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"700.0", + "valid_min":"0.0", + "value":"350.", + "z_bounds_factors":"", + "z_factors":"" + }, + "depth_coord":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"olevel", + "long_name":"ocean depth coordinate", + "must_have_bounds":"yes", + "out_name":"lev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"depth", + "stored_direction":"increasing", + "tolerance":"", + "type":"", + "units":"m", + "valid_max":"12000.0", + "valid_min":"0.0", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "depth_coord_half":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"olevhalf", + "long_name":"ocean depth coordinate", + "must_have_bounds":"no", + "out_name":"lev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"depth", + "stored_direction":"increasing", + "tolerance":"", + "type":"", + "units":"m", + "valid_max":"12000.0", + "valid_min":"0.0", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "effectRadIc":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Effective Radius [Values to be specified]", + "must_have_bounds":"yes", + "out_name":"effectRadIc", + "positive":"", + "requested":[ + "5.", + "15.", + "25.", + "35.", + "50.", + "75." + ], + "requested_bounds":[ + "0.0", + "10.0", + "10.0", + "20.0", + "20.0", + "30.0", + "30.0", + "40.0", + "40.0", + "60.0", + "60.0", + "90.0" + ], + "standard_name":"effective_radius_of_convective_cloud_ice_particles", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"micron", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "effectRadLi":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Effective Radius [Values to be specified]", + "must_have_bounds":"yes", + "out_name":"effectRadLi", + "positive":"", + "requested":[ + "4.", + "9.", + "11.5", + "14.", + "17.5", + "25." + ], + "requested_bounds":[ + "0.0", + "8.0", + "8.0", + "10.0", + "10.0", + "13.0", + "13.0", + "15.0", + "15.0", + "20.0", + "20.0", + "30.0" + ], + "standard_name":"effective_radius_of_cloud_liquid_water_particles", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"micron", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "gridlatitude":{ + "axis":"Y", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Grid Latitude", + "must_have_bounds":"yes", + "out_name":"rlat", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"grid_latitude", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"degrees", + "valid_max":"90.0", + "valid_min":"-90.0", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "height100m":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"height", + "must_have_bounds":"no", + "out_name":"height", + "positive":"up", + "requested":"", + "requested_bounds":"", + "standard_name":"height", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"120.0", + "valid_min":"80.0", + "value":"100.", + "z_bounds_factors":"", + "z_factors":"" + }, + "height10m":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"height", + "must_have_bounds":"no", + "out_name":"height", + "positive":"up", + "requested":"", + "requested_bounds":"", + "standard_name":"height", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"30.0", + "valid_min":"1.0", + "value":"10.", + "z_bounds_factors":"", + "z_factors":"" + }, + "height2m":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"height", + "must_have_bounds":"no", + "out_name":"height", + "positive":"up", + "requested":"", + "requested_bounds":"", + "standard_name":"height", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"10.0", + "valid_min":"1.0", + "value":"2.", + "z_bounds_factors":"", + "z_factors":"" + }, + "hybrid_height":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"z = a + b*orog", + "generic_level_name":"alevel", + "long_name":"hybrid height coordinate", + "must_have_bounds":"yes", + "out_name":"lev", + "positive":"up", + "requested":"", + "requested_bounds":"", + "standard_name":"atmosphere_hybrid_height_coordinate", + "stored_direction":"increasing", + "tolerance":"", + "type":"", + "units":"m", + "valid_max":"", + "valid_min":"0.0", + "value":"", + "z_bounds_factors":"a: lev_bnds b: b_bnds orog: orog", + "z_factors":"a: lev b: b orog: orog" + }, + "hybrid_height_half":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"z = a + b*orog", + "generic_level_name":"alevhalf", + "long_name":"hybrid height coordinate", + "must_have_bounds":"no", + "out_name":"lev", + "positive":"up", + "requested":"", + "requested_bounds":"", + "standard_name":"atmosphere_hybrid_height_coordinate", + "stored_direction":"increasing", + "tolerance":"", + "type":"", + "units":"m", + "valid_max":"", + "valid_min":"0.0", + "value":"", + "z_bounds_factors":"", + "z_factors":"a: lev b: b orog: orog" + }, + "iceband":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Ice Depth Band", + "must_have_bounds":"yes", + "out_name":"iceband", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"sea_ice_thickness", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "lambda550nm":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Radiation Wavelength 550 nanometers", + "must_have_bounds":"no", + "out_name":"wavelength", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"radiation_wavelength", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"nm", + "valid_max":"", + "valid_min":"", + "value":"550.0", + "z_bounds_factors":"", + "z_factors":"" + }, + "landUse":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Land use type", + "must_have_bounds":"no", + "out_name":"landuse", + "positive":"", + "requested":[ + "primary_and_secondary_land", + "pastures", + "crops", + "urban" + ], + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "latitude":{ + "axis":"Y", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Latitude", + "must_have_bounds":"yes", + "out_name":"lat", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"latitude", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"degrees_north", + "valid_max":"90.0", + "valid_min":"-90.0", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "longitude":{ + "axis":"X", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Longitude", + "must_have_bounds":"yes", + "out_name":"lon", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"longitude", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"degrees_east", + "valid_max":"360.0", + "valid_min":"0.0", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "ocean_sigma":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"z(n,k,j,i) = eta(n,j,i) + sigma(k)*(depth(j,i)+eta(n,j,i))", + "generic_level_name":"olevel", + "long_name":"ocean sigma coordinate", + "must_have_bounds":"yes", + "out_name":"lev", + "positive":"up", + "requested":"", + "requested_bounds":"", + "standard_name":"ocean_sigma_coordinate", + "stored_direction":"decreasing", + "tolerance":"", + "type":"", + "units":"", + "valid_max":"0.0", + "valid_min":"-1.0", + "value":"", + "z_bounds_factors":"sigma: lev_bnds eta: eta depth: depth", + "z_factors":"sigma: lev eta: eta depth: depth" + }, + "ocean_sigma_half":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"z(n,k,j,i) = eta(n,j,i) + sigma(k)*(depth(j,i)+eta(n,j,i))", + "generic_level_name":"olevhalf", + "long_name":"ocean sigma coordinate", + "must_have_bounds":"no", + "out_name":"lev", + "positive":"up", + "requested":"", + "requested_bounds":"", + "standard_name":"ocean_sigma_coordinate", + "stored_direction":"decreasing", + "tolerance":"", + "type":"", + "units":"", + "valid_max":"0.0", + "valid_min":"-1.0", + "value":"", + "z_bounds_factors":"", + "z_factors":"sigma: lev eta: eta depth: depth" + }, + "ocean_sigma_z":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"for k <= nsigma: z(n,k,j,i) = eta(n,j,i) + sigma(k)*(min(depth_c,depth(j,i))+eta(n,j,i)) ; for k > nsigma: z(n,k,j,i) = zlev(k)", + "generic_level_name":"olevel", + "long_name":"ocean sigma over z coordinate", + "must_have_bounds":"yes", + "out_name":"lev", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"ocean_sigma_z_coordinate", + "stored_direction":"", + "tolerance":"", + "type":"", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"sigma: lev_bnds eta: eta depth: depth depth_c: depth_c nsigma: nsigma zlev: zlev_bnds", + "z_factors":"sigma: lev eta: eta depth: depth depth_c: depth_c nsigma: nsigma zlev: zlev" + }, + "ocean_sigma_z_half":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"for k <= nsigma: z(n,k,j,i) = eta(n,j,i) + sigma(k)*(min(depth_c,depth(j,i))+eta(n,j,i)) ; for k > nsigma: z(n,k,j,i) = zlev(k)", + "generic_level_name":"olevhalf", + "long_name":"ocean sigma over z coordinate", + "must_have_bounds":"no", + "out_name":"lev", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"ocean_sigma_z_coordinate", + "stored_direction":"", + "tolerance":"", + "type":"", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"sigma: lev eta: eta depth: depth depth_c: depth_c nsigma: nsigma zlev: zlev" + }, + "olayer100m":{ + "axis":"Z", + "bounds_values":"0.0 100.0", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"depth", + "must_have_bounds":"yes", + "out_name":"depth", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"depth", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"100.0", + "valid_min":"0.0", + "value":"50.", + "z_bounds_factors":"", + "z_factors":"" + }, + "oline":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"ocean passage", + "must_have_bounds":"no", + "out_name":"line", + "positive":"", + "requested":[ + "barents_opening", + "bering_strait", + "windward_passage", + "davis_strait", + "denmark_strait", + "drake_passage", + "english_channel", + "faroe_scotland_channel", + "florida_bahamas_strait", + "fram_strait", + "gibraltar_strait", + "iceland_faroe_channel", + "indonesian_throughflow", + "mozambique_channel", + "pacific_equatorial_undercurrent", + "taiwan_luzon_straits" + ], + "requested_bounds":"", + "standard_name":"region", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "p10":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"1000.", + "z_bounds_factors":"", + "z_factors":"" + }, + "p100":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"10000.", + "z_bounds_factors":"", + "z_factors":"" + }, + "p1000":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"100000.", + "z_bounds_factors":"", + "z_factors":"" + }, + "p200":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"20000.", + "z_bounds_factors":"", + "z_factors":"" + }, + "p220":{ + "axis":"Z", + "bounds_values":"44000.0 0.0", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"yes", + "out_name":"plev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"decreasing", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"22000.", + "z_bounds_factors":"", + "z_factors":"" + }, + "p500":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"50000.", + "z_bounds_factors":"", + "z_factors":"" + }, + "p560":{ + "axis":"Z", + "bounds_values":"68000.0 44000.0", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"yes", + "out_name":"plev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"decreasing", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"56000.", + "z_bounds_factors":"", + "z_factors":"" + }, + "p700":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"70000.", + "z_bounds_factors":"", + "z_factors":"" + }, + "p840":{ + "axis":"Z", + "bounds_values":"100000.0 68000.0", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"yes", + "out_name":"plev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"decreasing", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"84000.", + "z_bounds_factors":"", + "z_factors":"" + }, + "p850":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"85000.", + "z_bounds_factors":"", + "z_factors":"" + }, + "pl700":{ + "axis":"Z", + "bounds_values":"85000.0 60000.0", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"yes", + "out_name":"plev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"70000.", + "z_bounds_factors":"", + "z_factors":"" + }, + "plev19":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":[ + "100000.", + "92500.", + "85000.", + "70000.", + "60000.", + "50000.", + "40000.", + "30000.", + "25000.", + "20000.", + "15000.", + "10000.", + "7000.", + "5000.", + "3000.", + "2000.", + "1000.", + "500.", + "100." + ], + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"decreasing", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "plev23":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":[ + "100000.", + "92500.", + "85000.", + "70000.", + "60000.", + "50000.", + "40000.", + "30000.", + "25000.", + "20000.", + "15000.", + "10000.", + "7000.", + "5000.", + "3000.", + "2000.", + "1000.", + "700.", + "500.", + "300.", + "200.", + "100.", + "40." + ], + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"decreasing", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "plev27":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":[ + "100000.", + "97500.", + "95000.", + "92500.", + "90000.", + "87500.", + "85000.", + "82500.", + "80000.", + "77500.", + "75000.", + "70000.", + "65000.", + "60000.", + "55000.", + "50000.", + "45000.", + "40000.", + "35000.", + "30000.", + "25000.", + "22500.", + "20000.", + "17500.", + "15000.", + "12500.", + "10000." + ], + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"decreasing", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "plev3":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":[ + "85000.", + "50000.", + "25000." + ], + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"decreasing", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "plev39":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":[ + "100000.", + "92500.", + "85000.", + "70000.", + "60000.", + "50000.", + "40000.", + "30000.", + "25000.", + "20000.", + "17000.", + "15000.", + "13000.", + "11500.", + "10000.", + "9000.", + "8000.", + "7000.", + "5000.", + "3000.", + "2000.", + "1500.", + "1000.", + "700.", + "500.", + "300.", + "200.", + "150.", + "100.", + "70.", + "50.", + "40.", + "30.", + "20.", + "15.", + "10.", + "7.", + "5.", + "3." + ], + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"decreasing", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "plev3h":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":[ + "10000.", + "1000.", + "100." + ], + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"decreasing", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "plev4":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":[ + "92500.", + "85000.", + "50000.", + "25000." + ], + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"decreasing", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "plev7c":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"yes", + "out_name":"plev", + "positive":"down", + "requested":[ + "90000.", + "74000.", + "62000.", + "50000.", + "37500.", + "24500.", + "9000." + ], + "requested_bounds":[ + "100000.0", + "80000.0", + "80000.0", + "68000.0", + "68000.0", + "56000.0", + "56000.0", + "44000.0", + "44000.0", + "31000.0", + "31000.0", + "18000.0", + "18000.0", + "0.0" + ], + "standard_name":"air_pressure", + "stored_direction":"decreasing", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "plev7h":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":[ + "92500.", + "85000.", + "70000.", + "60000.", + "50000.", + "25000.", + "5000." + ], + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"decreasing", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "plev8":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"pressure", + "must_have_bounds":"no", + "out_name":"plev", + "positive":"down", + "requested":[ + "100000.", + "85000.", + "70000.", + "50000.", + "25000.", + "10000.", + "5000.", + "1000." + ], + "requested_bounds":"", + "standard_name":"air_pressure", + "stored_direction":"decreasing", + "tolerance":"", + "type":"double", + "units":"Pa", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "rho":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"potential density referenced to 2000 dbar", + "must_have_bounds":"yes", + "out_name":"rho", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"sea_water_potential_density", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"kg m-3", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "scatratio":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"lidar backscattering ratio", + "must_have_bounds":"yes", + "out_name":"scatratio", + "positive":"", + "requested":[ + "0.005", + "0.605", + "2.1", + "4.", + "6.", + "8.5", + "12.5", + "17.5", + "22.5", + "27.5", + "35.", + "45.", + "55.", + "70.", + "50040." + ], + "requested_bounds":[ + "0.0", + "0.01", + "0.01", + "1.2", + "1.2", + "3.0", + "3.0", + "5.0", + "5.0", + "7.0", + "7.0", + "10.0", + "10.0", + "15.0", + "15.0", + "20.0", + "20.0", + "25.0", + "25.0", + "30.0", + "30.0", + "40.0", + "40.0", + "50.0", + "50.0", + "60.0", + "60.0", + "80.0", + "80.0", + "100000.0" + ], + "standard_name":"backscattering_ratio_in_air", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"1", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "scatter180":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Scattering Angle", + "must_have_bounds":"no", + "out_name":"scatangle", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"scattering_angle", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"degree", + "valid_max":"", + "valid_min":"", + "value":"180.0", + "z_bounds_factors":"", + "z_factors":"" + }, + "sdepth":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"depth", + "must_have_bounds":"yes", + "out_name":"depth", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"depth", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"200.0", + "valid_min":"0.0", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "sdepth1":{ + "axis":"Z", + "bounds_values":"0.0 0.1", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"depth", + "must_have_bounds":"yes", + "out_name":"depth", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"depth", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"0.1", + "valid_min":"0.0", + "value":"0.05", + "z_bounds_factors":"", + "z_factors":"" + }, + "sdepth10":{ + "axis":"Z", + "bounds_values":"0.0 1.0", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"depth", + "must_have_bounds":"yes", + "out_name":"depth", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"depth", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"1.0", + "valid_min":"0.0", + "value":"0.5", + "z_bounds_factors":"", + "z_factors":"" + }, + "siline":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"ocean passage", + "must_have_bounds":"no", + "out_name":"line", + "positive":"", + "requested":[ + "fram_strait,", + "canadian_archipelego,", + "barents_opening,", + "bering_strait" + ], + "requested_bounds":"", + "standard_name":"region", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "site":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"site index", + "must_have_bounds":"no", + "out_name":"site", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"", + "stored_direction":"", + "tolerance":"", + "type":"integer", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "sithreshold":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Sea Ice Area Fraction Threshold", + "must_have_bounds":"no", + "out_name":"threshold", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"sea_ice_area_fraction", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"%", + "valid_max":"", + "valid_min":"", + "value":"15.0", + "z_bounds_factors":"", + "z_factors":"" + }, + "snowband":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Snow Depth Band", + "must_have_bounds":"yes", + "out_name":"snowband", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"surface_snow_thickness", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"m", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "soilpools":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Soil Pools", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "spectband":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Spectral Frequency Band", + "must_have_bounds":"yes", + "out_name":"spectband", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"sensor_band_central_radiation_wavenumber", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"m-1", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "standard_hybrid_sigma":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"p = a*p0 + b*ps", + "generic_level_name":"alevel", + "long_name":"hybrid sigma pressure coordinate", + "must_have_bounds":"yes", + "out_name":"lev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"atmosphere_hybrid_sigma_pressure_coordinate", + "stored_direction":"decreasing", + "tolerance":"", + "type":"", + "units":"1", + "valid_max":"1.0", + "valid_min":"0.0", + "value":"", + "z_bounds_factors":"p0: p0 a: a_bnds b: b_bnds ps: ps", + "z_factors":"p0: p0 a: a b: b ps: ps" + }, + "standard_hybrid_sigma_half":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"p = a*p0 + b*ps", + "generic_level_name":"alevhalf", + "long_name":"hybrid sigma pressure coordinate", + "must_have_bounds":"no", + "out_name":"lev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"atmosphere_hybrid_sigma_pressure_coordinate", + "stored_direction":"decreasing", + "tolerance":"", + "type":"", + "units":"1", + "valid_max":"1.0", + "valid_min":"0.0", + "value":"", + "z_bounds_factors":"", + "z_factors":"p0: p0 a: a b: b ps: ps" + }, + "standard_sigma":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"p = ptop + sigma*(ps - ptop)", + "generic_level_name":"alevel", + "long_name":"sigma coordinate", + "must_have_bounds":"yes", + "out_name":"lev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"atmosphere_sigma_coordinate", + "stored_direction":"decreasing", + "tolerance":"", + "type":"", + "units":"", + "valid_max":"1.0", + "valid_min":"0.0", + "value":"", + "z_bounds_factors":"ptop: ptop sigma: lev_bnds ps: ps", + "z_factors":"ptop: ptop sigma: lev ps: ps" + }, + "standard_sigma_half":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"p = ptop + sigma*(ps - ptop)", + "generic_level_name":"alevhalf", + "long_name":"sigma coordinate", + "must_have_bounds":"no", + "out_name":"lev", + "positive":"down", + "requested":"", + "requested_bounds":"", + "standard_name":"atmosphere_sigma_coordinate", + "stored_direction":"decreasing", + "tolerance":"", + "type":"", + "units":"", + "valid_max":"1.0", + "valid_min":"0.0", + "value":"", + "z_bounds_factors":"", + "z_factors":"ptop: ptop sigma: lev ps: ps" + }, + "stempzero":{ + "axis":"Z", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Soil Temperature Zero", + "must_have_bounds":"no", + "out_name":"stempzero", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"soil_temperature", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"degC", + "valid_max":"", + "valid_min":"", + "value":"0.0", + "z_bounds_factors":"", + "z_factors":"" + }, + "sza5":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"solar zenith angle", + "must_have_bounds":"no", + "out_name":"sza", + "positive":"", + "requested":[ + "0.", + "20.", + "40.", + "60.", + "80." + ], + "requested_bounds":"", + "standard_name":"solar_zenith_angle", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"degree", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "tau":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"cloud optical thickness", + "must_have_bounds":"yes", + "out_name":"tau", + "positive":"", + "requested":[ + "0.15", + "0.8", + "2.45", + "6.5", + "16.2", + "41.5", + "100." + ], + "requested_bounds":[ + "0.0", + "0.3", + "0.3", + "1.3", + "1.3", + "3.6", + "3.6", + "9.4", + "9.4", + "23.0", + "23.0", + "60.0", + "60.0", + "100000.0" + ], + "standard_name":"atmosphere_optical_thickness_due_to_cloud", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"1", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "time":{ + "axis":"T", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"time", + "must_have_bounds":"yes", + "out_name":"time", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"time", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"days since ?", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "time1":{ + "axis":"T", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"time", + "must_have_bounds":"no", + "out_name":"time", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"time", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"days since ?", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "time2":{ + "axis":"T", + "bounds_values":"", + "climatology":"yes", + "formula":"", + "generic_level_name":"", + "long_name":"time", + "must_have_bounds":"yes", + "out_name":"time", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"time", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"days since ?", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "time3":{ + "axis":"T", + "bounds_values":"", + "climatology":"yes", + "formula":"", + "generic_level_name":"", + "long_name":"time", + "must_have_bounds":"yes", + "out_name":"time", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"time", + "stored_direction":"increasing", + "tolerance":"", + "type":"double", + "units":"days since ?", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "typebare":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"surface type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"bare_ground", + "z_bounds_factors":"", + "z_factors":"" + }, + "typeburnt":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Burnt vegetation area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"burnt_vegetation", + "z_bounds_factors":"", + "z_factors":"" + }, + "typec3crop":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"surface type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"crops_of_c3_plant_functional_types", + "z_bounds_factors":"", + "z_factors":"" + }, + "typec3natg":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"C3 Natural grass area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"natural_grasses_of_c3_plant_functional_types", + "z_bounds_factors":"", + "z_factors":"" + }, + "typec3pastures":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"C3 Pastures area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"pastures_of_c3_plant_functional_types", + "z_bounds_factors":"", + "z_factors":"" + }, + "typec3pft":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"surface type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"c3_plant_functional_types", + "z_bounds_factors":"", + "z_factors":"" + }, + "typec4crop":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"surface type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"crops_of_c4_plant_functional_types", + "z_bounds_factors":"", + "z_factors":"" + }, + "typec4natg":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"C4 Natural grass area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"natural_grasses_of_c4_plant_functional_types", + "z_bounds_factors":"", + "z_factors":"" + }, + "typec4pastures":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"C4 Pastures area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"pastures_of_c4_plant_functional_types", + "z_bounds_factors":"", + "z_factors":"" + }, + "typec4pft":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"surface type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"c4_plant_functional_types", + "z_bounds_factors":"", + "z_factors":"" + }, + "typecloud":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Cloud area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"cloud", + "z_bounds_factors":"", + "z_factors":"" + }, + "typecrop":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Crop area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"crops", + "z_bounds_factors":"", + "z_factors":"" + }, + "typefis":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Floating Ice Shelf area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"floating_ice_shelf", + "z_bounds_factors":"", + "z_factors":"" + }, + "typegis":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Grounded Ice Sheet area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"grounded_ice_sheet", + "z_bounds_factors":"", + "z_factors":"" + }, + "typeland":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Land area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"land", + "z_bounds_factors":"", + "z_factors":"" + }, + "typeli":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Land Ice area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"land_ice", + "z_bounds_factors":"", + "z_factors":"" + }, + "typemp":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Melt pond area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"sea_ice_melt_pond", + "z_bounds_factors":"", + "z_factors":"" + }, + "typenatgr":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Natural grass area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"natural_grasses", + "z_bounds_factors":"", + "z_factors":"" + }, + "typenwd":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Non-Woody Vegetation area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"herbaceous_vegetation", + "z_bounds_factors":"", + "z_factors":"" + }, + "typepasture":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Pasture area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"pastures", + "z_bounds_factors":"", + "z_factors":"" + }, + "typepdec":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"surface type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"primary_deciduous_trees", + "z_bounds_factors":"", + "z_factors":"" + }, + "typepever":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"surface type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"primary_evergreen_trees", + "z_bounds_factors":"", + "z_factors":"" + }, + "typeresidual":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Residual area", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"residual", + "z_bounds_factors":"", + "z_factors":"" + }, + "typesdec":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"surface type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"secondary_decidous_trees", + "z_bounds_factors":"", + "z_factors":"" + }, + "typesea":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Ocean area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"sea", + "z_bounds_factors":"", + "z_factors":"" + }, + "typesever":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"surface type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"secondary_evergreen_trees", + "z_bounds_factors":"", + "z_factors":"" + }, + "typeshrub":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Shrub area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"shrubs", + "z_bounds_factors":"", + "z_factors":"" + }, + "typesi":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Sea Ice area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"sea_ice", + "z_bounds_factors":"", + "z_factors":"" + }, + "typesirdg":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Sea Ice Ridge area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"sea_ice_ridges", + "z_bounds_factors":"", + "z_factors":"" + }, + "typetree":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Tree area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"trees", + "z_bounds_factors":"", + "z_factors":"" + }, + "typetreebd":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Tree area type (Broadleaf Deciduous)", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"trees", + "z_bounds_factors":"", + "z_factors":"" + }, + "typetreebe":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Tree area type (Broadleaf Evergreen)", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"trees", + "z_bounds_factors":"", + "z_factors":"" + }, + "typetreend":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Tree area type (Needleleaf Deciduous)", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"trees", + "z_bounds_factors":"", + "z_factors":"" + }, + "typetreene":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Tree area type (Needleleaf Evergreen)", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"trees", + "z_bounds_factors":"", + "z_factors":"" + }, + "typeveg":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Vegetation area type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"vegetation", + "z_bounds_factors":"", + "z_factors":"" + }, + "typewetla":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Wetland", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"area_type", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"wetland", + "z_bounds_factors":"", + "z_factors":"" + }, + "vegtype":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Vegetation or Land Cover Type", + "must_have_bounds":"no", + "out_name":"type", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"", + "stored_direction":"", + "tolerance":"", + "type":"character", + "units":"", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "xant":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"X-coordinate of Antarctic grid", + "must_have_bounds":"no", + "out_name":"xant", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"projection_x_coordinate", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"km", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "xgre":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"X-coordinate of Greenland grid", + "must_have_bounds":"no", + "out_name":"xgre", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"projection_x_coordinate", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"km", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "yant":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Y-coordinate of Antarctic grid", + "must_have_bounds":"no", + "out_name":"yant", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"projection_y_coordinate", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"km", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + }, + "ygre":{ + "axis":"", + "bounds_values":"", + "climatology":"", + "formula":"", + "generic_level_name":"", + "long_name":"Y-coordinate of Greenland grid", + "must_have_bounds":"no", + "out_name":"ygre", + "positive":"", + "requested":"", + "requested_bounds":"", + "standard_name":"projection_y_coordinate", + "stored_direction":"", + "tolerance":"", + "type":"double", + "units":"km", + "valid_max":"", + "valid_min":"", + "value":"", + "z_bounds_factors":"", + "z_factors":"" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_formula_terms.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_formula_terms.json new file mode 100644 index 0000000000..7693529ea3 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_formula_terms.json @@ -0,0 +1,204 @@ +{ + "formula_entry":{ + "a":{ + "dimensions":"alevel", + "long_name":"vertical coordinate formula term: a", + "out_name":"a", + "standard_name":"", + "type":"double", + "units":"" + }, + "a_bnds":{ + "dimensions":"alevel", + "long_name":"vertical coordinate formula term: a(k+1/2)", + "out_name":"a_bnds", + "standard_name":"", + "type":"double", + "units":"" + }, + "a_half":{ + "dimensions":"alevhalf", + "long_name":"vertical coordinate formula term: a(k)", + "out_name":"a", + "standard_name":"", + "type":"double", + "units":"" + }, + "ap":{ + "dimensions":"alevel", + "long_name":"vertical coordinate formula term: ap", + "out_name":"ap", + "standard_name":"", + "type":"double", + "units":"Pa" + }, + "ap_bnds":{ + "dimensions":"alevel", + "long_name":"vertical coordinate formula term: ap(k+1/2)", + "out_name":"ap_bnds", + "standard_name":"", + "type":"double", + "units":"Pa" + }, + "ap_half":{ + "dimensions":"alevhalf", + "long_name":"vertical coordinate formula term: ap(k)", + "out_name":"ap", + "standard_name":"", + "type":"double", + "units":"Pa" + }, + "b":{ + "dimensions":"alevel", + "long_name":"vertical coordinate formula term: b", + "out_name":"b", + "standard_name":"", + "type":"double", + "units":"" + }, + "b_bnds":{ + "dimensions":"alevel", + "long_name":"vertical coordinate formula term: b(k+1/2)", + "out_name":"b_bnds", + "standard_name":"", + "type":"double", + "units":"" + }, + "b_half":{ + "dimensions":"alevhalf", + "long_name":"vertical coordinate formula term: b(k)", + "out_name":"b", + "standard_name":"", + "type":"double", + "units":"" + }, + "depth":{ + "dimensions":"longitude latitude", + "long_name":"Sea Floor Depth", + "out_name":"depth", + "standard_name":"", + "type":"real", + "units":"m" + }, + "depth_c":{ + "dimensions":"", + "long_name":"vertical coordinate formula term: depth_c", + "out_name":"depth_c", + "standard_name":"", + "type":"double", + "units":"m" + }, + "eta":{ + "dimensions":"longitude latitude time", + "long_name":"Sea Surface Height", + "out_name":"eta", + "standard_name":"", + "type":"real", + "units":"m" + }, + "eta2":{ + "dimensions":"longitude latitude time2", + "long_name":"Sea Surface Height", + "out_name":"eta", + "standard_name":"", + "type":"real", + "units":"m" + }, + "k_c":{ + "dimensions":"", + "long_name":"vertical coordinate formula term: k_c", + "out_name":"k_c", + "standard_name":"", + "type":"integer", + "units":"" + }, + "nsigma":{ + "dimensions":"", + "long_name":"vertical coordinate formula term: nsigma", + "out_name":"nsigma", + "standard_name":"", + "type":"integer", + "units":"" + }, + "orog":{ + "dimensions":"longitude latitude", + "long_name":"Surface Altitude", + "out_name":"orog", + "standard_name":"", + "type":"real", + "units":"m" + }, + "orog2d":{ + "dimensions":"latitude", + "long_name":"Surface Altitude", + "out_name":"orog", + "standard_name":"", + "type":"real", + "units":"m" + }, + "p0":{ + "dimensions":"", + "long_name":"vertical coordinate formula term: reference pressure", + "out_name":"p0", + "standard_name":"reference_air_pressure_for_atmosphere_vertical_coordinate", + "type":"double", + "units":"Pa" + }, + "ps":{ + "dimensions":"longitude latitude time", + "long_name":"Surface Air Pressure", + "out_name":"ps", + "standard_name":"air_pressure", + "type":"real", + "units":"Pa" + }, + "ps1":{ + "dimensions":"longitude latitude time1", + "long_name":"Surface Air Pressure", + "out_name":"ps", + "standard_name":"air_pressure", + "type":"real", + "units":"Pa" + }, + "ps2":{ + "dimensions":"longitude latitude time2", + "long_name":"Surface Air Pressure", + "out_name":"ps", + "standard_name":"air_pressure", + "type":"real", + "units":"Pa" + }, + "ps2d":{ + "dimensions":"latitude time1", + "long_name":"Surface Air Pressure", + "out_name":"ps", + "standard_name":"air_pressure", + "type":"real", + "units":"Pa" + }, + "ptop":{ + "dimensions":"", + "long_name":"pressure at top of model", + "out_name":"ptop", + "standard_name":"air_pressure_at_top_of_atmosphere", + "type":"double", + "units":"Pa" + }, + "zlev":{ + "dimensions":"olevel", + "long_name":"vertical coordinate formula term: zlev(k)", + "out_name":"zlev", + "standard_name":"", + "type":"double", + "units":"m" + }, + "zlev_bnds":{ + "dimensions":"olevel", + "long_name":"vertical coordinate formula term: zlev(k+1/2)", + "out_name":"zlev_bnds", + "standard_name":"", + "type":"double", + "units":"m" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_grids.json b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_grids.json new file mode 100644 index 0000000000..c717895da2 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/Tables/input4MIPs_grids.json @@ -0,0 +1,159 @@ +{ + "Header":{ + "Conventions":"CF-1.7 CMIP-6.2", + "cmor_version":"3.5", + "data_specs_version":"01.00.33", + "mip_era":"CMIP6", + "missing_value":"1e20", + "product":"input4MIPs", + "table_date":"29 May 2024", + "table_id":"Table input4MIPs_grids" + }, + "axis_entry":{ + "grid_latitude":{ + "axis":"Y", + "long_name":"latitude in rotated pole grid", + "out_name":"rlat", + "standard_name":"grid_latitude", + "type":"double", + "units":"degrees" + }, + "grid_longitude":{ + "axis":"X", + "long_name":"longitude in rotated pole grid", + "out_name":"rlon", + "standard_name":"grid_longitude", + "type":"double", + "units":"degrees" + }, + "i_index":{ + "axis":"", + "long_name":"first spatial index for variables stored on an unstructured grid", + "out_name":"i", + "standard_name":"", + "type":"integer", + "units":"1" + }, + "j_index":{ + "axis":"", + "long_name":"second spatial index for variables stored on an unstructured grid", + "out_name":"j", + "standard_name":"", + "type":"integer", + "units":"1" + }, + "k_index":{ + "axis":"", + "long_name":"third spatial index for variables stored on an unstructured grid", + "out_name":"k", + "standard_name":"", + "type":"integer", + "units":"1" + }, + "l_index":{ + "axis":"", + "long_name":"fourth spatial index for variables stored on an unstructured grid", + "out_name":"l", + "standard_name":"", + "type":"integer", + "units":"1" + }, + "m_index":{ + "axis":"", + "long_name":"fifth spatial index for variables stored on an unstructured grid", + "out_name":"m", + "standard_name":"", + "type":"integer", + "units":"1" + }, + "vertices":{ + "axis":"", + "long_name":"", + "out_name":"", + "standard_name":"", + "type":"", + "units":"" + }, + "x":{ + "axis":"X", + "long_name":"x coordinate of projection", + "out_name":"", + "standard_name":"projection_x_coordinate", + "type":"double", + "units":"m" + }, + "x_deg":{ + "axis":"X", + "long_name":"x coordinate of projection", + "out_name":"x", + "standard_name":"projection_x_coordinate", + "type":"double", + "units":"degrees" + }, + "y":{ + "axis":"Y", + "long_name":"y coordinate of projection", + "out_name":"", + "standard_name":"projection_y_coordinate", + "type":"double", + "units":"m" + }, + "y_deg":{ + "axis":"Y", + "long_name":"y coordinate of projection", + "out_name":"y", + "standard_name":"projection_y_coordinate", + "type":"double", + "units":"degrees" + } + }, + "mapping_entry":{ + "sample_user_mapping":{ + "coordinates":"rlon rlat", + "parameter1":"false_easting", + "parameter2":"false_northing" + } + }, + "variable_entry":{ + "latitude":{ + "dimensions":"longitude latitude", + "long_name":"latitude", + "out_name":"latitude", + "standard_name":"latitude", + "type":"double", + "units":"degrees_north", + "valid_max":"90.0", + "valid_min":"-90.0" + }, + "longitude":{ + "dimensions":"longitude latitude", + "long_name":"longitude", + "out_name":"longitude", + "standard_name":"longitude", + "type":"double", + "units":"degrees_east", + "valid_max":"360.0", + "valid_min":"0.0" + }, + "vertices_latitude":{ + "dimensions":"vertices longitude latitude", + "long_name":"", + "out_name":"vertices_latitude", + "standard_name":"", + "type":"double", + "units":"degrees_north", + "valid_max":"90.0", + "valid_min":"-90.0" + }, + "vertices_longitude":{ + "dimensions":"vertices longitude latitude", + "long_name":"", + "out_name":"vertices_longitude", + "standard_name":"", + "type":"double", + "units":"degrees_east", + "valid_max":"360.0", + "valid_min":"0.0" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_activity_id.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_activity_id.json new file mode 100644 index 0000000000..2783755f89 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_activity_id.json @@ -0,0 +1,5 @@ +{ + "activity_id":[ + "input4MIPs" + ] +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_dataset_category.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_dataset_category.json new file mode 100644 index 0000000000..a6768e53fc --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_dataset_category.json @@ -0,0 +1,15 @@ +{ + "dataset_category":[ + "GHGConcentrations", + "SSTsAndSeaIce", + "aerosolProperties", + "atmosphericState", + "emissions", + "landState", + "ozone", + "radiation", + "solar", + "surfaceAir", + "surfaceFluxes" + ] +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_frequency.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_frequency.json new file mode 100644 index 0000000000..b9857c9388 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_frequency.json @@ -0,0 +1,21 @@ +{ + "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", + "yrC":"annual climatology computed from annual mean samples", + "yrPt":"sampled yearly, at specified time point within the time period" + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_grid_label.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_grid_label.json new file mode 100644 index 0000000000..fa079918e2 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_grid_label.json @@ -0,0 +1,49 @@ +{ + "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" + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_institution_id.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_institution_id.json new file mode 100644 index 0000000000..dbd43c6820 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_institution_id.json @@ -0,0 +1,25 @@ +{ + "institution_id":{ + "CCCma":"Canadian Centre for Climate Modelling and Analysis, Victoria, BC V8P 5C2, Canada", + "CNRM-Cerfacs":"CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31100, France)", + "IACETH":"Institute for Atmosphere and Climate, ETH Zurich, Zurich 8092, Switzerland", + "IAMC":"Integrated Assessment Modeling Consortium (see www.globalchange.umd.edu/iamc/membership for complete membership). Mailing address: International Institute for Applied Systems Analysis (IIASA), Schlossplatz 1, A-2361 Laxenburg, Austria", + "ImperialCollege":"Imperial College London, South Kensington Campus, London SW7 2AZ, UK", + "MOHC":"Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK", + "MPI-B":"Max Planck Institute for Biogeochemistry, Jena 07745, Germany", + "MPI-M":"Max Planck Institute for Meteorology, Hamburg 20146, Germany", + "MRI":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "NASA-GSFC":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "NCAR":"National Center for Atmospheric Research, Boulder, CO 80307, USA", + "NCAS":"National Centre for Atmospheric Science, University of Reading, Reading RG6 6BB, UK", + "PCMDI":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "PNNL-JGCRI":"Pacific Northwest National Laboratory - Joint Global Change Research Institute, College Park, MD 20740, USA", + "SOLARIS-HEPPA":"SOLARIS-HEPPA, GEOMAR Helmholtz Centre for Ocean Research, Kiel 24105, Germany", + "UCI":"Department of Earth System Science, University of California Irvine, Irvine, CA 92697, USA", + "UColorado":"University of Colorado, Boulder, CO 80309, USA", + "UReading":"University of Reading, Reading RG6 6UA, UK", + "UoM":"Australian-German Climate & Energy College, The University of Melbourne (UoM), Parkville, Victoria 3010, Australia", + "UofMD":"University of Maryland (UofMD), College Park, MD 20742, USA", + "VUA":"Vrije Universiteit Amsterdam, De Boelelaan 1105, 1081 HV Amsterdam, Netherlands" + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_license.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_license.json new file mode 100644 index 0000000000..7de2f9379e --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_license.json @@ -0,0 +1,3 @@ +{ + "license":" data produced by is licensed under a Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing input4MIPs output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law." +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_mip_era.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_mip_era.json new file mode 100644 index 0000000000..eed9484d16 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_mip_era.json @@ -0,0 +1,12 @@ +{ + "mip_era":[ + "AMIP1", + "AMIP2", + "CMIP1", + "CMIP2", + "CMIP3", + "CMIP5", + "CMIP6", + "CMIP6Plus" + ] +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_nominal_resolution.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_nominal_resolution.json new file mode 100644 index 0000000000..4de5620573 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_nominal_resolution.json @@ -0,0 +1,19 @@ +{ + "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" + ] +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_product.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_product.json new file mode 100644 index 0000000000..8c48205987 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_product.json @@ -0,0 +1,7 @@ +{ + "product":[ + "derived", + "observations", + "reanalysis" + ] +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_realm.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_realm.json new file mode 100644 index 0000000000..ec14cafcf2 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_realm.json @@ -0,0 +1,12 @@ +{ + "realm":{ + "aerosol":"Aerosol", + "atmos":"Atmosphere", + "atmosChem":"Atmospheric Chemistry", + "land":"Land Surface", + "landIce":"Land Ice", + "ocean":"Ocean", + "ocnBgchem":"Ocean Biogeochemistry", + "seaIce":"Sea Ice" + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_region.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_region.json new file mode 100644 index 0000000000..69c23d6444 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_region.json @@ -0,0 +1,72 @@ +{ + "region":[ + "africa", + "antarctica", + "arabian_sea", + "aral_sea", + "arctic_ocean", + "asia", + "atlantic_ocean", + "australia", + "baltic_sea", + "barents_opening", + "barents_sea", + "beaufort_sea", + "bellingshausen_sea", + "bering_sea", + "bering_strait", + "black_sea", + "canadian_archipelago", + "caribbean_sea", + "caspian_sea", + "central_america", + "chukchi_sea", + "contiguous_united_states", + "denmark_strait", + "drake_passage", + "east_china_sea", + "english_channel", + "eurasia", + "europe", + "faroe_scotland_channel", + "florida_bahamas_strait", + "fram_strait", + "global", + "global_land", + "global_ocean", + "great_lakes", + "greenland", + "gulf_of_alaska", + "gulf_of_mexico", + "hudson_bay", + "iceland_faroe_channel", + "indian_ocean", + "indo_pacific_ocean", + "indonesian_throughflow", + "irish_sea", + "lake_baykal", + "lake_chad", + "lake_malawi", + "lake_tanganyika", + "lake_victoria", + "mediterranean_sea", + "mozambique_channel", + "north_america", + "north_sea", + "norwegian_sea", + "pacific_equatorial_undercurrent", + "pacific_ocean", + "persian_gulf", + "red_sea", + "ross_sea", + "sea_of_japan", + "sea_of_okhotsk", + "south_america", + "south_china_sea", + "southern_ocean", + "taiwan_luzon_straits", + "weddell_sea", + "windward_passage", + "yellow_sea" + ] +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_required_global_attributes.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_required_global_attributes.json new file mode 100644 index 0000000000..e714f83bf3 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_required_global_attributes.json @@ -0,0 +1,27 @@ +{ + "required_global_attributes":[ + "Conventions", + "activity_id", + "contact", + "creation_date", + "dataset_category", + "frequency", + "further_info_url", + "grid_label", + "institution", + "institution_id", + "license", + "mip_era", + "nominal_resolution", + "realm", + "region", + "source", + "source_id", + "source_version", + "table_id", + "target_mip", + "title", + "tracking_id", + "variable_id" + ] +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_source_id.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_source_id.json new file mode 100644 index 0000000000..00610742bd --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_source_id.json @@ -0,0 +1,916 @@ +{ + "source_id":{ + "ACCESS1-3-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model ACCESS1-3 as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"ACCESS1-3-rcp85-1-0 derived dataset computed from CMIP5 ACCESS1-3 historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"ACCESS1-3-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - ACCESS1-3-rcp85-1-0 derived data prepared for input4MIPs" + }, + "CCSM4-rcp26-1-0":{ + "comment":"Prepared using CMIP5 model CCSM4 as input. A combination of historical and rcp26 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CCSM4-rcp26-1-0 derived dataset computed from CMIP5 CCSM4 historical and rcp26 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CCSM4-rcp26-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CCSM4-rcp26-1-0 derived data prepared for input4MIPs" + }, + "CCSM4-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model CCSM4 as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CCSM4-rcp85-1-0 derived dataset computed from CMIP5 CCSM4 historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CCSM4-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CCSM4-rcp85-1-0 derived data prepared for input4MIPs" + }, + "CESM2-ssp585-1-0":{ + "comment":"Prepared using CMIP6 model CESM2 as input. A combination of historical and ssp585 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CESM2-ssp585-1-0 derived dataset computed from CMIP6 CESM2 historical and ssp585 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CESM2-ssp585-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CESM2-ssp585-1-0 derived data prepared for input4MIPs" + }, + "CNRM-CM6-1-ssp126-1-0":{ + "comment":"Prepared using CMIP6 model CNRM-CM6-1 as input. A combination of historical and ssp126 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CNRM-CM6-1-ssp126-1-0 derived dataset computed from CMIP6 CNRM-CM6-1 historical and ssp126 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CNRM-CM6-1-ssp126-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CNRM-CM6-1-ssp126-1-0 derived data prepared for input4MIPs" + }, + "CNRM-CM6-1-ssp585-1-0":{ + "comment":"Prepared using CMIP6 model CNRM-CM6-1 as input. A combination of historical and ssp585 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CNRM-CM6-1-ssp585-1-0 derived dataset computed from CMIP6 CNRM-CM6-1 historical and ssp585 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CNRM-CM6-1-ssp585-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CNRM-CM6-1-ssp585-1-0 derived data prepared for input4MIPs" + }, + "CNRM-ESM2-1-ssp585-1-0":{ + "comment":"Prepared using CMIP6 model CNRM-ESM2-1 as input. A combination of historical and ssp585 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CNRM-ESM2-1-ssp585-1-0 derived dataset computed from CMIP6 CNRM-ESM2-1 historical and ssp585 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CNRM-ESM2-1-ssp585-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CNRM-ESM2-1-ssp585-1-0 derived data prepared for input4MIPs" + }, + "CSIRO-MK3-6-0-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model CSIRO-MK3-6-0 as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"CSIRO-MK3-6-0-rcp85-1-0 derived dataset computed from CMIP5 CSIRO-MK3-6-0 historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"CSIRO-MK3-6-0-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - CSIRO-MK3-6-0-rcp85-1-0 derived data prepared for input4MIPs" + }, + "HadGEM2-ES-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model HadGEM2-ES as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"HadGEM2-ES-rcp85-1-0 derived dataset computed from CMIP5 HadGEM2-ES historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"HadGEM2-ES-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - HadGEM2-ES-rcp85-1-0 derived data prepared for input4MIPs" + }, + "IPSL-CM5A-MR-rcp26-1-0":{ + "comment":"Prepared using CMIP5 model IPSL-CM5A-MR as input. A combination of historical and rcp26 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"IPSL-CM5A-MR-rcp26-1-0 derived dataset computed from CMIP5 IPSL-CM5A-MR historical and rcp26 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"IPSL-CM5A-MR-rcp26-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - IPSL-CM5A-MR-rcp26-1-0 derived data prepared for input4MIPs" + }, + "IPSL-CM5A-MR-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model IPSL-CM5A-MR as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"IPSL-CM5A-MR-rcp85-1-0 derived dataset computed from CMIP5 IPSL-CM5A-MR historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"IPSL-CM5A-MR-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - IPSL-CM5A-MR-rcp85-1-0 derived data prepared for input4MIPs" + }, + "MIROC-ESM-CHEM-rcp26-1-0":{ + "comment":"Prepared using CMIP5 model MIROC-ESM-CHEM as input. A combination of historical and rcp26 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"MIROC-ESM-CHEM-rcp26-1-0 derived dataset computed from CMIP5 MIROC-ESM-CHEM historical and rcp26 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"MIROC-ESM-CHEM-rcp26-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - MIROC-ESM-CHEM-rcp26-1-0 derived data prepared for input4MIPs" + }, + "MIROC-ESM-CHEM-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model MIROC-ESM-CHEM as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"MIROC-ESM-CHEM-rcp85-1-0 derived dataset computed from CMIP5 MIROC-ESM-CHEM historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"MIROC-ESM-CHEM-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - MIROC-ESM-CHEM-rcp85-1-0 derived data prepared for input4MIPs" + }, + "MIROC5-rcp26-1-0":{ + "comment":"Prepared using CMIP5 model MIROC5 as input. A combination of historical and rcp26 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"MIROC5-rcp26-1-0 derived dataset computed from CMIP5 MIROC5 historical and rcp26 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"MIROC5-rcp26-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - MIROC5-rcp26-1-0 derived data prepared for input4MIPs" + }, + "MIROC5-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model MIROC5 as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"MIROC5-rcp85-1-0 derived dataset computed from CMIP5 MIROC5 historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"MIROC5-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - MIROC5-rcp85-1-0 derived data prepared for input4MIPs" + }, + "MRI-JRA55-do-1-3":{ + "mip_era":"CMIP6", + "source":"MRI JRA55-do 1.3: Atmospheric state generated for OMIP based on the JRA-55 reanalysis" + }, + "MRI-JRA55-do-1-3-2":{ + "comment":"Based on JRA-55 reanalysis (1958-01 to 2019-01)", + "contact":"Hiroyuki Tsujino (htsujino@mri-jma.go.jp)", + "dataset_category":"atmosphericState", + "further_info_url":"http://climate.mri-jma.go.jp/~htsujino/jra55do.html", + "institution":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "institution_id":"MRI", + "mip_era":"CMIP6", + "product":"reanalysis", + "references":"Tsujino et al., 2018: JRA-55 based surface dataset for driving ocean-sea-ice models (JRA55-do), Ocean Modelling, 130(1), pp 79-139. https://doi.org/10.1016/j.ocemod.2018.07.002", + "region":[ + "global_ocean" + ], + "release_year":"2019", + "source":"MRI JRA55-do 1.3.2: Atmospheric state generated for OMIP based on the JRA-55 reanalysis", + "source_description":"Atmospheric state and terrestrial runoff datasets produced by MRI for the OMIP experiment of CMIP6", + "source_id":"MRI-JRA55-do-1-3-2", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "friver", + "huss", + "licalvf", + "prra", + "prsn", + "psl", + "rlds", + "sftof", + "siconc", + "siconca", + "sos", + "tas", + "tos", + "ts", + "uas", + "uos", + "vas", + "vos" + ], + "source_version":"1.3.2", + "target_mip":"OMIP", + "title":"MRI JRA55-do 1.3.2 dataset prepared for input4MIPs" + }, + "MRI-JRA55-do-1-4-0":{ + "comment":"Based on JRA-55 reanalysis (1958-01 to 2019-01)", + "contact":"Hiroyuki Tsujino (htsujino@mri-jma.go.jp)", + "dataset_category":"atmosphericState", + "further_info_url":"http://climate.mri-jma.go.jp/~htsujino/jra55do.html", + "institution":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "institution_id":"MRI", + "mip_era":"CMIP6", + "product":"reanalysis", + "references":"Tsujino et al., 2018: JRA-55 based surface dataset for driving ocean-sea-ice models (JRA55-do), Ocean Modelling, 130(1), pp 79-139. https://doi.org/10.1016/j.ocemod.2018.07.002", + "region":[ + "global_ocean" + ], + "release_year":"2019", + "source":"MRI JRA55-do 1.4.0: Atmospheric state generated for OMIP based on the JRA-55 reanalysis", + "source_description":"Atmospheric state and terrestrial runoff datasets produced by MRI for the OMIP experiment of CMIP6", + "source_id":"MRI-JRA55-do-1-4-0", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "friver", + "huss", + "licalvf", + "prra", + "prsn", + "psl", + "rlds", + "sftof", + "siconc", + "siconca", + "sos", + "tas", + "tos", + "ts", + "uas", + "uos", + "vas", + "vos" + ], + "source_version":"1.4.0", + "target_mip":"OMIP", + "title":"MRI JRA55-do 1.4.0 dataset prepared for input4MIPs" + }, + "MRI-JRA55-do-1-5-0":{ + "comment":"Based on JRA-55 reanalysis (1958-01 to 2020-07)", + "contact":"Hiroyuki Tsujino (htsujino@mri-jma.go.jp)", + "dataset_category":"atmosphericState", + "further_info_url":"http://climate.mri-jma.go.jp/~htsujino/jra55do.html", + "institution":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "institution_id":"MRI", + "mip_era":"CMIP6", + "product":"reanalysis", + "references":"Tsujino et al., 2018: JRA-55 based surface dataset for driving ocean-sea-ice models (JRA55-do), Ocean Modelling, 130(1), pp 79-139. https://doi.org/10.1016/j.ocemod.2018.07.002", + "region":[ + "global_ocean" + ], + "release_year":"2020", + "source":"MRI JRA55-do 1.5.0: Atmospheric state generated for OMIP based on the JRA-55 reanalysis", + "source_description":"Atmospheric state and terrestrial runoff datasets produced by MRI for the OMIP experiment of CMIP6", + "source_id":"MRI-JRA55-do-1-5-0", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "friver", + "huss", + "licalvf", + "prra", + "prsn", + "psl", + "rlds", + "sftof", + "siconc", + "siconca", + "sos", + "tas", + "tos", + "ts", + "uas", + "uos", + "vas", + "vos" + ], + "source_version":"1.5.0", + "target_mip":"OMIP", + "title":"MRI JRA55-do 1.5.0 dataset prepared for input4MIPs" + }, + "MRI-JRA55-do-1-6-0":{ + "calendar":"gregorian", + "comment":"Based on JRA-55 reanalysis (1958-01 to 2024-01)", + "contact":"Hiroyuki Tsujino (htsujino@mri-jma.go.jp)", + "dataset_category":"atmosphericState", + "further_info_url":"http://climate.mri-jma.go.jp/~htsujino/jra55do.html", + "grid":"data regridded to the normal atmosphere TL319 gaussian grid (320x640 latxlon) from a reduced TL319 gaussian grid", + "grid_label":"gn", + "institution":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "institution_id":"MRI", + "license":"OMIP boundary condition data produced by MRI is licensed under a Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing input4MIPs output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law", + "mip_era":"CMIP6Plus", + "nominal_resolution":"50 km", + "product":"reanalysis", + "references":"Tsujino et al., 2018: JRA-55 based surface dataset for driving ocean-sea-ice models (JRA55-do), Ocean Modelling, 130(1), pp 79-139. https://doi.org/10.1016/j.ocemod.2018.07.002", + "region":[ + "global_ocean" + ], + "release_year":"2024", + "source":"MRI JRA55-do 1.6.0: Atmospheric state generated for OMIP based on the JRA-55 reanalysis", + "source_description":"Atmospheric state and terrestrial runoff datasets produced by MRI for the OMIP experiment of CMIP6Plus", + "source_id":"MRI-JRA55-do-1-6-0", + "source_type":"satellite_blended", + "source_variables":[ + [ + "areacello", + "friver", + "huss", + "licalvf", + "prra", + "prsn", + "psl", + "rlds", + "sftof", + "siconc", + "siconca", + "sos", + "tas", + "tos", + "ts", + "uas", + "uos", + "vas", + "vos" + ] + ], + "source_version":"1.6.0", + "target_mip":"OMIP", + "title":"MRI JRA55-do 1.6.0 dataset prepared for input4MIPs" + }, + "NorESM1-M-rcp26-1-0":{ + "comment":"Prepared using CMIP5 model NorESM1-M as input. A combination of historical and rcp26 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"NorESM1-M-rcp26-1-0 derived dataset computed from CMIP5 NorESM1-M historical and rcp26 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"NorESM1-M-rcp26-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - NorESM1-M-rcp26-1-0 derived data prepared for input4MIPs" + }, + "NorESM1-M-rcp85-1-0":{ + "comment":"Prepared using CMIP5 model NorESM1-M as input. A combination of historical and rcp85 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"NorESM1-M-rcp85-1-0 derived dataset computed from CMIP5 NorESM1-M historical and rcp85 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"NorESM1-M-rcp85-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - NorESM1-M-rcp85-1-0 derived data prepared for input4MIPs" + }, + "PCMDI-AMIP-1-1-3":{ + "mip_era":"CMIP6", + "source":"PCMDI-AMIP 1.1.3: Merged SST based on UK MetOffice HadISST and NCEP OI2" + }, + "PCMDI-AMIP-1-1-4":{ + "comment":"Based on Hurrell SST/sea ice consistency criteria applied to merged HadISST (1870-01 to 1981-10) & NCEP-0I2 (1981-11 to 2017-12)", + "contact":"PCMDI (pcmdi-cmip@llnl.gov)", + "dataset_category":"SSTsAndSeaIce", + "further_info_url":"https://pcmdi.llnl.gov/mips/amip", + "grid":"1x1 degree longitude x latitude", + "grid_label":"gn", + "institution":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "institution_id":"PCMDI", + "mip_era":"CMIP6", + "nominal_resolution":"1x1 degree", + "product":"observations", + "references":"Taylor, K.E., D. Williamson and F. Zwiers, 2000: The sea surface temperature and sea ice concentration boundary conditions for AMIP II simulations. PCMDI Report 60, Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, 25 pp. Available online: https://pcmdi.llnl.gov/report/pdf/60.pdf", + "region":[ + "global_ocean" + ], + "release_year":"2018", + "source":"PCMDI-AMIP 1.1.4: Merged SST based on UK MetOffice HadISST and NCEP OI2", + "source_description":"Sea surface temperature and sea-ice datasets produced by PCMDI (LLNL) for the AMIP (DECK) experiment of CMIP6", + "source_id":"PCMDI-AMIP-1-1-4", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "sftof", + "siconc", + "siconcbcs", + "tos", + "tosbcs" + ], + "source_version":"1.1.4", + "target_mip":"CMIP", + "title":"PCMDI-AMIP 1.1.4 dataset prepared for input4MIPs" + }, + "PCMDI-AMIP-1-1-5":{ + "comment":"Based on Hurrell SST/sea ice consistency criteria applied to merged HadISST (1870-01 to 1981-10) & NCEP-0I2 (1981-11 to 2018-06)", + "contact":"PCMDI (pcmdi-cmip@llnl.gov)", + "dataset_category":"SSTsAndSeaIce", + "further_info_url":"https://pcmdi.llnl.gov/mips/amip", + "grid":"1x1 degree longitude x latitude", + "grid_label":"gn", + "institution":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "institution_id":"PCMDI", + "mip_era":"CMIP6", + "nominal_resolution":"1x1 degree", + "product":"observations", + "references":"Taylor, K.E., D. Williamson and F. Zwiers, 2000: The sea surface temperature and sea ice concentration boundary conditions for AMIP II simulations. PCMDI Report 60, Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, 25 pp. Available online: https://pcmdi.llnl.gov/report/pdf/60.pdf", + "region":[ + "global_ocean" + ], + "release_year":"2018", + "source":"PCMDI-AMIP 1.1.5: Merged SST based on UK MetOffice HadISST and NCEP OI2", + "source_description":"Sea surface temperature and sea-ice datasets produced by PCMDI (LLNL) for the AMIP (DECK) experiment of CMIP6", + "source_id":"PCMDI-AMIP-1-1-5", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "sftof", + "siconc", + "siconcbcs", + "tos", + "tosbcs" + ], + "source_version":"1.1.5", + "target_mip":"CMIP", + "title":"PCMDI-AMIP 1.1.5 dataset prepared for input4MIPs" + }, + "PCMDI-AMIP-1-1-6":{ + "comment":"Based on Hurrell SST/sea ice consistency criteria applied to merged HadISST (1870-01 to 1981-10) & NCEP-0I2 (1981-11 to 2018-12)", + "contact":"PCMDI (pcmdi-cmip@llnl.gov)", + "dataset_category":"SSTsAndSeaIce", + "further_info_url":"https://pcmdi.llnl.gov/mips/amip", + "grid":"1x1 degree longitude x latitude", + "grid_label":"gn", + "institution":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "institution_id":"PCMDI", + "mip_era":"CMIP6", + "nominal_resolution":"1x1 degree", + "product":"observations", + "references":"Taylor, K.E., D. Williamson and F. Zwiers, 2000: The sea surface temperature and sea ice concentration boundary conditions for AMIP II simulations. PCMDI Report 60, Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, 25 pp. Available online: https://pcmdi.llnl.gov/report/pdf/60.pdf", + "region":[ + "global_ocean" + ], + "release_year":"2019", + "source":"PCMDI-AMIP 1.1.6: Merged SST based on UK MetOffice HadISST and NCEP OI2", + "source_description":"Sea surface temperature and sea-ice datasets produced by PCMDI (LLNL) for the AMIP (DECK) experiment of CMIP6", + "source_id":"PCMDI-AMIP-1-1-6", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "sftof", + "siconc", + "siconcbcs", + "tos", + "tosbcs" + ], + "source_version":"1.1.6", + "target_mip":"CMIP", + "title":"PCMDI-AMIP 1.1.6 dataset prepared for input4MIPs" + }, + "PCMDI-AMIP-1-1-7":{ + "calendar":"gregorian", + "comment":"Based on Hurrell SST/sea ice consistency criteria applied to merged HadISST (1870-01 to 1981-10) & NCEP-0I2 (1981-11 to 2021-06)", + "contact":"PCMDI (pcmdi-cmip@llnl.gov)", + "dataset_category":"SSTsAndSeaIce", + "further_info_url":"https://pcmdi.llnl.gov/mips/amip", + "grid":"1x1 degree longitude x latitude", + "grid_label":"gn", + "institution":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "institution_id":"PCMDI", + "mip_era":"CMIP6", + "nominal_resolution":"1x1 degree", + "product":"observations", + "references":"Taylor, K.E., D. Williamson and F. Zwiers, 2000: The sea surface temperature and sea ice concentration boundary conditions for AMIP II simulations. PCMDI Report 60, Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, 25 pp. Available online: https://pcmdi.llnl.gov/report/pdf/60.pdf", + "region":[ + "global_ocean" + ], + "release_year":"2022", + "source":"PCMDI-AMIP 1.1.7: Merged SST based on UK MetOffice HadISST and NCEP OI2", + "source_description":"Sea surface temperature and sea-ice datasets produced by PCMDI (LLNL) for the AMIP (DECK) experiment of CMIP6", + "source_id":"PCMDI-AMIP-1-1-7", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "sftof", + "siconc", + "siconcbcs", + "tos", + "tosbcs" + ], + "source_version":"1.1.7", + "target_mip":"CMIP", + "title":"PCMDI-AMIP 1.1.7 dataset prepared for input4MIPs" + }, + "PCMDI-AMIP-1-1-8":{ + "calendar":"gregorian", + "comment":"Based on Hurrell SST/sea ice consistency criteria applied to merged HadISST (1870-01 to 1981-10) & NCEP-0I2 (1981-11 to 2021-12)", + "contact":"PCMDI (pcmdi-cmip@llnl.gov)", + "dataset_category":"SSTsAndSeaIce", + "further_info_url":"https://pcmdi.llnl.gov/mips/amip", + "grid":"1x1 degree longitude x latitude", + "grid_label":"gn", + "institution":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "institution_id":"PCMDI", + "license":"AMIP boundary condition data produced by PCMDI is licensed under a Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing input4MIPs output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law", + "mip_era":"CMIP6", + "nominal_resolution":"1x1 degree", + "product":"observations", + "references":"Taylor, K.E., D. Williamson and F. Zwiers, 2000: The sea surface temperature and sea ice concentration boundary conditions for AMIP II simulations. PCMDI Report 60, Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, 25 pp. Available online: https://pcmdi.llnl.gov/report/pdf/60.pdf", + "region":[ + "global_ocean" + ], + "release_year":"2022", + "source":"PCMDI-AMIP 1.1.8: Merged SST based on UK MetOffice HadISST and NCEP OI2", + "source_description":"Sea surface temperature and sea-ice datasets produced by PCMDI (LLNL) for the AMIP (DECK) experiment of CMIP6", + "source_id":"PCMDI-AMIP-1-1-8", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "sftof", + "siconc", + "siconcbcs", + "tos", + "tosbcs" + ], + "source_version":"1.1.8", + "target_mip":"CMIP", + "title":"PCMDI-AMIP 1.1.8 dataset prepared for input4MIPs" + }, + "PCMDI-AMIP-1-1-9":{ + "calendar":"gregorian", + "comment":"Based on Hurrell SST/sea ice consistency criteria applied to merged HadISST (1870-01 to 1981-10) & NCEP-0I2 (1981-11 to 2022-12)", + "contact":"PCMDI (pcmdi-cmip@llnl.gov)", + "dataset_category":"SSTsAndSeaIce", + "further_info_url":"https://pcmdi.llnl.gov/mips/amip", + "grid":"1x1 degree longitude x latitude", + "grid_label":"gn", + "institution":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "institution_id":"PCMDI", + "license":"AMIP boundary condition data produced by PCMDI is licensed under a Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing input4MIPs output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law", + "mip_era":"CMIP6Plus", + "nominal_resolution":"1x1 degree", + "product":"observations", + "references":"Taylor, K.E., D. Williamson and F. Zwiers, 2000: The sea surface temperature and sea ice concentration boundary conditions for AMIP II simulations. PCMDI Report 60, Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, 25 pp. Available online: https://pcmdi.llnl.gov/report/pdf/60.pdf", + "region":[ + "global_ocean" + ], + "release_year":"2023", + "source":"PCMDI-AMIP 1.1.9: Merged SST based on UK MetOffice HadISST and NCEP OI2", + "source_description":"Sea surface temperature and sea-ice datasets produced by PCMDI (LLNL) for the AMIP (DECK) experiment of CMIP6Plus", + "source_id":"PCMDI-AMIP-1-1-9", + "source_type":"satellite_blended", + "source_variables":[ + "areacello", + "sftof", + "siconc", + "siconcbcs", + "tos", + "tosbcs" + ], + "source_version":"1.1.9", + "target_mip":"CMIP", + "title":"PCMDI-AMIP 1.1.9 dataset prepared for input4MIPs" + }, + "UKESM1-0-LL-ssp585-1-0":{ + "comment":"Prepared using CMIP6 model UKESM1-0-LL as input. A combination of historical and ssp585 datasets were used to create this ISMIP6 forcing dataset", + "contact":"ISMIP6 Steering Team (ismip6@gmail.com)", + "dataset_category":"surfaceFluxes", + "further_info_url":"http://www.climate-cryosphere.org/wiki/index.php?title=ISMIP6_wiki_page", + "institution":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "institution_id":"NASA-GSFC", + "mip_era":"CMIP6", + "nominal_resolution":"10 km", + "product":"derived", + "references":"Experimental protocol for sealevel projections from ISMIP6 standalone ice sheet models, Nowicki, S. et al, 2020, https://doi.org/10.5194/tc-2019-322", + "release_year":"2020", + "source":"UKESM1-0-LL-ssp585-1-0 derived dataset computed from CMIP6 UKESM1-0-LL historical and ssp585 simulations for ISMIP6", + "source_description":"Ice sheet relevant datasets produced by the ISMIP6 Team for the standalone ice sheet experiment of ISMIP6", + "source_id":"UKESM1-0-LL-ssp585-1-0", + "source_type":"AOGCM", + "source_variables":[ + "acabf", + "evspsbl", + "mrros", + "pr", + "sftflf", + "so", + "ts" + ], + "source_version":"1.0", + "target_mip":"ISMIP6", + "title":"ISMIP6 (CMIP6) - UKESM1-0-LL-ssp585-1-0 derived data prepared for input4MIPs" + } + } +} \ No newline at end of file diff --git a/esmvalcore/cmor/tables/input4mips/input4MIPs_target_mip.json b/esmvalcore/cmor/tables/input4mips/input4MIPs_target_mip.json new file mode 100644 index 0000000000..a7073a4b15 --- /dev/null +++ b/esmvalcore/cmor/tables/input4mips/input4MIPs_target_mip.json @@ -0,0 +1,28 @@ +{ + "target_mip":{ + "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" + } +} \ No newline at end of file diff --git a/esmvalcore/config-developer.yml b/esmvalcore/config-developer.yml index 32691ab504..134ebf73e7 100644 --- a/esmvalcore/config-developer.yml +++ b/esmvalcore/config-developer.yml @@ -122,6 +122,17 @@ obs4MIPs: cmor_path: 'obs4mips' cmor_default_table_prefix: 'obs4MIPs_' +input4MIPs: + cmor_strict: true + input_dir: + default: '/' + ESGF: '{activity}/{mip_era}/{target_mip}/{institute}/{dataset}/{modeling_realm}/{frequency}/{short_name}/{grid}/{version}' + input_file: '{short_name}_{project}_{dataset_category}_{target_mip}_{dataset}_{grid}_*.nc' + output_file: '{project}_{dataset}_{dataset_category}_{target_mip}_{short_name}_{grid}' + cmor_type: 'input4MIPs' + cmor_default_table_prefix: 'input4MIPs_' + + ana4mips: cmor_strict: false input_dir: diff --git a/esmvalcore/config/_config.py b/esmvalcore/config/_config.py index 1157dc88c8..64d95bd731 100644 --- a/esmvalcore/config/_config.py +++ b/esmvalcore/config/_config.py @@ -139,13 +139,34 @@ def get_institutes(variable): def get_activity(variable): - """Return the activity given the experiment name in CMIP6.""" + """Return the activity.""" project = variable["project"] + + # For CMIP6, activity depends on experiment try: exp = variable["exp"] if isinstance(exp, list): return [CMOR_TABLES[project].activities[value][0] for value in exp] return CMOR_TABLES[project].activities[exp][0] + except (KeyError, AttributeError): + pass + + # For input4MIPs, activity is fixed + try: + return CMOR_TABLES[project].activities[0] + except (KeyError, AttributeError): + pass + + # All other projects + return None + + +def get_dataset_category(variable): + """Return the dataset category associated with a given the dataset name.""" + dataset = variable["dataset"] + project = variable["project"] + try: + return CMOR_TABLES[project].dataset_categories[dataset] except (KeyError, AttributeError): return None diff --git a/esmvalcore/dataset.py b/esmvalcore/dataset.py index 050a9e7326..16ec5d51e6 100644 --- a/esmvalcore/dataset.py +++ b/esmvalcore/dataset.py @@ -22,6 +22,7 @@ from esmvalcore.config import CFG, Session from esmvalcore.config._config import ( get_activity, + get_dataset_category, get_ignored_warnings, get_institutes, load_extra_facets, @@ -688,6 +689,10 @@ def _augment_facets(self): activity = get_activity(self.facets) if activity: self.facets["activity"] = activity + if "dataset_category" not in self.facets: + dataset_category = get_dataset_category(self.facets) + if dataset_category: + self.facets["dataset_category"] = dataset_category _update_cmor_facets(self.facets) if self.facets.get("frequency") == "fx": self.facets.pop("timerange", None) diff --git a/esmvalcore/esgf/_download.py b/esmvalcore/esgf/_download.py index 9a1ff04fcb..0946d5d779 100644 --- a/esmvalcore/esgf/_download.py +++ b/esmvalcore/esgf/_download.py @@ -297,6 +297,9 @@ def _get_facets_from_dataset_id(results) -> Facets: # %(rcm_version)s.%(time_frequency)s.%(variable)s' # obs4MIPs: '%(project)s.%(institute)s.%(source_id)s.%(realm)s. # %(time_frequency)s' + # input4MIPs: '%(activity_id)s.%(mip_era)s.%(target_mip)s. + # %(institution_id)s.%(source_id)s.%(realm)s. + # %(frequency)s.%(variable_id)s.%(grid_label)s' project = results[0].json["project"][0] # Read the keys from `dataset_id_template_` and translate to our keys diff --git a/esmvalcore/esgf/facets.py b/esmvalcore/esgf/facets.py index e47b09fda6..9e8469a7c1 100644 --- a/esmvalcore/esgf/facets.py +++ b/esmvalcore/esgf/facets.py @@ -49,6 +49,14 @@ "institute": "institute", "short_name": "variable", }, + "input4MIPs": { + "activity": "activity_id", + "dataset": "source_id", + "grid": "grid_label", + "institute": "institution_id", + "modeling_realm": "realm", + "short_name": "variable_id", + }, } """Mapping between the recipe and ESGF facet names.""" @@ -74,6 +82,7 @@ "CMIP6": {}, "CORDEX": {}, "obs4MIPs": {}, + "input4MIPs": {}, } """Cache for the mapping between recipe/filesystem and ESGF dataset names."""