From 9cce7789194b2c830cf453c44afbdb31a402e039 Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Wed, 24 Sep 2025 13:20:31 +1000 Subject: [PATCH 01/18] update for OM2 --- src/access_moppy/ocean.py | 32 +++++- src/access_moppy/ocean_supergrid.py | 122 +++++++++++++++------- src/access_moppy/vocabulary_processors.py | 10 +- 3 files changed, 118 insertions(+), 46 deletions(-) diff --git a/src/access_moppy/ocean.py b/src/access_moppy/ocean.py index a67ed02..6b518e8 100644 --- a/src/access_moppy/ocean.py +++ b/src/access_moppy/ocean.py @@ -45,10 +45,23 @@ def infer_grid_type(self): "Q": {"xq_ocean", "yq_ocean"}, } present_coords = set(self.ds.coords) - for grid, required in coord_sets.items(): - if required.issubset(present_coords): - return grid - raise ValueError("Could not infer grid type from dataset coordinates.") + # Find which grid type matches the present coordinates + # handle "x" and "y" separately to allow for mixed grids + grid_dict = {} + for coord in present_coords: + if coord.startswith("x") and coord.endswith("_ocean"): + for grid, required in coord_sets.items(): + if coord in required: + grid_dict["x"] = grid + if coord.startswith("y") and coord.endswith("_ocean"): + for grid, required in coord_sets.items(): + if coord in required: + grid_dict["y"] = grid + + if set(grid_dict.keys()) == {"x", "y"}: + return grid_dict + else: + raise ValueError("Could not infer grid type from dataset coordinates.") def select_and_process_variables(self): input_vars = self.mapping[self.cmor_name]["model_variables"] @@ -76,12 +89,21 @@ def select_and_process_variables(self): "yq_ocean": "j", "xv_ocean": "i", "yv_ocean": "j", + "st_ocean": "lev", # depth level } dims_to_rename = { k: v for k, v in dim_rename.items() if k in self.ds[self.cmor_name].dims } self.ds[self.cmor_name] = self.ds[self.cmor_name].rename(dims_to_rename) - self.ds[self.cmor_name] = self.ds[self.cmor_name].transpose("time", "j", "i") + print(self.ds[self.cmor_name]) + if self.ds[self.cmor_name].ndim == 3: + self.ds[self.cmor_name] = self.ds[self.cmor_name].transpose( + "time", "j", "i" + ) + elif self.ds[self.cmor_name].ndim == 4: + self.ds[self.cmor_name] = self.ds[self.cmor_name].transpose( + "time", "lev", "j", "i" + ) self.grid_type = self.infer_grid_type() # Drop all other data variables except the CMOR variable diff --git a/src/access_moppy/ocean_supergrid.py b/src/access_moppy/ocean_supergrid.py index 48e46aa..cc5cf10 100644 --- a/src/access_moppy/ocean_supergrid.py +++ b/src/access_moppy/ocean_supergrid.py @@ -94,36 +94,44 @@ def load_supergrid(self, supergrid_file: str): self.supergrid = self.supergrid.rename_vars({"x": "x_full", "y": "y_full"}) self.xt = self.supergrid["x_full"][1::2, 1::2] self.yt = self.supergrid["y_full"][1::2, 1::2] - self.xu = self.supergrid["x_full"][1::2, ::2] - self.yu = self.supergrid["y_full"][1::2, ::2] + self.xu = self.supergrid["x_full"][1::2, :-1:2] + self.yu = self.supergrid["y_full"][1::2, :-1:2] self.xv = self.supergrid["x_full"][::2, 1::2] self.yv = self.supergrid["y_full"][::2, 1::2] self.xq = self.supergrid["x_full"][::2, ::2] self.yq = self.supergrid["y_full"][::2, ::2] def extract_grid(self, grid_type: str): - if grid_type == "T": + print("grid_type:", grid_type) + if grid_type["x"] == "T": x = self.xt - y = self.yt corners_x = self.xq - corners_y = self.yq - elif grid_type == "U": + elif grid_type["x"] == "U": x = self.xu - y = self.yu corners_x = self.supergrid["x_full"] - corners_y = self.supergrid["y_full"] - elif grid_type == "V": + elif grid_type["x"] == "V": x = self.xv - y = self.yv corners_x = self.supergrid["x_full"] - corners_y = self.supergrid["y_full"] - elif grid_type == "Q": + elif grid_type["x"] == "Q": x = self.xq - y = self.yq corners_x = self.xq + else: + raise ValueError(f"Unsupported grid_type: x {grid_type['x']}") + + if grid_type["y"] == "T": + y = self.yt + corners_y = self.yq + elif grid_type["y"] == "U": + y = self.yu + corners_y = self.supergrid["y_full"] + elif grid_type["y"] == "V": + y = self.yv + corners_y = self.supergrid["y_full"] + elif grid_type["y"] == "Q": + y = self.yq corners_y = self.yq else: - raise ValueError(f"Unsupported grid_type: {grid_type}") + raise ValueError(f"Unsupported grid_type: y {grid_type['y']}") corners_x = (corners_x + 360) % 360 @@ -144,35 +152,69 @@ def extract_grid(self, grid_type: str): lat = xr.DataArray(y, dims=("j", "i"), name="latitude") lon = xr.DataArray((x + 360) % 360, dims=("j", "i"), name="longitude") - lat_bnds = ( - xr.concat( - [ - corners_y[:-1, :-1].expand_dims(vertices=[0]), - corners_y[:-1, 1:].expand_dims(vertices=[1]), - corners_y[1:, 1:].expand_dims(vertices=[2]), - corners_y[1:, :-1].expand_dims(vertices=[3]), - ], - dim="vertices", + # Calculate corner coordinates {"U", "V"} grids have half the number of corners in that direction + if grid_type["y"] in {"U", "V"}: + lat_bnds = ( + xr.concat( + [ + corners_x[:-1:2, :-1:2].expand_dims(vertices=[0]), + corners_x[:-1:2, 1:-1:2].expand_dims(vertices=[1]), + corners_x[1::2, 1:-1:2].expand_dims(vertices=[2]), + corners_x[1::2, :-1:2].expand_dims(vertices=[3]), + ], + dim="vertices", + ) + .rename({"j_full": "j", "i_full": "i"}) + .transpose("j", "i", "vertices") + .rename("vertices_latitude") + ) + else: + lat_bnds = ( + xr.concat( + [ + corners_y[:-1, :-1].expand_dims(vertices=[0]), + corners_y[:-1, 1:].expand_dims(vertices=[1]), + corners_y[1:, 1:].expand_dims(vertices=[2]), + corners_y[1:, :-1].expand_dims(vertices=[3]), + ], + dim="vertices", + ) + .rename({"j_full": "j", "i_full": "i"}) + .transpose("j", "i", "vertices") + .rename("vertices_latitude") ) - .rename({"j_full": "j", "i_full": "i"}) - .transpose("j", "i", "vertices") - .rename("vertices_latitude") - ) - lon_bnds = ( - xr.concat( - [ - corners_x[:-1, :-1].expand_dims(vertices=[0]), - corners_x[:-1, 1:].expand_dims(vertices=[1]), - corners_x[1:, 1:].expand_dims(vertices=[2]), - corners_x[1:, :-1].expand_dims(vertices=[3]), - ], - dim="vertices", + # Calculate corner coordinates {"U", "V"} grids have half the number of corners in that direction + if grid_type["x"] in {"U", "V"}: + lon_bnds = ( + xr.concat( + [ + corners_x[:-1:2, :-1:2].expand_dims(vertices=[0]), + corners_x[:-1:2, 1:-1:2].expand_dims(vertices=[1]), + corners_x[1::2, 1:-1:2].expand_dims(vertices=[2]), + corners_x[1::2, :-1:2].expand_dims(vertices=[3]), + ], + dim="vertices", + ) + .rename({"j_full": "j", "i_full": "i"}) + .transpose("j", "i", "vertices") + .rename("vertices_longitude") + ) + else: + lon_bnds = ( + xr.concat( + [ + corners_x[:-1, :-1].expand_dims(vertices=[0]), + corners_x[:-1, 1:].expand_dims(vertices=[1]), + corners_x[1:, 1:].expand_dims(vertices=[2]), + corners_x[1:, :-1].expand_dims(vertices=[3]), + ], + dim="vertices", + ) + .rename({"j_full": "j", "i_full": "i"}) + .transpose("j", "i", "vertices") + .rename("vertices_longitude") ) - .rename({"j_full": "j", "i_full": "i"}) - .transpose("j", "i", "vertices") - .rename("vertices_longitude") - ) return { "i": i_coord, diff --git a/src/access_moppy/vocabulary_processors.py b/src/access_moppy/vocabulary_processors.py index 4677d4d..b019721 100644 --- a/src/access_moppy/vocabulary_processors.py +++ b/src/access_moppy/vocabulary_processors.py @@ -153,7 +153,15 @@ def _get_axes(self) -> Dict[str, Any]: axes = json.load(f)["axis_entry"] dims = self.variable["dimensions"].split() - return {dim: {k: v for k, v in axes[dim].items() if v != ""} for dim in dims} + result = {} + # handle "olevel" specially as it maps to "depth_coord" + for dim in dims: + if dim == "olevel": + coord = axes["depth_coord"] + else: + coord = axes[dim] + result[dim] = {k: v for k, v in coord.items() if v != ""} + return result def get_variant_components(self) -> Dict[str, int]: pattern = re.compile( From 0f20c2cddcea7304c12772c6f920efae8be9679a Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Wed, 24 Sep 2025 15:00:20 +1000 Subject: [PATCH 02/18] format organising --- src/access_moppy/ocean.py | 2 +- src/access_moppy/ocean_supergrid.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/access_moppy/ocean.py b/src/access_moppy/ocean.py index 6b518e8..c4305d5 100644 --- a/src/access_moppy/ocean.py +++ b/src/access_moppy/ocean.py @@ -57,7 +57,7 @@ def infer_grid_type(self): for grid, required in coord_sets.items(): if coord in required: grid_dict["y"] = grid - + if set(grid_dict.keys()) == {"x", "y"}: return grid_dict else: diff --git a/src/access_moppy/ocean_supergrid.py b/src/access_moppy/ocean_supergrid.py index cc5cf10..77060ae 100644 --- a/src/access_moppy/ocean_supergrid.py +++ b/src/access_moppy/ocean_supergrid.py @@ -117,7 +117,7 @@ def extract_grid(self, grid_type: str): corners_x = self.xq else: raise ValueError(f"Unsupported grid_type: x {grid_type['x']}") - + if grid_type["y"] == "T": y = self.yt corners_y = self.yq @@ -200,7 +200,7 @@ def extract_grid(self, grid_type: str): .transpose("j", "i", "vertices") .rename("vertices_longitude") ) - else: + else: lon_bnds = ( xr.concat( [ From 81d3d755371afc04f2b5a1755439da12bae59e60 Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Wed, 24 Sep 2025 15:15:41 +1000 Subject: [PATCH 03/18] format organising --- src/access_moppy/ocean.py | 2 +- src/access_moppy/ocean_supergrid.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/access_moppy/ocean.py b/src/access_moppy/ocean.py index c4305d5..bb023f5 100644 --- a/src/access_moppy/ocean.py +++ b/src/access_moppy/ocean.py @@ -95,7 +95,7 @@ def select_and_process_variables(self): k: v for k, v in dim_rename.items() if k in self.ds[self.cmor_name].dims } self.ds[self.cmor_name] = self.ds[self.cmor_name].rename(dims_to_rename) - print(self.ds[self.cmor_name]) + if self.ds[self.cmor_name].ndim == 3: self.ds[self.cmor_name] = self.ds[self.cmor_name].transpose( "time", "j", "i" diff --git a/src/access_moppy/ocean_supergrid.py b/src/access_moppy/ocean_supergrid.py index 77060ae..81c130f 100644 --- a/src/access_moppy/ocean_supergrid.py +++ b/src/access_moppy/ocean_supergrid.py @@ -102,7 +102,6 @@ def load_supergrid(self, supergrid_file: str): self.yq = self.supergrid["y_full"][::2, ::2] def extract_grid(self, grid_type: str): - print("grid_type:", grid_type) if grid_type["x"] == "T": x = self.xt corners_x = self.xq From 4e36710df0bf4e87216a975884a96fbecb5cae8b Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Wed, 24 Sep 2025 22:49:37 +1000 Subject: [PATCH 04/18] Update write() to prevent Dask crashes due to excessive memory usage --- src/access_moppy/base.py | 174 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 172 insertions(+), 2 deletions(-) diff --git a/src/access_moppy/base.py b/src/access_moppy/base.py index e3f63ab..3c940ff 100644 --- a/src/access_moppy/base.py +++ b/src/access_moppy/base.py @@ -177,11 +177,76 @@ def _update_latest_symlink(self, versioned_path: Path): except Exception as e: print(f"Warning: Failed to update latest symlink at {latest_link}: {e}") + # def write(self): + # attrs = self.ds.attrs + # required_keys = [ + # "variable_id", + # "table_id", + # "source_id", + # "experiment_id", + # "variant_label", + # "grid_label", + # ] + # missing = [k for k in required_keys if k not in attrs] + # if missing: + # raise ValueError( + # f"Missing required CMIP6 global attributes for filename: {missing}" + # ) + + # time_var = self.ds[self.cmor_name].coords["time"] + # units = time_var.attrs["units"] + # calendar = time_var.attrs.get("calendar", "standard").lower() + # times = num2date(time_var.values[[0, -1]], units=units, calendar=calendar) + # start, end = [f"{t.year:04d}{t.month:02d}" for t in times] + # time_range = f"{start}-{end}" + + # filename = ( + # f"{attrs['variable_id']}_{attrs['table_id']}_{attrs['source_id']}_" + # f"{attrs['experiment_id']}_{attrs['variant_label']}_" + # f"{attrs['grid_label']}_{time_range}.nc" + # ) + + # if self.drs_root: + # drs_path = self._build_drs_path(attrs) + # drs_path.mkdir(parents=True, exist_ok=True) + # path = drs_path / filename + # self._update_latest_symlink(drs_path) + # else: + # path = Path(self.output_path) / filename + # path.parent.mkdir(parents=True, exist_ok=True) + + # with nc.Dataset(path, "w", format="NETCDF4") as dst: + # for k, v in attrs.items(): + # dst.setncattr(k, v) + # for dim, size in self.ds.sizes.items(): + # if dim == "time": + # dst.createDimension(dim, None) # Unlimited dimension + # else: + # dst.createDimension(dim, size) + # for var in self.ds.variables: + # vdat = self.ds[var] + # fill = None if var.endswith("_bnds") else vdat.attrs.get("_FillValue") + # v = ( + # dst.createVariable(var, str(vdat.dtype), vdat.dims, fill_value=fill) + # if fill + # else dst.createVariable(var, str(vdat.dtype), vdat.dims) + # ) + # if not var.endswith("_bnds"): + # for a, val in vdat.attrs.items(): + # if a != "_FillValue": + # v.setncattr(a, val) + # v[:] = vdat.values + + # print(f"CMORised output written to {path}") + def write(self): + import gc + import psutil + attrs = self.ds.attrs required_keys = [ "variable_id", - "table_id", + "table_id", "source_id", "experiment_id", "variant_label", @@ -216,28 +281,133 @@ def write(self): path.parent.mkdir(parents=True, exist_ok=True) with nc.Dataset(path, "w", format="NETCDF4") as dst: + # Set global attributes for k, v in attrs.items(): dst.setncattr(k, v) + + # Create dimensions for dim, size in self.ds.sizes.items(): if dim == "time": dst.createDimension(dim, None) # Unlimited dimension else: dst.createDimension(dim, size) + + # Create variables and write data for var in self.ds.variables: vdat = self.ds[var] fill = None if var.endswith("_bnds") else vdat.attrs.get("_FillValue") + + # Create variable v = ( dst.createVariable(var, str(vdat.dtype), vdat.dims, fill_value=fill) if fill else dst.createVariable(var, str(vdat.dtype), vdat.dims) ) + + # Set variable attributes (except _FillValue which is handled above) if not var.endswith("_bnds"): for a, val in vdat.attrs.items(): if a != "_FillValue": v.setncattr(a, val) - v[:] = vdat.values + + # Write data with memory management + print(f"Writing variable: {var} (shape: {vdat.shape})") + + try: + # Check data size and available memory + data_size_gb = vdat.nbytes / 1e9 + available_mem_gb = psutil.virtual_memory().available / 1e9 + + print(f" Data size: {data_size_gb:.2f} GB") + print(f" Available memory: {available_mem_gb:.2f} GB") + + # If data is small enough or not chunked, write directly + if data_size_gb < available_mem_gb * 0.5 and (not hasattr(vdat, 'chunks') or vdat.chunks is None): + print(f" Writing {var} directly...") + v[:] = vdat.values + + # For large or chunked data, write in time slices + elif "time" in vdat.dims: + print(f" Writing {var} in time slices...") + time_axis = vdat.dims.index("time") + n_times = vdat.shape[time_axis] + + # Write one time step at a time + for t in range(n_times): + if t % 10 == 0: # Progress indicator + print(f" Time step {t+1}/{n_times}") + + # Create slice for time dimension + slices = [slice(None)] * len(vdat.dims) + slices[time_axis] = t + + # Get data for this time step + time_data = vdat[tuple(slices)] + + # Compute if it's a dask array + if hasattr(time_data, 'compute'): + time_data = time_data.compute() + + # Write to netCDF + v_slices = [slice(None)] * len(v.dimensions) + v_slices[time_axis] = t + v[tuple(v_slices)] = time_data.values + + # Garbage collect every 5 time steps + if t % 5 == 4: + gc.collect() + + # For non-time variables or small spatial data + else: + print(f" Writing {var} with chunking...") + if hasattr(vdat, 'compute'): + # For dask arrays, compute in chunks + chunk_data = vdat.compute() + v[:] = chunk_data.values + else: + v[:] = vdat.values + + except MemoryError as e: + print(f" Memory error writing {var}, trying alternative approach...") + + # Fallback: write in smaller spatial chunks + if len(vdat.shape) >= 3: # Has spatial dimensions + # Write in blocks + if "time" in vdat.dims: + time_axis = vdat.dims.index("time") + for t in range(vdat.shape[time_axis]): + print(f" Fallback: Time step {t+1}/{vdat.shape[time_axis]}") + slices = [slice(None)] * len(vdat.dims) + slices[time_axis] = t + + time_slice = vdat[tuple(slices)] + if hasattr(time_slice, 'compute'): + time_slice = time_slice.compute() + + v_slices = [slice(None)] * len(v.dimensions) + v_slices[time_axis] = t + v[tuple(v_slices)] = time_slice.values + + gc.collect() + else: + # For non-time variables, just try direct assignment + if hasattr(vdat, 'compute'): + vdat = vdat.compute() + v[:] = vdat.values + else: + raise e + + except Exception as e: + print(f"Error writing variable {var}: {e}") + raise e + + print(f" Finished writing {var}") + gc.collect() print(f"CMORised output written to {path}") + + # Final garbage collection + gc.collect() def run(self, write_output: bool = False): self.select_and_process_variables() From fbd3c3b6489c197b50aade40aa3cde3c35330a21 Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Thu, 25 Sep 2025 16:16:20 +1000 Subject: [PATCH 05/18] fake om2_01 metadata --- .../CMIP6_CVs/CMIP6_source_id.json | 10625 ++++++++-------- 1 file changed, 5341 insertions(+), 5284 deletions(-) diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json index daf33b3..f18aadc 100644 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json +++ b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json @@ -1,64 +1,64 @@ { - "source_id":{ - "4AOP-v1-5":{ - "activity_participation":[ + "source_id": { + "4AOP-v1-5": { + "activity_participation": [ "RFMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "IPSL" ], - "label":"4AOP-v1-5", - "label_extended":"Line-By-Line Radiative Transfer Model v1.5, Laboratoire Meteorologie Dynamique, GEISA spectroscopic database", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2020-06-11: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "4AOP-v1-5", + "label_extended": "Line-By-Line Radiative Transfer Model v1.5, Laboratoire Meteorologie Dynamique, GEISA spectroscopic database", + "license_info": { + "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", + "history": "2020-06-11: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" + "atmos": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" + "land": { + "description": "none", + "native_nominal_resolution": "none" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2019", - "source_id":"4AOP-v1-5" + "release_year": "2019", + "source_id": "4AOP-v1-5" }, - "ACCESS-CM2":{ - "activity_participation":[ + "ACCESS-CM2": { + "activity_participation": [ "CMIP", "DAMIP", "FAFMIP", @@ -67,61 +67,61 @@ "SIMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CSIRO-ARCCSS" ], - "label":"ACCESS-CM2", - "label_extended":"Australian Community Climate and Earth System Simulator Climate Model Version 2", - "license_info":{ - "exceptions_contact":"@csiro.au <- access_csiro", - "history":"2019-11-08: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "ACCESS-CM2", + "label_extended": "Australian Community Climate and Earth System Simulator Climate Model Version 2", + "license_info": { + "exceptions_contact": "@csiro.au <- access_csiro", + "history": "2019-11-08: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "UKCA-GLOMAP-mode", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CABLE2.5", - "native_nominal_resolution":"250 km" + "land": { + "description": "CABLE2.5", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"ACCESS-OM2 (GFDL-MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "ACCESS-OM2 (GFDL-MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE5.1.2 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE5.1.2 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"ACCESS-CM2" + "release_year": "2019", + "source_id": "ACCESS-CM2" }, - "ACCESS-ESM1-5":{ - "activity_participation":[ + "ACCESS-ESM1-5": { + "activity_participation": [ "C4MIP", "CDRMIP", "CMIP", @@ -132,232 +132,289 @@ "RFMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CSIRO" ], - "label":"ACCESS-ESM1.5", - "label_extended":"Australian Community Climate and Earth System Simulator Earth System Model Version 1.5", - "license_info":{ - "exceptions_contact":"@csiro.au <- access_csiro", - "history":"2019-11-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "ACCESS-ESM1.5", + "label_extended": "Australian Community Climate and Earth System Simulator Earth System Model Version 1.5", + "license_info": { + "exceptions_contact": "@csiro.au <- access_csiro", + "history": "2019-11-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"CLASSIC (v1.0)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "CLASSIC (v1.0)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CABLE2.4", - "native_nominal_resolution":"250 km" + "land": { + "description": "CABLE2.4", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"WOMBAT (same grid as ocean)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "WOMBAT (same grid as ocean)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE4.1 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4.1 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"ACCESS-ESM1-5" + "release_year": "2019", + "source_id": "ACCESS-ESM1-5" }, - "ACCESS-OM2":{ - "activity_participation":[ + "ACCESS-OM2": { + "activity_participation": [ "OMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CSIRO-COSIMA" ], - "label":"ACCESS-OM2", - "label_extended":"Australian Community Climate and Earth System Simulator Ocean Model Version 2", - "license_info":{ - "exceptions_contact":"@csiro.au <- access_csiro", - "history":"2021-06-16: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "ACCESS-OM2", + "label_extended": "Australian Community Climate and Earth System Simulator Ocean Model Version 2", + "license_info": { + "exceptions_contact": "@csiro.au <- access_csiro", + "history": "2021-06-16: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" + "atmos": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" + "land": { + "description": "none", + "native_nominal_resolution": "none" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-2.3 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-2.3 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"WOMBAT (same grid as ocean)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "WOMBAT (same grid as ocean)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE5.1.2 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE5.1.2 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2020", - "source_id":"ACCESS-OM2" + "release_year": "2020", + "source_id": "ACCESS-OM2" }, - "ACCESS-OM2-025":{ - "activity_participation":[ + "ACCESS-OM2-025": { + "activity_participation": [ "OMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CSIRO-COSIMA" ], - "label":"ACCESS-OM2-025", - "label_extended":"Australian Community Climate and Earth System Simulator Ocean Model Version 2 quarter degree", - "license_info":{ - "exceptions_contact":"@csiro.au <- access_csiro", - "history":"2021-06-17: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "ACCESS-OM2-025", + "label_extended": "Australian Community Climate and Earth System Simulator Ocean Model Version 2 quarter degree", + "license_info": { + "exceptions_contact": "@csiro.au <- access_csiro", + "history": "2021-06-17: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" + "atmos": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" + "land": { + "description": "none", + "native_nominal_resolution": "none" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"ACCESS-OM2 (MOM5, tripolar primarily 1/4 deg; 1440 x 1080 longitude/latitude; 50 levels; top grid cell 0-2.3 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "ACCESS-OM2 (MOM5, tripolar primarily 1/4 deg; 1440 x 1080 longitude/latitude; 50 levels; top grid cell 0-2.3 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"WOMBAT (same grid as ocean)", - "native_nominal_resolution":"25 km" + "ocnBgchem": { + "description": "WOMBAT (same grid as ocean)", + "native_nominal_resolution": "25 km" }, - "seaIce":{ - "description":"CICE5.1.2 (same grid as ocean)", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "CICE5.1.2 (same grid as ocean)", + "native_nominal_resolution": "25 km" } }, - "release_year":"2020", - "source_id":"ACCESS-OM2-025" + "release_year": "2020", + "source_id": "ACCESS-OM2-025" }, - "ARTS-2-3":{ - "activity_participation":[ + "ACCESS-OM2-01": { + "activity_participation": [ + "OMIP" + ], + "cohort": [ + "not-Published" + ], + "institution_id": [ + "CSIRO-COSIMA" + ], + "label": "ACCESS-OM2-01", + "label_extended": "Australian Community Climate and Earth System Simulator Ocean Model Version 2 0.1 degree", + "license_info": { + "exceptions_contact": "@csiro.au <- access_csiro", + "history": "2021-06-17: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" + }, + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" + }, + "atmos": { + "description": "none", + "native_nominal_resolution": "none" + }, + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" + }, + "land": { + "description": "none", + "native_nominal_resolution": "none" + }, + "landIce": { + "description": "none", + "native_nominal_resolution": "none" + }, + "ocean": { + "description": "ACCESS-OM2 (MOM5, tripolar primarily 1/10 deg; 3600 x 2700 longitude/latitude; 75 levels; top grid cell 0-2.3 m)", + "native_nominal_resolution": "10 km" + }, + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" + }, + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" + } + }, + "release_year": "", + "source_id": "" + }, + "ARTS-2-3": { + "activity_participation": [ "RFMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "UHH" ], - "label":"ARTS 2.3", - "label_extended":"ARTS 2.3 (Current development version of the Atmospheric Radiative Transfer Simulator)", - "license_info":{ - "exceptions_contact":"@uni-hamburg.de <- oliver.lemke", - "history":"2019-06-20: initially published under CC BY-NC-SA 4.0; 2022-07-31: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "ARTS 2.3", + "label_extended": "ARTS 2.3 (Current development version of the Atmospheric Radiative Transfer Simulator)", + "license_info": { + "exceptions_contact": "@uni-hamburg.de <- oliver.lemke", + "history": "2019-06-20: initially published under CC BY-NC-SA 4.0; 2022-07-31: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" + "atmos": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" + "land": { + "description": "none", + "native_nominal_resolution": "none" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2015", - "source_id":"ARTS-2-3" + "release_year": "2015", + "source_id": "ARTS-2-3" }, - "AWI-CM-1-1-HR":{ - "activity_participation":[ + "AWI-CM-1-1-HR": { + "activity_participation": [ "CMIP", "CORDEX", "HighResMIP", @@ -365,61 +422,61 @@ "SIMIP", "VIACSAB" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "AWI" ], - "label":"AWI-CM 1.1 HR", - "label_extended":"AWI-CM 1.1 HR", - "license_info":{ - "exceptions_contact":"@awi.de <- mip-contact", - "history":"2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "AWI-CM 1.1 HR", + "label_extended": "AWI-CM 1.1 HR", + "license_info": { + "exceptions_contact": "@awi.de <- mip-contact", + "history": "2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JSBACH 3.20", - "native_nominal_resolution":"100 km" + "land": { + "description": "JSBACH 3.20", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"FESOM 1.4 (unstructured grid in the horizontal with 1306775 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "FESOM 1.4 (unstructured grid in the horizontal with 1306775 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"FESOM 1.4", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "FESOM 1.4", + "native_nominal_resolution": "25 km" } }, - "release_year":"2018", - "source_id":"AWI-CM-1-1-HR" + "release_year": "2018", + "source_id": "AWI-CM-1-1-HR" }, - "AWI-CM-1-1-LR":{ - "activity_participation":[ + "AWI-CM-1-1-LR": { + "activity_participation": [ "CMIP", "CORDEX", "HighResMIP", @@ -428,61 +485,61 @@ "ScenarioMIP", "VIACSAB" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "AWI" ], - "label":"AWI-CM 1.1 LR", - "label_extended":"AWI-CM 1.1 LR", - "license_info":{ - "exceptions_contact":"@awi.de <- mip-contact", - "history":"2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "AWI-CM 1.1 LR", + "label_extended": "AWI-CM 1.1 LR", + "license_info": { + "exceptions_contact": "@awi.de <- mip-contact", + "history": "2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JSBACH 3.20", - "native_nominal_resolution":"250 km" + "land": { + "description": "JSBACH 3.20", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"FESOM 1.4", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "FESOM 1.4", + "native_nominal_resolution": "100 km" } }, - "release_year":"2018", - "source_id":"AWI-CM-1-1-LR" + "release_year": "2018", + "source_id": "AWI-CM-1-1-LR" }, - "AWI-CM-1-1-MR":{ - "activity_participation":[ + "AWI-CM-1-1-MR": { + "activity_participation": [ "CMIP", "CORDEX", "OMIP", @@ -491,237 +548,237 @@ "ScenarioMIP", "VIACSAB" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "AWI" ], - "label":"AWI-CM 1.1 MR", - "label_extended":"AWI-CM 1.1 MR", - "license_info":{ - "exceptions_contact":"@awi.de <- mip-contact", - "history":"2018-12-18: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "AWI-CM 1.1 MR", + "label_extended": "AWI-CM 1.1 MR", + "license_info": { + "exceptions_contact": "@awi.de <- mip-contact", + "history": "2018-12-18: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JSBACH 3.20", - "native_nominal_resolution":"100 km" + "land": { + "description": "JSBACH 3.20", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"FESOM 1.4 (unstructured grid in the horizontal with 830305 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "FESOM 1.4 (unstructured grid in the horizontal with 830305 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"FESOM 1.4", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "FESOM 1.4", + "native_nominal_resolution": "25 km" } }, - "release_year":"2018", - "source_id":"AWI-CM-1-1-MR" + "release_year": "2018", + "source_id": "AWI-CM-1-1-MR" }, - "AWI-ESM-1-1-LR":{ - "activity_participation":[ + "AWI-ESM-1-1-LR": { + "activity_participation": [ "CMIP", "PMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "AWI" ], - "label":"AWI-ESM 1.1 LR", - "label_extended":"AWI-ESM 1.1 LR", - "license_info":{ - "exceptions_contact":"@awi.de <- mip-contact", - "history":"2020-02-12: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "AWI-ESM 1.1 LR", + "label_extended": "AWI-ESM 1.1 LR", + "license_info": { + "exceptions_contact": "@awi.de <- mip-contact", + "history": "2020-02-12: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JSBACH 3.20 with dynamic vegetation", - "native_nominal_resolution":"250 km" + "land": { + "description": "JSBACH 3.20 with dynamic vegetation", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"FESOM 1.4", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "FESOM 1.4", + "native_nominal_resolution": "100 km" } }, - "release_year":"2018", - "source_id":"AWI-ESM-1-1-LR" + "release_year": "2018", + "source_id": "AWI-ESM-1-1-LR" }, - "AWI-ESM-1-REcoM":{ - "activity_participation":[ + "AWI-ESM-1-REcoM": { + "activity_participation": [ "C4MIP", "CDRMIP", "CMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "AWI" ], - "label":"AWI-ESM 1 REcoM", - "label_extended":"AWI-ESM 1 REcoM", - "license_info":{ - "exceptions_contact":"@awi.de <- mip-contact", - "history":"2024-07-04: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "AWI-ESM 1 REcoM", + "label_extended": "AWI-ESM 1 REcoM", + "license_info": { + "exceptions_contact": "@awi.de <- mip-contact", + "history": "2024-07-04: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JSBACH 3.20 with dynamic vegetation", - "native_nominal_resolution":"250 km" + "land": { + "description": "JSBACH 3.20 with dynamic vegetation", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"REcoM2 (same grid as ocean component)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "REcoM2 (same grid as ocean component)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"FESOM 1.4 (same grid as ocean component)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "FESOM 1.4 (same grid as ocean component)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2024", - "source_id":"AWI-ESM-1-REcoM" + "release_year": "2024", + "source_id": "AWI-ESM-1-REcoM" }, - "BCC-CSM2-HR":{ - "activity_participation":[ + "BCC-CSM2-HR": { + "activity_participation": [ "CMIP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "BCC" ], - "label":"BCC-CSM 2 HR", - "label_extended":"BCC-CSM 2 HR", - "license_info":{ - "exceptions_contact":"@cma.gov.cn <- twwu", - "history":"2020-07-21: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "BCC-CSM 2 HR", + "label_extended": "BCC-CSM 2 HR", + "license_info": { + "exceptions_contact": "@cma.gov.cn <- twwu", + "history": "2020-07-21: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"BCC_AGCM3_HR (T266; 800 x 400 longitude/latitude; 56 levels; top level 0.1 hPa)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "BCC_AGCM3_HR (T266; 800 x 400 longitude/latitude; 56 levels; top level 0.1 hPa)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"BCC_AVIM2", - "native_nominal_resolution":"50 km" + "land": { + "description": "BCC_AVIM2", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"SIS2", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "SIS2", + "native_nominal_resolution": "50 km" } }, - "release_year":"2017", - "source_id":"BCC-CSM2-HR" + "release_year": "2017", + "source_id": "BCC-CSM2-HR" }, - "BCC-CSM2-MR":{ - "activity_participation":[ + "BCC-CSM2-MR": { + "activity_participation": [ "C4MIP", "CFMIP", "CMIP", @@ -733,294 +790,294 @@ "RFMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "BCC" ], - "label":"BCC-CSM 2 MR", - "label_extended":"BCC-CSM 2 MR", - "license_info":{ - "exceptions_contact":"@cma.gov.cn <- twwu", - "history":"2018-10-09: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "BCC-CSM 2 MR", + "label_extended": "BCC-CSM 2 MR", + "license_info": { + "exceptions_contact": "@cma.gov.cn <- twwu", + "history": "2018-10-09: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"BCC_AGCM3_MR (T106; 320 x 160 longitude/latitude; 46 levels; top level 1.46 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "BCC_AGCM3_MR (T106; 320 x 160 longitude/latitude; 46 levels; top level 1.46 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"BCC_AVIM2", - "native_nominal_resolution":"100 km" + "land": { + "description": "BCC_AVIM2", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"SIS2", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "SIS2", + "native_nominal_resolution": "50 km" } }, - "release_year":"2017", - "source_id":"BCC-CSM2-MR" + "release_year": "2017", + "source_id": "BCC-CSM2-MR" }, - "BCC-ESM1":{ - "activity_participation":[ + "BCC-ESM1": { + "activity_participation": [ "AerChemMIP", "CMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "BCC" ], - "label":"BCC-ESM 1", - "label_extended":"BCC-ESM 1", - "license_info":{ - "exceptions_contact":"@cma.gov.cn <- twwu", - "history":"2018-11-14: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "BCC-ESM 1", + "label_extended": "BCC-ESM 1", + "license_info": { + "exceptions_contact": "@cma.gov.cn <- twwu", + "history": "2018-11-14: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"BCC_AGCM3_LR (T42; 128 x 64 longitude/latitude; 26 levels; top level 2.19 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "BCC_AGCM3_LR (T42; 128 x 64 longitude/latitude; 26 levels; top level 2.19 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"BCC-AGCM3-Chem", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "BCC-AGCM3-Chem", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"BCC_AVIM2", - "native_nominal_resolution":"250 km" + "land": { + "description": "BCC_AVIM2", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"SIS2", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "SIS2", + "native_nominal_resolution": "50 km" } }, - "release_year":"2017", - "source_id":"BCC-ESM1" + "release_year": "2017", + "source_id": "BCC-ESM1" }, - "CAM-MPAS-HR":{ - "activity_participation":[ + "CAM-MPAS-HR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "PNNL-WACCEM" ], - "label":"CAM-MPAS-HR", - "label_extended":"CAM MPAS (Community Atmosphere Model - Model for Prediction Across Scales)", - "license_info":{ - "exceptions_contact":"@pnnl.gov <- bryce.harrop", - "history":"2025-03-25: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CAM-MPAS-HR", + "label_extended": "CAM MPAS (Community Atmosphere Model - Model for Prediction Across Scales)", + "license_info": { + "exceptions_contact": "@pnnl.gov <- bryce.harrop", + "history": "2025-03-25: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none, prescribed MACv2-SP", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none, prescribed MACv2-SP", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 30 km mesh with 655362 cells and 1966080 edges; 32 levels, top level 40363 m)", - "native_nominal_resolution":"25 km" + "atmos": { + "description": "CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 30 km mesh with 655362 cells and 1966080 edges; 32 levels, top level 40363 m)", + "native_nominal_resolution": "25 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CLM (v4.0, same grid as atmos), River Transport Model (v1.0)", - "native_nominal_resolution":"25 km" + "land": { + "description": "CLM (v4.0, same grid as atmos), River Transport Model (v1.0)", + "native_nominal_resolution": "25 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2018", - "source_id":"CAM-MPAS-HR" + "release_year": "2018", + "source_id": "CAM-MPAS-HR" }, - "CAM-MPAS-LR":{ - "activity_participation":[ + "CAM-MPAS-LR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "PNNL-WACCEM" ], - "label":"CAM-MPAS-LR", - "label_extended":"CAM MPAS (Community Atmosphere Model - Model for Prediction Across Scales)", - "license_info":{ - "exceptions_contact":"@pnnl.gov <- bryce.harrop", - "history":"2025-03-25: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CAM-MPAS-LR", + "label_extended": "CAM MPAS (Community Atmosphere Model - Model for Prediction Across Scales)", + "license_info": { + "exceptions_contact": "@pnnl.gov <- bryce.harrop", + "history": "2025-03-25: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none, prescribed MACv2-SP", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "none, prescribed MACv2-SP", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 120 km mesh with 40962 cells and 122880 edges; 32 vertical levels, model top 40363 m)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 120 km mesh with 40962 cells and 122880 edges; 32 vertical levels, model top 40363 m)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CLM (v4.0, same grid as atmos), River Transport Model (v1.0)", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM (v4.0, same grid as atmos), River Transport Model (v1.0)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2018", - "source_id":"CAM-MPAS-LR" + "release_year": "2018", + "source_id": "CAM-MPAS-LR" }, - "CAMS-CSM1-0":{ - "activity_participation":[ + "CAMS-CSM1-0": { + "activity_participation": [ "CFMIP", "CMIP", "GMMIP", "HighResMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CAMS" ], - "label":"CAMS-CSM 1.0", - "label_extended":"CAMS-CSM 1.0", - "license_info":{ - "exceptions_contact":"@cma.gov.cn <- rongxy", - "history":"2019-07-08: initially published under CC BY-SA 4.0; 2022-09-29 relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CAMS-CSM 1.0", + "label_extended": "CAMS-CSM 1.0", + "license_info": { + "exceptions_contact": "@cma.gov.cn <- rongxy", + "history": "2019-07-08: initially published under CC BY-SA 4.0; 2022-09-29 relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"ECHAM5_CAMS (T106; 320 x 160 longitude/latitude; 31 levels; top level 10 mb)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "ECHAM5_CAMS (T106; 320 x 160 longitude/latitude; 31 levels; top level 10 mb)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CoLM 1.0", - "native_nominal_resolution":"100 km" + "land": { + "description": "CoLM 1.0", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MOM4 (tripolar; 360 x 200 longitude/latitude, primarily 1deg latitude/longitude, down to 1/3deg within 30deg of the equatorial tropics; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "MOM4 (tripolar; 360 x 200 longitude/latitude, primarily 1deg latitude/longitude, down to 1/3deg within 30deg of the equatorial tropics; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"SIS 1.0", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "SIS 1.0", + "native_nominal_resolution": "100 km" } }, - "release_year":"2016", - "source_id":"CAMS-CSM1-0" + "release_year": "2016", + "source_id": "CAMS-CSM1-0" }, - "CAS-ESM2-0":{ - "activity_participation":[ + "CAS-ESM2-0": { + "activity_participation": [ "AerChemMIP", "C4MIP", "CDRMIP", @@ -1042,291 +1099,291 @@ "VIACSAB", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CAS" ], - "label":"CAS-ESM 2.0", - "label_extended":"CAS-ESM 2.0 (Chinese Academy of Sciences Earth System Model version 2.0)", - "license_info":{ - "exceptions_contact":"@mail.iap.ac.cn <- zhanghe", - "history":"2020-03-01: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CAS-ESM 2.0", + "label_extended": "CAS-ESM 2.0 (Chinese Academy of Sciences Earth System Model version 2.0)", + "license_info": { + "exceptions_contact": "@mail.iap.ac.cn <- zhanghe", + "history": "2020-03-01: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"IAP AACM", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "IAP AACM", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"IAP AGCM 5.0 (Finite difference dynamical core; 256 x 128 longitude/latitude; 35 levels; top level 2.2 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "IAP AGCM 5.0 (Finite difference dynamical core; 256 x 128 longitude/latitude; 35 levels; top level 2.2 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"IAP AACM", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "IAP AACM", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"CoLM", - "native_nominal_resolution":"100 km" + "land": { + "description": "CoLM", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"LICOM2.0 (LICOM2.0, primarily 1deg; 362 x 196 longitude/latitude; 30 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "LICOM2.0 (LICOM2.0, primarily 1deg; 362 x 196 longitude/latitude; 30 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"IAP OBGCM", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "IAP OBGCM", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE4", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"CAS-ESM2-0" + "release_year": "2019", + "source_id": "CAS-ESM2-0" }, - "CESM1-1-CAM5-CMIP5":{ - "activity_participation":[ + "CESM1-1-CAM5-CMIP5": { + "activity_participation": [ "CMIP", "DCPP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NCAR" ], - "label":"CESM1-1-CAM5-CMIP5", - "label_extended":"CESM1-1-CAM5-CMIP5", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2019-10-07: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CESM1-1-CAM5-CMIP5", + "label_extended": "CESM1-1-CAM5-CMIP5", + "license_info": { + "exceptions_contact": "@ucar.edu <- cesm_cmip6", + "history": "2019-10-07: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM3 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM3 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"CAM5.2 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "CAM5.2 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"MAM3 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "MAM3 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"CLM4 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM4 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"BEC (same grid as ocean)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "BEC (same grid as ocean)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE4 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2011", - "source_id":"CESM1-1-CAM5-CMIP5" + "release_year": "2011", + "source_id": "CESM1-1-CAM5-CMIP5" }, - "CESM1-CAM5-SE-HR":{ - "activity_participation":[ + "CESM1-CAM5-SE-HR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NCAR" ], - "label":"CESM1-CAM5-SE-HR", - "label_extended":"CESM 1.3 CAM5 spectral element configuration with CMIP5 forcings, hi res", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2020-07-24: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CESM1-CAM5-SE-HR", + "label_extended": "CESM 1.3 CAM5 spectral element configuration with CMIP5 forcings, hi res", + "license_info": { + "exceptions_contact": "@ucar.edu <- cesm_cmip6", + "history": "2020-07-24: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM3 (same grid as atmos)", - "native_nominal_resolution":"25 km" + "model_component": { + "aerosol": { + "description": "MAM3 (same grid as atmos)", + "native_nominal_resolution": "25 km" }, - "atmos":{ - "description":"CAM5.2 (0.25 degree spectral element; 777602 cells; 30 levels; top level 2.25 mb)", - "native_nominal_resolution":"25 km" + "atmos": { + "description": "CAM5.2 (0.25 degree spectral element; 777602 cells; 30 levels; top level 2.25 mb)", + "native_nominal_resolution": "25 km" }, - "atmosChem":{ - "description":"MAM3 (same grid as atmos)", - "native_nominal_resolution":"25 km" + "atmosChem": { + "description": "MAM3 (same grid as atmos)", + "native_nominal_resolution": "25 km" }, - "land":{ - "description":"CLM4 (same grid as atmos)", - "native_nominal_resolution":"25 km" + "land": { + "description": "CLM4 (same grid as atmos)", + "native_nominal_resolution": "25 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"POP2 (3600x2400 longitude/latitude; 62 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"10 km" + "ocean": { + "description": "POP2 (3600x2400 longitude/latitude; 62 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "10 km" }, - "ocnBgchem":{ - "description":"\"BEC (same grid as ocean)", - "native_nominal_resolution":"10 km" + "ocnBgchem": { + "description": "\"BEC (same grid as ocean)", + "native_nominal_resolution": "10 km" }, - "seaIce":{ - "description":"CICE4 (same grid as ocean)", - "native_nominal_resolution":"10 km" + "seaIce": { + "description": "CICE4 (same grid as ocean)", + "native_nominal_resolution": "10 km" } }, - "release_year":"2012", - "source_id":"CESM1-CAM5-SE-HR" + "release_year": "2012", + "source_id": "CESM1-CAM5-SE-HR" }, - "CESM1-CAM5-SE-LR":{ - "activity_participation":[ + "CESM1-CAM5-SE-LR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NCAR" ], - "label":"CESM1-CAM5-SE-LR", - "label_extended":"CESM 1.3 CAM5 spectral element configuration with CMIP5 forcings, lo res", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2020-07-08: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CESM1-CAM5-SE-LR", + "label_extended": "CESM 1.3 CAM5 spectral element configuration with CMIP5 forcings, lo res", + "license_info": { + "exceptions_contact": "@ucar.edu <- cesm_cmip6", + "history": "2020-07-08: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM3 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM3 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"CAM5.2 (1 degree spectral element; 48602 cells; 30 levels; top level 2.25 mb)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "CAM5.2 (1 degree spectral element; 48602 cells; 30 levels; top level 2.25 mb)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"MAM3 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "MAM3 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"CLM4 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM4 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"\"BEC (same grid as ocean)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "\"BEC (same grid as ocean)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE4 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2012", - "source_id":"CESM1-CAM5-SE-LR" + "release_year": "2012", + "source_id": "CESM1-CAM5-SE-LR" }, - "CESM1-WACCM-SC":{ - "activity_participation":[ + "CESM1-WACCM-SC": { + "activity_participation": [ "PAMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "UCI", "NCAR" ], - "label":"CESM1-WACCM-SC", - "label_extended":"Community Earth System Model 1, with the Whole Atmosphere Community Climate Model and Specified Chemistry", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2020-10-12: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CESM1-WACCM-SC", + "label_extended": "Community Earth System Model 1, with the Whole Atmosphere Community Climate Model and Specified Chemistry", + "license_info": { + "exceptions_contact": "@ucar.edu <- cesm_cmip6", + "history": "2020-10-12: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MOZART-specified (same grid as atmos)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "MOZART-specified (same grid as atmos)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"WACCM4 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 66 levels; top level 5.9e-06 mb)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "WACCM4 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 66 levels; top level 5.9e-06 mb)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"MOZART-specified (same grid as atmos)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "MOZART-specified (same grid as atmos)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"CLM4.0", - "native_nominal_resolution":"250 km" + "land": { + "description": "CLM4.0", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"BEC (same grid as ocean)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "BEC (same grid as ocean)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE4 (same as grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4 (same as grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2011", - "source_id":"CESM1-WACCM-SC" + "release_year": "2011", + "source_id": "CESM1-WACCM-SC" }, - "CESM2":{ - "activity_participation":[ + "CESM2": { + "activity_participation": [ "AerChemMIP", "C4MIP", "CDRMIP", @@ -1353,239 +1410,239 @@ "VIACSAB", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NCAR" ], - "label":"CESM2", - "label_extended":"CESM2", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2019-02-18: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CESM2", + "label_extended": "CESM2", + "license_info": { + "exceptions_contact": "@ucar.edu <- cesm_cmip6", + "history": "2019-02-18: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM4 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"CAM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "CAM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "MAM4 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"CLM5 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM5 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"CISM2.1", - "native_nominal_resolution":"5 km" + "landIce": { + "description": "CISM2.1", + "native_nominal_resolution": "5 km" }, - "ocean":{ - "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"MARBL (same grid as ocean)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "MARBL (same grid as ocean)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE5.1 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE5.1 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2018", - "source_id":"CESM2" + "release_year": "2018", + "source_id": "CESM2" }, - "CESM2-FV2":{ - "activity_participation":[ + "CESM2-FV2": { + "activity_participation": [ "CMIP", "PMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NCAR" ], - "label":"CESM2-FV2", - "label_extended":"CESM2-FV2", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CESM2-FV2", + "label_extended": "CESM2-FV2", + "license_info": { + "exceptions_contact": "@ucar.edu <- cesm_cmip6", + "history": "2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "MAM4 (same grid as atmos)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"CAM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 32 levels; top level 2.25 mb)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "CAM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 32 levels; top level 2.25 mb)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "MAM4 (same grid as atmos)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"CLM5 (same grid as atmos)", - "native_nominal_resolution":"250 km" + "land": { + "description": "CLM5 (same grid as atmos)", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"CISM2.1", - "native_nominal_resolution":"5 km" + "landIce": { + "description": "CISM2.1", + "native_nominal_resolution": "5 km" }, - "ocean":{ - "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"MARBL (same grid as ocean)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "MARBL (same grid as ocean)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE5.1 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE5.1 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"CESM2-FV2" + "release_year": "2019", + "source_id": "CESM2-FV2" }, - "CESM2-WACCM":{ - "activity_participation":[ + "CESM2-WACCM": { + "activity_participation": [ "AerChemMIP", "CMIP", "GeoMIP", "RFMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NCAR" ], - "label":"CESM2-WACCM", - "label_extended":"CESM2-WACCM", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2019-02-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CESM2-WACCM", + "label_extended": "CESM2-WACCM", + "license_info": { + "exceptions_contact": "@ucar.edu <- cesm_cmip6", + "history": "2019-02-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM4 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"WACCM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 70 levels; top level 4.5e-06 mb)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "WACCM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 70 levels; top level 4.5e-06 mb)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "MAM4 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"CLM5 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM5 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"CISM2.1", - "native_nominal_resolution":"5 km" + "landIce": { + "description": "CISM2.1", + "native_nominal_resolution": "5 km" }, - "ocean":{ - "description":"POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"MARBL (same grid as ocean)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "MARBL (same grid as ocean)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE5.1 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE5.1 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2018", - "source_id":"CESM2-WACCM" + "release_year": "2018", + "source_id": "CESM2-WACCM" }, - "CESM2-WACCM-FV2":{ - "activity_participation":[ + "CESM2-WACCM-FV2": { + "activity_participation": [ "CMIP", "PMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NCAR" ], - "label":"CESM2-WACCM-FV2", - "label_extended":"CESM2-WACCM-FV2", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CESM2-WACCM-FV2", + "label_extended": "CESM2-WACCM-FV2", + "license_info": { + "exceptions_contact": "@ucar.edu <- cesm_cmip6", + "history": "2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "MAM4 (same grid as atmos)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"WACCM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 70 levels; top level 4.5e-06 mb)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "WACCM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 70 levels; top level 4.5e-06 mb)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "MAM4 (same grid as atmos)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"CLM5 (same grid as atmos)", - "native_nominal_resolution":"250 km" + "land": { + "description": "CLM5 (same grid as atmos)", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"CISM2.1", - "native_nominal_resolution":"5 km" + "landIce": { + "description": "CISM2.1", + "native_nominal_resolution": "5 km" }, - "ocean":{ - "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"MARBL (same grid as ocean)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "MARBL (same grid as ocean)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE5.1 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE5.1 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"CESM2-WACCM-FV2" + "release_year": "2019", + "source_id": "CESM2-WACCM-FV2" }, - "CIESM":{ - "activity_participation":[ + "CIESM": { + "activity_participation": [ "CFMIP", "CMIP", "CORDEX", @@ -1595,120 +1652,120 @@ "SIMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "THU" ], - "label":"CIESM", - "label_extended":"Community Integrated Earth System Model", - "license_info":{ - "exceptions_contact":"@tsinghua.edu.cn <- yanluan", - "history":"2019-12-02: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CIESM", + "label_extended": "Community Integrated Earth System Model", + "license_info": { + "exceptions_contact": "@tsinghua.edu.cn <- yanluan", + "history": "2019-12-02: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM4", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM4", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"CIESM-AM (FV/FD; 288 x 192 longitude/latitude; 30 levels; top level 2.255 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "CIESM-AM (FV/FD; 288 x 192 longitude/latitude; 30 levels; top level 2.255 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"trop_mam4", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "trop_mam4", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"CIESM-LM (modified CLM4.5)", - "native_nominal_resolution":"100 km" + "land": { + "description": "CIESM-LM (modified CLM4.5)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"CIESM-OM (FD, SCCGrid Displaced Pole; 720 x 560 longitude/latitude; 46 levels; top grid cell 0-6 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "CIESM-OM (FD, SCCGrid Displaced Pole; 720 x 560 longitude/latitude; 46 levels; top grid cell 0-6 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE4", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "CICE4", + "native_nominal_resolution": "50 km" } }, - "release_year":"2017", - "source_id":"CIESM" + "release_year": "2017", + "source_id": "CIESM" }, - "CMCC-CM2-HR4":{ - "activity_participation":[ + "CMCC-CM2-HR4": { + "activity_participation": [ "CMIP", "HighResMIP", "OMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CMCC" ], - "label":"CMCC-CM2-HR4", - "label_extended":"CMCC-CM2-HR4", - "license_info":{ - "exceptions_contact":"@cmcc.it <- silvio.gualdi", - "history":"2017-07-06: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CMCC-CM2-HR4", + "label_extended": "CMCC-CM2-HR4", + "license_info": { + "exceptions_contact": "@cmcc.it <- silvio.gualdi", + "history": "2017-07-06: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"prescribed MACv2-SP", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "prescribed MACv2-SP", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"CAM4 (1deg; 288 x 192 longitude/latitude; 26 levels; top at ~2 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "CAM4 (1deg; 288 x 192 longitude/latitude; 26 levels; top at ~2 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CLM4.5 (SP mode)", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM4.5 (SP mode)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "CICE4.0", + "native_nominal_resolution": "25 km" } }, - "release_year":"2016", - "source_id":"CMCC-CM2-HR4" + "release_year": "2016", + "source_id": "CMCC-CM2-HR4" }, - "CMCC-CM2-SR5":{ - "activity_participation":[ + "CMCC-CM2-SR5": { + "activity_participation": [ "AerChemMIP", "CMIP", "DAMIP", @@ -1717,119 +1774,119 @@ "OMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CMCC" ], - "label":"CMCC-CM2-SR5", - "label_extended":"CMCC-CM2-SR5", - "license_info":{ - "exceptions_contact":"@cmcc.it <- silvio.gualdi", - "history":"2020-02-26: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CMCC-CM2-SR5", + "label_extended": "CMCC-CM2-SR5", + "license_info": { + "exceptions_contact": "@cmcc.it <- silvio.gualdi", + "history": "2020-02-26: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM3", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM3", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CLM4.5 (BGC mode)", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM4.5 (BGC mode)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4.0", + "native_nominal_resolution": "100 km" } }, - "release_year":"2016", - "source_id":"CMCC-CM2-SR5" + "release_year": "2016", + "source_id": "CMCC-CM2-SR5" }, - "CMCC-CM2-VHR4":{ - "activity_participation":[ + "CMCC-CM2-VHR4": { + "activity_participation": [ "CMIP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CMCC" ], - "label":"CMCC-CM2-VHR4", - "label_extended":"CMCC-CM2-VHR4", - "license_info":{ - "exceptions_contact":"@cmcc.it <- enrico.scoccimarro", - "history":"2017-09-27: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CMCC-CM2-VHR4", + "label_extended": "CMCC-CM2-VHR4", + "license_info": { + "exceptions_contact": "@cmcc.it <- enrico.scoccimarro", + "history": "2017-09-27: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"prescribed MACv2-SP", - "native_nominal_resolution":"25 km" + "model_component": { + "aerosol": { + "description": "prescribed MACv2-SP", + "native_nominal_resolution": "25 km" }, - "atmos":{ - "description":"CAM4 (1/4deg; 1152 x 768 longitude/latitude; 26 levels; top at ~2 hPa)", - "native_nominal_resolution":"25 km" + "atmos": { + "description": "CAM4 (1/4deg; 1152 x 768 longitude/latitude; 26 levels; top at ~2 hPa)", + "native_nominal_resolution": "25 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CLM4.5 (SP mode)", - "native_nominal_resolution":"25 km" + "land": { + "description": "CLM4.5 (SP mode)", + "native_nominal_resolution": "25 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "CICE4.0", + "native_nominal_resolution": "25 km" } }, - "release_year":"2017", - "source_id":"CMCC-CM2-VHR4" + "release_year": "2017", + "source_id": "CMCC-CM2-VHR4" }, - "CMCC-ESM2":{ - "activity_participation":[ + "CMCC-ESM2": { + "activity_participation": [ "C4MIP", "CMIP", "LS3MIP", @@ -1837,61 +1894,61 @@ "OMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CMCC" ], - "label":"CMCC-ESM2", - "label_extended":"CMCC-ESM2", - "license_info":{ - "exceptions_contact":"@cmcc.it <- tomas.lovato", - "history":"2020-02-03: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CMCC-ESM2", + "label_extended": "CMCC-ESM2", + "license_info": { + "exceptions_contact": "@cmcc.it <- tomas.lovato", + "history": "2020-02-03: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM3", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM3", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CLM4.5 (BGC mode)", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM4.5 (BGC mode)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"BFM5.2", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "BFM5.2", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4.0", + "native_nominal_resolution": "100 km" } }, - "release_year":"2017", - "source_id":"CMCC-ESM2" + "release_year": "2017", + "source_id": "CMCC-ESM2" }, - "CNRM-CM6-1":{ - "activity_participation":[ + "CNRM-CM6-1": { + "activity_participation": [ "CFMIP", "CMIP", "DAMIP", @@ -1907,61 +1964,61 @@ "RFMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CNRM-CERFACS" ], - "label":"CNRM-CM6-1", - "label_extended":"CNRM-CM6-1", - "license_info":{ - "exceptions_contact":"@cerfacs.fr <- contact.cmip6", - "history":"2018-06-26: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CNRM-CM6-1", + "label_extended": "CNRM-CM6-1", + "license_info": { + "exceptions_contact": "@cerfacs.fr <- contact.cmip6", + "history": "2018-06-26: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"prescribed monthly fields computed by TACTIC_v2 scheme", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "prescribed monthly fields computed by TACTIC_v2 scheme", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"OZL_v2", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "OZL_v2", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"Surfex 8.0c", - "native_nominal_resolution":"250 km" + "land": { + "description": "Surfex 8.0c", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"Gelato 6.1", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "Gelato 6.1", + "native_nominal_resolution": "100 km" } }, - "release_year":"2017", - "source_id":"CNRM-CM6-1" + "release_year": "2017", + "source_id": "CNRM-CM6-1" }, - "CNRM-CM6-1-HR":{ - "activity_participation":[ + "CNRM-CM6-1-HR": { + "activity_participation": [ "CMIP", "DCPP", "GMMIP", @@ -1969,61 +2026,61 @@ "OMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CNRM-CERFACS" ], - "label":"CNRM-CM6-1-HR", - "label_extended":"CNRM-CM6-1-HR", - "license_info":{ - "exceptions_contact":"@cerfacs.fr <- contact.cmip6", - "history":"2019-02-21: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CNRM-CM6-1-HR", + "label_extended": "CNRM-CM6-1-HR", + "license_info": { + "exceptions_contact": "@cerfacs.fr <- contact.cmip6", + "history": "2019-02-21: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"prescribed monthly fields computed by TACTIC_v2 scheme", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "prescribed monthly fields computed by TACTIC_v2 scheme", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"Arpege 6.3 (T359; Gaussian Reduced with 181724 grid points in total distributed over 360 latitude circles (with 720 grid points per latitude circle between 32.2degN and 32.2degS reducing to 18 grid points per latitude circle at 89.6degN and 89.6degS); 91 levels; top level 78.4 km)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "Arpege 6.3 (T359; Gaussian Reduced with 181724 grid points in total distributed over 360 latitude circles (with 720 grid points per latitude circle between 32.2degN and 32.2degS reducing to 18 grid points per latitude circle at 89.6degN and 89.6degS); 91 levels; top level 78.4 km)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"OZL_v2", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "OZL_v2", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"Surfex 8.0c", - "native_nominal_resolution":"100 km" + "land": { + "description": "Surfex 8.0c", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"Nemo 3.6 (eORCA025, tripolar primarily 1/4deg; 1442 x 1050 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "Nemo 3.6 (eORCA025, tripolar primarily 1/4deg; 1442 x 1050 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"Gelato 6.1", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "Gelato 6.1", + "native_nominal_resolution": "25 km" } }, - "release_year":"2017", - "source_id":"CNRM-CM6-1-HR" + "release_year": "2017", + "source_id": "CNRM-CM6-1-HR" }, - "CNRM-ESM2-1":{ - "activity_participation":[ + "CNRM-ESM2-1": { + "activity_participation": [ "AerChemMIP", "C4MIP", "CDRMIP", @@ -2038,61 +2095,61 @@ "RFMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CNRM-CERFACS" ], - "label":"CNRM-ESM2-1", - "label_extended":"CNRM-ESM2-1", - "license_info":{ - "exceptions_contact":"@meteo.fr <- contact.cmip", - "history":"2018-09-14: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CNRM-ESM2-1", + "label_extended": "CNRM-ESM2-1", + "license_info": { + "exceptions_contact": "@meteo.fr <- contact.cmip", + "history": "2018-09-14: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"TACTIC_v2", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "TACTIC_v2", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"REPROBUS-C_v2", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "REPROBUS-C_v2", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"Surfex 8.0c", - "native_nominal_resolution":"250 km" + "land": { + "description": "Surfex 8.0c", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"Pisces 2.s", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "Pisces 2.s", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"Gelato 6.1", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "Gelato 6.1", + "native_nominal_resolution": "100 km" } }, - "release_year":"2017", - "source_id":"CNRM-ESM2-1" + "release_year": "2017", + "source_id": "CNRM-ESM2-1" }, - "CanESM5":{ - "activity_participation":[ + "CanESM5": { + "activity_participation": [ "C4MIP", "CDRMIP", "CFMIP", @@ -2115,61 +2172,61 @@ "VIACSAB", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CCCma" ], - "label":"CanESM5", - "label_extended":"CanESM5", - "license_info":{ - "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", - "history":"2019-03-06: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CanESM5", + "label_extended": "CanESM5", + "license_info": { + "exceptions_contact": "@ec.gc.ca <- f.cccma.info-info.ccmac.f", + "history": "2019-03-06: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"500 km" + "model_component": { + "aerosol": { + "description": "interactive", + "native_nominal_resolution": "500 km" }, - "atmos":{ - "description":"CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", - "native_nominal_resolution":"500 km" + "atmos": { + "description": "CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", + "native_nominal_resolution": "500 km" }, - "atmosChem":{ - "description":"specified oxidants for aerosols", - "native_nominal_resolution":"500 km" + "atmosChem": { + "description": "specified oxidants for aerosols", + "native_nominal_resolution": "500 km" }, - "land":{ - "description":"CLASS3.6/CTEM1.2", - "native_nominal_resolution":"500 km" + "land": { + "description": "CLASS3.6/CTEM1.2", + "native_nominal_resolution": "500 km" }, - "landIce":{ - "description":"specified ice sheets", - "native_nominal_resolution":"500 km" + "landIce": { + "description": "specified ice sheets", + "native_nominal_resolution": "500 km" }, - "ocean":{ - "description":"NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"LIM2", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "LIM2", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"CanESM5" + "release_year": "2019", + "source_id": "CanESM5" }, - "CanESM5-1":{ - "activity_participation":[ + "CanESM5-1": { + "activity_participation": [ "C4MIP", "CDRMIP", "CFMIP", @@ -2192,482 +2249,482 @@ "VIACSAB", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CCCma" ], - "label":"CanESM5.1", - "label_extended":"CanESM5.1", - "license_info":{ - "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", - "history":"2022-12-02: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CanESM5.1", + "label_extended": "CanESM5.1", + "license_info": { + "exceptions_contact": "@ec.gc.ca <- f.cccma.info-info.ccmac.f", + "history": "2022-12-02: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"500 km" + "model_component": { + "aerosol": { + "description": "interactive", + "native_nominal_resolution": "500 km" }, - "atmos":{ - "description":"CanAM5.1 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", - "native_nominal_resolution":"500 km" + "atmos": { + "description": "CanAM5.1 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", + "native_nominal_resolution": "500 km" }, - "atmosChem":{ - "description":"specified oxidants for aerosols", - "native_nominal_resolution":"500 km" + "atmosChem": { + "description": "specified oxidants for aerosols", + "native_nominal_resolution": "500 km" }, - "land":{ - "description":"CLASS3.6/CTEM1.2", - "native_nominal_resolution":"500 km" + "land": { + "description": "CLASS3.6/CTEM1.2", + "native_nominal_resolution": "500 km" }, - "landIce":{ - "description":"specified ice sheets", - "native_nominal_resolution":"500 km" + "landIce": { + "description": "specified ice sheets", + "native_nominal_resolution": "500 km" }, - "ocean":{ - "description":"NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"LIM2", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "LIM2", + "native_nominal_resolution": "100 km" } }, - "release_year":"2022", - "source_id":"CanESM5-1" + "release_year": "2022", + "source_id": "CanESM5-1" }, - "CanESM5-CanOE":{ - "activity_participation":[ + "CanESM5-CanOE": { + "activity_participation": [ "C4MIP", "CDRMIP", "CMIP", "OMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CCCma" ], - "label":"CanESM5-CanOE", - "label_extended":"CanESM5-CanOE", - "license_info":{ - "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", - "history":"2019-04-29: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "CanESM5-CanOE", + "label_extended": "CanESM5-CanOE", + "license_info": { + "exceptions_contact": "@ec.gc.ca <- f.cccma.info-info.ccmac.f", + "history": "2019-04-29: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"500 km" + "model_component": { + "aerosol": { + "description": "interactive", + "native_nominal_resolution": "500 km" }, - "atmos":{ - "description":"CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", - "native_nominal_resolution":"500 km" + "atmos": { + "description": "CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", + "native_nominal_resolution": "500 km" }, - "atmosChem":{ - "description":"specified oxidants for aerosols", - "native_nominal_resolution":"500 km" + "atmosChem": { + "description": "specified oxidants for aerosols", + "native_nominal_resolution": "500 km" }, - "land":{ - "description":"CLASS3.6/CTEM1.2", - "native_nominal_resolution":"500 km" + "land": { + "description": "CLASS3.6/CTEM1.2", + "native_nominal_resolution": "500 km" }, - "landIce":{ - "description":"specified ice sheets", - "native_nominal_resolution":"500 km" + "landIce": { + "description": "specified ice sheets", + "native_nominal_resolution": "500 km" }, - "ocean":{ - "description":"NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"Canadian Ocean Ecosystem (CanOE) with OMIP prescribed carbon chemistry", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "Canadian Ocean Ecosystem (CanOE) with OMIP prescribed carbon chemistry", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"LIM2", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "LIM2", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"CanESM5-CanOE" + "release_year": "2019", + "source_id": "CanESM5-CanOE" }, - "E3SM-1-0":{ - "activity_participation":[ + "E3SM-1-0": { + "activity_participation": [ "CFMIP", "CMIP", "DAMIP", "PAMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "E3SM-Project", "LLNL", "UCI", "UCSB" ], - "label":"E3SM 1.0", - "label_extended":"E3SM 1.0 (Energy Exascale Earth System Model)", - "license_info":{ - "exceptions_contact":"@llnl.gov <- e3sm-data-support", - "history":"2019-02-06: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "E3SM 1.0", + "label_extended": "E3SM 1.0 (Energy Exascale Earth System Model)", + "license_info": { + "exceptions_contact": "@llnl.gov <- e3sm-data-support", + "history": "2019-02-06: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"EAM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "EAM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"ELM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; satellite phenology mode), MOSART (v1.0, 0.5 degree latitude/longitude grid)", - "native_nominal_resolution":"100 km" + "land": { + "description": "ELM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; satellite phenology mode), MOSART (v1.0, 0.5 degree latitude/longitude grid)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"MPAS-Seaice (v6.0, same grid as ocean)", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "MPAS-Seaice (v6.0, same grid as ocean)", + "native_nominal_resolution": "50 km" } }, - "release_year":"2018", - "source_id":"E3SM-1-0" + "release_year": "2018", + "source_id": "E3SM-1-0" }, - "E3SM-1-1":{ - "activity_participation":[ + "E3SM-1-1": { + "activity_participation": [ "C4MIP", "CMIP", "DAMIP", "LS3MIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "E3SM-Project", "RUBISCO" ], - "label":"E3SM 1.1", - "label_extended":"E3SM 1.1 (Energy Exascale Earth System Model)", - "license_info":{ - "exceptions_contact":"@llnl.gov <- e3sm-data-support", - "history":"2019-10-29: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "E3SM 1.1", + "label_extended": "E3SM 1.1 (Energy Exascale Earth System Model)", + "license_info": { + "exceptions_contact": "@llnl.gov <- e3sm-data-support", + "history": "2019-10-29: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"ELM (v1.1, same grid as atmos; active biogeochemistry using the Converging Trophic Cascade plant and soil carbon and nutrient mechanisms to represent carbon, nitrogen and phosphorus cycles), MOSART (v1.1, 0.5 degree latitude/longitude grid)", - "native_nominal_resolution":"100 km" + "land": { + "description": "ELM (v1.1, same grid as atmos; active biogeochemistry using the Converging Trophic Cascade plant and soil carbon and nutrient mechanisms to represent carbon, nitrogen and phosphorus cycles), MOSART (v1.1, 0.5 degree latitude/longitude grid)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)", - "native_nominal_resolution":"50 km" + "ocnBgchem": { + "description": "BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)", + "native_nominal_resolution": "50 km" }, - "seaIce":{ - "description":"MPAS-Seaice (v6.0; same grid as ocean)", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "MPAS-Seaice (v6.0; same grid as ocean)", + "native_nominal_resolution": "50 km" } }, - "release_year":"2019", - "source_id":"E3SM-1-1" + "release_year": "2019", + "source_id": "E3SM-1-1" }, - "E3SM-1-1-ECA":{ - "activity_participation":[ + "E3SM-1-1-ECA": { + "activity_participation": [ "C4MIP", "CMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "E3SM-Project" ], - "label":"E3SM 1.1 ECA", - "label_extended":"E3SM 1.1 (Energy Exascale Earth System Model) with an experimental land BGC ECA configuration", - "license_info":{ - "exceptions_contact":"@llnl.gov <- e3sm-data-support", - "history":"2019-12-16: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "E3SM 1.1 ECA", + "label_extended": "E3SM 1.1 (Energy Exascale Earth System Model) with an experimental land BGC ECA configuration", + "license_info": { + "exceptions_contact": "@llnl.gov <- e3sm-data-support", + "history": "2019-12-16: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"ELM (v1.1, same as atmos; active biogeochemistry using the Equilibrium Chemistry Approximation to represent plant and soil carbon and nutrient mechanisms especially carbon, nitrogen and phosphorus limitation), MOSART (v1.1, 0.5 degree latitude/longitude grid)", - "native_nominal_resolution":"100 km" + "land": { + "description": "ELM (v1.1, same as atmos; active biogeochemistry using the Equilibrium Chemistry Approximation to represent plant and soil carbon and nutrient mechanisms especially carbon, nitrogen and phosphorus limitation), MOSART (v1.1, 0.5 degree latitude/longitude grid)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)", - "native_nominal_resolution":"50 km" + "ocnBgchem": { + "description": "BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)", + "native_nominal_resolution": "50 km" }, - "seaIce":{ - "description":"MPAS-Seaice (v6.0; same grid as ocean)", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "MPAS-Seaice (v6.0; same grid as ocean)", + "native_nominal_resolution": "50 km" } }, - "release_year":"2019", - "source_id":"E3SM-1-1-ECA" + "release_year": "2019", + "source_id": "E3SM-1-1-ECA" }, - "E3SM-2-0":{ - "activity_participation":[ + "E3SM-2-0": { + "activity_participation": [ "CFMIP", "CMIP", "DAMIP", "RFMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "E3SM-Project" ], - "label":"E3SM 2.0", - "label_extended":"E3SM 2.0 (Energy Exascale Earth System Model)", - "license_info":{ - "exceptions_contact":"@llnl.gov <- e3sm-data-support", - "history":"2022-08-23: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "E3SM 2.0", + "label_extended": "E3SM 2.0 (Energy Exascale Earth System Model)", + "license_info": { + "exceptions_contact": "@llnl.gov <- e3sm-data-support", + "history": "2022-08-23: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM4 with new resuspension, marine organics, secondary organics, and dust (atmos grid)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM4 with new resuspension, marine organics, secondary organics, and dust (atmos grid)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"EAM (v2.0, cubed sphere spectral-element grid; 5400 elements, 30x30 per cube face. Dynamics: degree 3 (p=3) polynomials within each spectral element, 112 km average resolution. Physics: 2x2 finite volume cells within each spectral element, 1.5 degree (168 km) average grid spacing; 72 vertical layers; top level 60 km)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "EAM (v2.0, cubed sphere spectral-element grid; 5400 elements, 30x30 per cube face. Dynamics: degree 3 (p=3) polynomials within each spectral element, 112 km average resolution. Physics: 2x2 finite volume cells within each spectral element, 1.5 degree (168 km) average grid spacing; 72 vertical layers; top level 60 km)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos grid)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos grid)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"ELM (v1.0, satellite phenology mode, atmos grid), MOSART (v1.0, 0.5 degree latitude/longitude)", - "native_nominal_resolution":"100 km" + "land": { + "description": "ELM (v1.0, satellite phenology mode, atmos grid), MOSART (v1.0, 0.5 degree latitude/longitude)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MPAS-Ocean (E3SMv2.0, EC30to60E2r2 unstructured SVTs mesh with 236853 cells, 719506 edges, variable resolution 60 to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "MPAS-Ocean (E3SMv2.0, EC30to60E2r2 unstructured SVTs mesh with 236853 cells, 719506 edges, variable resolution 60 to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"MPAS-Seaice (E3SMv2.0, ocean grid; 5 ice categories; 7 ice, 5 snow layers)", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "MPAS-Seaice (E3SMv2.0, ocean grid; 5 ice categories; 7 ice, 5 snow layers)", + "native_nominal_resolution": "50 km" } }, - "release_year":"2022", - "source_id":"E3SM-2-0" + "release_year": "2022", + "source_id": "E3SM-2-0" }, - "E3SM-2-0-NARRM":{ - "activity_participation":[ + "E3SM-2-0-NARRM": { + "activity_participation": [ "CMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "E3SM-Project" ], - "label":"E3SM 2.0 NARRM", - "label_extended":"E3SM 2.0 NARRM (Energy Exascale Earth System Model version 2.0 North American Regionally Refined Model)", - "license_info":{ - "exceptions_contact":"@llnl.gov <- e3sm-data-support", - "history":"2023-04-26: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "E3SM 2.0 NARRM", + "label_extended": "E3SM 2.0 NARRM (Energy Exascale Earth System Model version 2.0 North American Regionally Refined Model)", + "license_info": { + "exceptions_contact": "@llnl.gov <- e3sm-data-support", + "history": "2023-04-26: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM4 w/ new resuspension, marine organics, secondary organics, and dust (atmos grid)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM4 w/ new resuspension, marine organics, secondary organics, and dust (atmos grid)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"EAM (v2.0, Dynamics: cubed sphere spectral-element grid, 130,088 columns; Physics: 2x2 finite volume cells within each spectral element, 57,816 columns. N. American (NA): 25 to 100 km; outside ~100 km. 72 vertical layers w/ top at 60 km)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "EAM (v2.0, Dynamics: cubed sphere spectral-element grid, 130,088 columns; Physics: 2x2 finite volume cells within each spectral element, 57,816 columns. N. American (NA): 25 to 100 km; outside ~100 km. 72 vertical layers w/ top at 60 km)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos grid)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos grid)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"ELM (v1.0, satellite phenology mode, atmos grid), MOSART (v1.0, 0.125 degree latitude/longitude)", - "native_nominal_resolution":"10 km" + "land": { + "description": "ELM (v1.0, satellite phenology mode, atmos grid), MOSART (v1.0, 0.125 degree latitude/longitude)", + "native_nominal_resolution": "10 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MPAS-Ocean (E3SMv2.0, WC14to60E2r5 unstructured SCVTs mesh with 407420 cells, 1240672 edges, NA: ~14 km; outside: 30 to 60 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "MPAS-Ocean (E3SMv2.0, WC14to60E2r5 unstructured SCVTs mesh with 407420 cells, 1240672 edges, NA: ~14 km; outside: 30 to 60 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"MPAS-Seaice (E3SMv2.0, ocean grid, variable resolution 30 to 60 km; 5 ice categories; 7 ice, 5 snow layers)", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "MPAS-Seaice (E3SMv2.0, ocean grid, variable resolution 30 to 60 km; 5 ice categories; 7 ice, 5 snow layers)", + "native_nominal_resolution": "50 km" } }, - "release_year":"2022", - "source_id":"E3SM-2-0-NARRM" + "release_year": "2022", + "source_id": "E3SM-2-0-NARRM" }, - "E3SM-2-1":{ - "activity_participation":[ + "E3SM-2-1": { + "activity_participation": [ "CMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "E3SM-Project" ], - "label":"E3SM 2.1", - "label_extended":"E3SM 2.1 (Energy Exascale Earth System Model)", - "license_info":{ - "exceptions_contact":"@llnl.gov <- e3sm-data-support", - "history":"2024-02-05: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "E3SM 2.1", + "label_extended": "E3SM 2.1 (Energy Exascale Earth System Model)", + "license_info": { + "exceptions_contact": "@llnl.gov <- e3sm-data-support", + "history": "2024-02-05: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM4 w/ new resuspension, marine organics, secondary organics, and dust (atmos physics grid)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM4 w/ new resuspension, marine organics, secondary organics, and dust (atmos physics grid)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"EAM (E3SMv2.1, cubed sphere spectral-element; 5400 els., 30x30 per cube face. Dynamics: degree 3 (p=3) polynomials within each spectral els., 112 km ave. resolution. Physics: 2x2 finite volume cells within each spectral els., 1.5 degree (168 km) average grid spacing; 72 vertical layers w/ top at 60 km)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "EAM (E3SMv2.1, cubed sphere spectral-element; 5400 els., 30x30 per cube face. Dynamics: degree 3 (p=3) polynomials within each spectral els., 112 km ave. resolution. Physics: 2x2 finite volume cells within each spectral els., 1.5 degree (168 km) average grid spacing; 72 vertical layers w/ top at 60 km)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos physics grid)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos physics grid)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"ELM (E3SMv2.1, atmos physics grid, satellite phenology mode), MOSART (E3SMv2.1, 0.5 deg lat/lon grid)", - "native_nominal_resolution":"100 km" + "land": { + "description": "ELM (E3SMv2.1, atmos physics grid, satellite phenology mode), MOSART (E3SMv2.1, 0.5 deg lat/lon grid)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MPAS-Ocean (E3SMv2.1, EC30to60E2r2 unstructured SVTs mesh with 236853 cells and 719506 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "MPAS-Ocean (E3SMv2.1, EC30to60E2r2 unstructured SVTs mesh with 236853 cells and 719506 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"MPAS-Seaice (E3SMv2.1, MPAS-Ocean grid; 5 ice categories, 7 ice layers, 5 snow layers)", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "MPAS-Seaice (E3SMv2.1, MPAS-Ocean grid; 5 ice categories, 7 ice layers, 5 snow layers)", + "native_nominal_resolution": "50 km" } }, - "release_year":"2024", - "source_id":"E3SM-2-1" + "release_year": "2024", + "source_id": "E3SM-2-1" }, - "EC-Earth3":{ - "activity_participation":[ + "EC-Earth3": { + "activity_participation": [ "CMIP", "CORDEX", "DAMIP", @@ -2683,121 +2740,121 @@ "VIACSAB", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "EC-Earth-Consortium" ], - "label":"EC-Earth3", - "label_extended":"EC Earth 3.3", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2019-04-05: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "EC-Earth3", + "label_extended": "EC Earth 3.3", + "license_info": { + "exceptions_contact": "@ec-earth.org <- cmip6-data", + "history": "2019-04-05: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"100 km" + "land": { + "description": "HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.6 (ORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "LIM3", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"EC-Earth3" + "release_year": "2019", + "source_id": "EC-Earth3" }, - "EC-Earth3-AerChem":{ - "activity_participation":[ + "EC-Earth3-AerChem": { + "activity_participation": [ "AerChemMIP", "CMIP", "RFMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "EC-Earth-Consortium" ], - "label":"EC-Earth3-AerChem", - "label_extended":"EC-Earth3-AerChem", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2020-06-22: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "EC-Earth3-AerChem", + "label_extended": "EC-Earth3-AerChem", + "license_info": { + "exceptions_contact": "@ec-earth.org <- cmip6-data", + "history": "2020-06-22: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"100 km" + "land": { + "description": "HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "LIM3", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"EC-Earth3-AerChem" + "release_year": "2019", + "source_id": "EC-Earth3-AerChem" }, - "EC-Earth3-CC":{ - "activity_participation":[ + "EC-Earth3-CC": { + "activity_participation": [ "C4MIP", "CDRMIP", "CMIP", @@ -2806,61 +2863,61 @@ "OMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "EC-Earth-Consortium" ], - "label":"EC-Earth3-CC", - "label_extended":"EC-Earth3-CC", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2020-12-29: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "EC-Earth3-CC", + "label_extended": "EC-Earth3-CC", + "license_info": { + "exceptions_contact": "@ec-earth.org <- cmip6-data", + "history": "2020-12-29: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", - "native_nominal_resolution":"100 km" + "land": { + "description": "HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"PISCES v2", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "PISCES v2", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "LIM3", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"EC-Earth3-CC" + "release_year": "2019", + "source_id": "EC-Earth3-CC" }, - "EC-Earth3-ESM-1":{ - "activity_participation":[ + "EC-Earth3-ESM-1": { + "activity_participation": [ "C4MIP", "CDRMIP", "CMIP", @@ -2869,178 +2926,178 @@ "OMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "EC-Earth-Consortium" ], - "label":"EC-Earth3-ESM-1", - "label_extended":"EC-Earth3-ESM-1", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2024-09-25: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "EC-Earth3-ESM-1", + "label_extended": "EC-Earth3-ESM-1", + "license_info": { + "exceptions_contact": "@ec-earth.org <- cmip6-data", + "history": "2024-09-25: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa) and co2box v1.0 (CO2 box model; global grid)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa) and co2box v1.0 (CO2 box model; global grid)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4.1.2 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "land": { + "description": "HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4.1.2 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"PISM v1.2 (5 km x 5 km for Greenland, 31 levels)", - "native_nominal_resolution":"5 km" + "landIce": { + "description": "PISM v1.2 (5 km x 5 km for Greenland, 31 levels)", + "native_nominal_resolution": "5 km" }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m) and MWE v1.0 (Melt Water Emulator; same grid as ocean for Antarctic surroundings)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m) and MWE v1.0 (Melt Water Emulator; same grid as ocean for Antarctic surroundings)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"PISCES v2 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "PISCES v2 (same grid as ocean)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"LIM3 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "LIM3 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2024", - "source_id":"EC-Earth3-ESM-1" + "release_year": "2024", + "source_id": "EC-Earth3-ESM-1" }, - "EC-Earth3-HR":{ - "activity_participation":[ + "EC-Earth3-HR": { + "activity_participation": [ "CMIP", "DCPP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "EC-Earth-Consortium" ], - "label":"EC-Earth3-HR", - "label_extended":"EC-Earth3-HR", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2022-06-27: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "EC-Earth3-HR", + "label_extended": "EC-Earth3-HR", + "license_info": { + "exceptions_contact": "@ec-earth.org <- cmip6-data", + "history": "2022-06-27: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"50 km" + "land": { + "description": "HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA025 tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "NEMO3.6 (ORCA025 tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "LIM3", + "native_nominal_resolution": "25 km" } }, - "release_year":"2019", - "source_id":"EC-Earth3-HR" + "release_year": "2019", + "source_id": "EC-Earth3-HR" }, - "EC-Earth3-LR":{ - "activity_participation":[ + "EC-Earth3-LR": { + "activity_participation": [ "CMIP", "PMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "EC-Earth-Consortium" ], - "label":"EC-Earth3-LR", - "label_extended":"EC-Earth3-LR", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2019-01-03: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "EC-Earth3-LR", + "label_extended": "EC-Earth3-LR", + "license_info": { + "exceptions_contact": "@ec-earth.org <- cmip6-data", + "history": "2019-01-03: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"250 km" + "land": { + "description": "HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "LIM3", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"EC-Earth3-LR" + "release_year": "2019", + "source_id": "EC-Earth3-LR" }, - "EC-Earth3-Veg":{ - "activity_participation":[ + "EC-Earth3-Veg": { + "activity_participation": [ "CDRMIP", "CMIP", "CORDEX", @@ -3049,522 +3106,522 @@ "PMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "EC-Earth-Consortium" ], - "label":"EC-Earth3-Veg", - "label_extended":"EC-Earth3-Veg", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2019-04-10: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "EC-Earth3-Veg", + "label_extended": "EC-Earth3-Veg", + "license_info": { + "exceptions_contact": "@ec-earth.org <- cmip6-data", + "history": "2019-04-10: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", - "native_nominal_resolution":"100 km" + "land": { + "description": "HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "LIM3", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"EC-Earth3-Veg" + "release_year": "2019", + "source_id": "EC-Earth3-Veg" }, - "EC-Earth3-Veg-LR":{ - "activity_participation":[ + "EC-Earth3-Veg-LR": { + "activity_participation": [ "CMIP", "PMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "EC-Earth-Consortium" ], - "label":"EC-Earth3-Veg-LR", - "label_extended":"EC-Earth3-Veg-LR", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2020-02-13: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "EC-Earth3-Veg-LR", + "label_extended": "EC-Earth3-Veg-LR", + "license_info": { + "exceptions_contact": "@ec-earth.org <- cmip6-data", + "history": "2020-02-13: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", - "native_nominal_resolution":"250 km" + "land": { + "description": "HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "LIM3", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"EC-Earth3-Veg-LR" + "release_year": "2019", + "source_id": "EC-Earth3-Veg-LR" }, - "EC-Earth3P":{ - "activity_participation":[ + "EC-Earth3P": { + "activity_participation": [ "CMIP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "EC-Earth-Consortium" ], - "label":"EC-Earth3P", - "label_extended":"EC-Earth 3.2 in PRIMAVERA", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2017-09-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "EC-Earth3P", + "label_extended": "EC-Earth 3.2 in PRIMAVERA", + "license_info": { + "exceptions_contact": "@ec-earth.org <- cmip6-data", + "history": "2017-09-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"100 km" + "land": { + "description": "HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "LIM3", + "native_nominal_resolution": "100 km" } }, - "release_year":"2017", - "source_id":"EC-Earth3P" + "release_year": "2017", + "source_id": "EC-Earth3P" }, - "EC-Earth3P-HR":{ - "activity_participation":[ + "EC-Earth3P-HR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "EC-Earth-Consortium" ], - "label":"EC-Earth3P-HR", - "label_extended":"EC-Earth3P-HR in PRIMAVERA", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2017-08-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "EC-Earth3P-HR", + "label_extended": "EC-Earth3P-HR in PRIMAVERA", + "license_info": { + "exceptions_contact": "@ec-earth.org <- cmip6-data", + "history": "2017-08-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"50 km" + "land": { + "description": "HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA025; tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "NEMO3.6 (ORCA025; tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "LIM3", + "native_nominal_resolution": "25 km" } }, - "release_year":"2017", - "source_id":"EC-Earth3P-HR" + "release_year": "2017", + "source_id": "EC-Earth3P-HR" }, - "EC-Earth3P-VHR":{ - "activity_participation":[ + "EC-Earth3P-VHR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "EC-Earth-Consortium" ], - "label":"EC-Earth3P-VHR", - "label_extended":"EC-Earth3P-VHR in PRIMAVERA", - "license_info":{ - "exceptions_contact":"@bsc.es <- pierre-antoine.bretonniere", - "history":"2020-10-07: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "EC-Earth3P-VHR", + "label_extended": "EC-Earth3P-VHR in PRIMAVERA", + "license_info": { + "exceptions_contact": "@bsc.es <- pierre-antoine.bretonniere", + "history": "2020-10-07: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"IFS cy36r4 (TL1279, linearly reduced Gaussian grid equivalent to 2560 x 1280 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"25 km" + "atmos": { + "description": "IFS cy36r4 (TL1279, linearly reduced Gaussian grid equivalent to 2560 x 1280 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution": "25 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"25 km" + "land": { + "description": "HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution": "25 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.6 (ORCA012 tripolar primarily 0.08 degrees; 4322 x 3059 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"10 km" + "ocean": { + "description": "NEMO3.6 (ORCA012 tripolar primarily 0.08 degrees; 4322 x 3059 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "10 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"10 km" + "seaIce": { + "description": "LIM3", + "native_nominal_resolution": "10 km" } }, - "release_year":"2017", - "source_id":"EC-Earth3P-VHR" + "release_year": "2017", + "source_id": "EC-Earth3P-VHR" }, - "ECMWF-IFS-HR":{ - "activity_participation":[ + "ECMWF-IFS-HR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "ECMWF" ], - "label":"ECMWF-IFS-HR", - "label_extended":"ECMWF-IFS-HR (25 km atmosphere and 25 km ocean)", - "license_info":{ - "exceptions_contact":"@ecmwf.int <- christopher.roberts", - "history":"2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "ECMWF-IFS-HR", + "label_extended": "ECMWF-IFS-HR (25 km atmosphere and 25 km ocean)", + "license_info": { + "exceptions_contact": "@ecmwf.int <- christopher.roberts", + "history": "2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"IFS (IFS CY43R1, Tco399, cubic octahedral reduced Gaussian grid equivalent to 1600 x 800 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"25 km" + "atmos": { + "description": "IFS (IFS CY43R1, Tco399, cubic octahedral reduced Gaussian grid equivalent to 1600 x 800 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution": "25 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"HTESSEL (as implemented in IFS CY43R1)", - "native_nominal_resolution":"25 km" + "land": { + "description": "HTESSEL (as implemented in IFS CY43R1)", + "native_nominal_resolution": "25 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", + "native_nominal_resolution": "25 km" } }, - "release_year":"2017", - "source_id":"ECMWF-IFS-HR" + "release_year": "2017", + "source_id": "ECMWF-IFS-HR" }, - "ECMWF-IFS-LR":{ - "activity_participation":[ + "ECMWF-IFS-LR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "ECMWF" ], - "label":"ECMWF-IFS-LR", - "label_extended":"ECMWF-IFS-LR (50 km atmosphere and 100 km ocean)", - "license_info":{ - "exceptions_contact":"@ecmwf.int <- christopher.roberts", - "history":"2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "ECMWF-IFS-LR", + "label_extended": "ECMWF-IFS-LR (50 km atmosphere and 100 km ocean)", + "license_info": { + "exceptions_contact": "@ecmwf.int <- christopher.roberts", + "history": "2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"HTESSEL (as implemented in IFS CY43R1)", - "native_nominal_resolution":"50 km" + "land": { + "description": "HTESSEL (as implemented in IFS CY43R1)", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.4 (NEMO v3.4; ORCA1 tripolar grid; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO3.4 (NEMO v3.4; ORCA1 tripolar grid; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"LIM2 (LIM v2; ORCA1 tripolar grid; 362 x 292 longitude/latitude)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "LIM2 (LIM v2; ORCA1 tripolar grid; 362 x 292 longitude/latitude)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2017", - "source_id":"ECMWF-IFS-LR" + "release_year": "2017", + "source_id": "ECMWF-IFS-LR" }, - "ECMWF-IFS-MR":{ - "activity_participation":[ + "ECMWF-IFS-MR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "ECMWF" ], - "label":"ECMWF-IFS-MR", - "label_extended":"ECMWF-IFS-MR (50 km atmosphere and 25 km ocean)", - "license_info":{ - "exceptions_contact":"@ecmwf.int <- christopher.roberts", - "history":"2018-11-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "ECMWF-IFS-MR", + "label_extended": "ECMWF-IFS-MR (50 km atmosphere and 25 km ocean)", + "license_info": { + "exceptions_contact": "@ecmwf.int <- christopher.roberts", + "history": "2018-11-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"HTESSEL (as implemented in IFS CY43R1)", - "native_nominal_resolution":"50 km" + "land": { + "description": "HTESSEL (as implemented in IFS CY43R1)", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", + "native_nominal_resolution": "25 km" } }, - "release_year":"2017", - "source_id":"ECMWF-IFS-MR" + "release_year": "2017", + "source_id": "ECMWF-IFS-MR" }, - "FGOALS-f3-H":{ - "activity_participation":[ + "FGOALS-f3-H": { + "activity_participation": [ "CMIP", "HighResMIP", "OMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CAS" ], - "label":"FGOALS-f3-H", - "label_extended":"FGOALS-f3-H", - "license_info":{ - "exceptions_contact":"@mail.iap.ac.cn <- linpf", - "history":"2019-08-16: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "FGOALS-f3-H", + "label_extended": "FGOALS-f3-H", + "license_info": { + "exceptions_contact": "@mail.iap.ac.cn <- linpf", + "history": "2019-08-16: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"FAMIL2.2 (Cubed-sphere, c384; 1440 x 720 longitude/latitude; 32 levels; top level 2.16 hPa)", - "native_nominal_resolution":"25 km" + "atmos": { + "description": "FAMIL2.2 (Cubed-sphere, c384; 1440 x 720 longitude/latitude; 32 levels; top level 2.16 hPa)", + "native_nominal_resolution": "25 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CLM4.0", - "native_nominal_resolution":"25 km" + "land": { + "description": "CLM4.0", + "native_nominal_resolution": "25 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"LICOM3.0 (LICOM3.0, tripolar primarily 0.1deg; 3600 x 2302 longitude/latitude; 55 levels; top grid cell 0-5 m)", - "native_nominal_resolution":"10 km" + "ocean": { + "description": "LICOM3.0 (LICOM3.0, tripolar primarily 0.1deg; 3600 x 2302 longitude/latitude; 55 levels; top grid cell 0-5 m)", + "native_nominal_resolution": "10 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"10 km" + "seaIce": { + "description": "CICE4.0", + "native_nominal_resolution": "10 km" } }, - "release_year":"2017", - "source_id":"FGOALS-f3-H" + "release_year": "2017", + "source_id": "FGOALS-f3-H" }, - "FGOALS-f3-L":{ - "activity_participation":[ + "FGOALS-f3-L": { + "activity_participation": [ "CMIP", "DCPP", "GMMIP", @@ -3575,61 +3632,61 @@ "SIMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CAS" ], - "label":"FGOALS-f3-L", - "label_extended":"FGOALS-f3-L", - "license_info":{ - "exceptions_contact":"@mail.iap.ac.cn <- linpf", - "history":"2018-11-08: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "FGOALS-f3-L", + "label_extended": "FGOALS-f3-L", + "license_info": { + "exceptions_contact": "@mail.iap.ac.cn <- linpf", + "history": "2018-11-08: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"FAMIL2.2 (Cubed-sphere, c96; 360 x 180 longitude/latitude; 32 levels; top level 2.16 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "FAMIL2.2 (Cubed-sphere, c96; 360 x 180 longitude/latitude; 32 levels; top level 2.16 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CLM4.0", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM4.0", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4.0", + "native_nominal_resolution": "100 km" } }, - "release_year":"2017", - "source_id":"FGOALS-f3-L" + "release_year": "2017", + "source_id": "FGOALS-f3-L" }, - "FGOALS-g3":{ - "activity_participation":[ + "FGOALS-g3": { + "activity_participation": [ "CMIP", "CORDEX", "DAMIP", @@ -3642,61 +3699,61 @@ "SIMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CAS" ], - "label":"FGOALS-g3", - "label_extended":"FGOALS-g3", - "license_info":{ - "exceptions_contact":"@mail.iap.ac.cn <- linpf", - "history":"2019-08-18: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "FGOALS-g3", + "label_extended": "FGOALS-g3", + "license_info": { + "exceptions_contact": "@mail.iap.ac.cn <- linpf", + "history": "2019-08-18: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"GAMIL3 (180 x 80 longitude/latitude; 26 levels; top level 2.19hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "GAMIL3 (180 x 80 longitude/latitude; 26 levels; top level 2.19hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CAS-LSM", - "native_nominal_resolution":"250 km" + "land": { + "description": "CAS-LSM", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4.0", + "native_nominal_resolution": "100 km" } }, - "release_year":"2017", - "source_id":"FGOALS-g3" + "release_year": "2017", + "source_id": "FGOALS-g3" }, - "FIO-ESM-2-0":{ - "activity_participation":[ + "FIO-ESM-2-0": { + "activity_participation": [ "CMIP", "DCPP", "GMMIP", @@ -3704,118 +3761,118 @@ "ScenarioMIP", "SIMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "FIO-QLNM" ], - "label":"FIO-ESM 2.0", - "label_extended":"FIO-ESM 2.0", - "license_info":{ - "exceptions_contact":"@fio.org.cn <- songroy", - "history":"2019-09-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "FIO-ESM 2.0", + "label_extended": "FIO-ESM 2.0", + "license_info": { + "exceptions_contact": "@fio.org.cn <- songroy", + "history": "2019-09-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"Prescribed monthly fields", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "Prescribed monthly fields", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"CAM4 (0.9x1.25 finite volume grid; 192 x 288 longitude/latitude; 26 levels; top level ~2 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "CAM4 (0.9x1.25 finite volume grid; 192 x 288 longitude/latitude; 26 levels; top level ~2 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CLM4.0 (same grid at atmos)", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM4.0 (same grid at atmos)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"POP2-W (POP2 coupled with MASNUM surface wave model, Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "POP2-W (POP2 coupled with MASNUM surface wave model, Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE4.0 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4.0 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2018", - "source_id":"FIO-ESM-2-0" + "release_year": "2018", + "source_id": "FIO-ESM-2-0" }, - "GFDL-AM4":{ - "activity_participation":[ + "GFDL-AM4": { + "activity_participation": [ "CMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NOAA-GFDL" ], - "label":"GFDL-AM4", - "label_extended":"GFDL-AM4", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "GFDL-AM4", + "label_extended": "GFDL-AM4", + "license_info": { + "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", + "history": "2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "interactive", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"GFDL-AM4.0 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "GFDL-AM4.0 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"fast chemistry, aerosol only", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "fast chemistry, aerosol only", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"GFDL-LM4.0", - "native_nominal_resolution":"100 km" + "land": { + "description": "GFDL-LM4.0", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"GFDL-LM4.0", - "native_nominal_resolution":"100 km" + "landIce": { + "description": "GFDL-LM4.0", + "native_nominal_resolution": "100 km" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2018", - "source_id":"GFDL-AM4" + "release_year": "2018", + "source_id": "GFDL-AM4" }, - "GFDL-CM4":{ - "activity_participation":[ + "GFDL-CM4": { + "activity_participation": [ "CFMIP", "CMIP", "DAMIP", @@ -3826,175 +3883,175 @@ "RFMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NOAA-GFDL" ], - "label":"GFDL-CM4", - "label_extended":"GFDL-CM4", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "GFDL-CM4", + "label_extended": "GFDL-CM4", + "license_info": { + "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", + "history": "2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "interactive", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"GFDL-AM4.0.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "GFDL-AM4.0.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"fast chemistry, aerosol only", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "fast chemistry, aerosol only", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"GFDL-LM4.0.1 (1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 20 levels; bottom level 10m); land-Veg:unnamed (dynamic vegetation, dynamic land use); land-Hydro:unnamed (soil water and ice, multi-layer snow, rivers and lakes)", - "native_nominal_resolution":"100 km" + "land": { + "description": "GFDL-LM4.0.1 (1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 20 levels; bottom level 10m); land-Veg:unnamed (dynamic vegetation, dynamic land use); land-Hydro:unnamed (soil water and ice, multi-layer snow, rivers and lakes)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"GFDL-LM4.0.1", - "native_nominal_resolution":"100 km" + "landIce": { + "description": "GFDL-LM4.0.1", + "native_nominal_resolution": "100 km" }, - "ocean":{ - "description":"GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"GFDL-BLINGv2", - "native_nominal_resolution":"25 km" + "ocnBgchem": { + "description": "GFDL-BLINGv2", + "native_nominal_resolution": "25 km" }, - "seaIce":{ - "description":"GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)", + "native_nominal_resolution": "25 km" } }, - "release_year":"2018", - "source_id":"GFDL-CM4" + "release_year": "2018", + "source_id": "GFDL-CM4" }, - "GFDL-CM4C192":{ - "activity_participation":[ + "GFDL-CM4C192": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NOAA-GFDL" ], - "label":"GFDL-CM4C192", - "label_extended":"GFDL-CM4C192", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "GFDL-CM4C192", + "label_extended": "GFDL-CM4C192", + "license_info": { + "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", + "history": "2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"50 km" + "model_component": { + "aerosol": { + "description": "interactive", + "native_nominal_resolution": "50 km" }, - "atmos":{ - "description":"GFDL-AM4C192 (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 720 x 360 longitude/latitude; 33 levels; top level 1 hPa)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "GFDL-AM4C192 (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 720 x 360 longitude/latitude; 33 levels; top level 1 hPa)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"fast chemistry, aerosol only", - "native_nominal_resolution":"50 km" + "atmosChem": { + "description": "fast chemistry, aerosol only", + "native_nominal_resolution": "50 km" }, - "land":{ - "description":"GFDL-LM4.0.1", - "native_nominal_resolution":"50 km" + "land": { + "description": "GFDL-LM4.0.1", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"GFDL-LM4.0.1", - "native_nominal_resolution":"50 km" + "landIce": { + "description": "GFDL-LM4.0.1", + "native_nominal_resolution": "50 km" }, - "ocean":{ - "description":"GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)", + "native_nominal_resolution": "25 km" } }, - "release_year":"2018", - "source_id":"GFDL-CM4C192" + "release_year": "2018", + "source_id": "GFDL-CM4C192" }, - "GFDL-ESM2M":{ - "activity_participation":[ + "GFDL-ESM2M": { + "activity_participation": [ "FAFMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NOAA-GFDL" ], - "label":"GFDL-ESM2M", - "label_extended":"GFDL-ESM2M", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "GFDL-ESM2M", + "label_extended": "GFDL-ESM2M", + "license_info": { + "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", + "history": "2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"prescribed", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "prescribed", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"GFDL-AM2 (144 x 90 longitude/latitude; 24 levels; top level 1 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "GFDL-AM2 (144 x 90 longitude/latitude; 24 levels; top level 1 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"prescribed", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "prescribed", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"GFDL-LM3.0", - "native_nominal_resolution":"250 km" + "land": { + "description": "GFDL-LM3.0", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"GFDL-LM3.0", - "native_nominal_resolution":"250 km" + "landIce": { + "description": "GFDL-LM3.0", + "native_nominal_resolution": "250 km" }, - "ocean":{ - "description":"GFDL-MOM4p1 (tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "GFDL-MOM4p1 (tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"GFDL-TOPAZ2", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "GFDL-TOPAZ2", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"GFDL-SIM2 (GFDL-SIS, tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 3 layers; 5 thickness categories)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "GFDL-SIM2 (GFDL-SIS, tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 3 layers; 5 thickness categories)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2012", - "source_id":"GFDL-ESM2M" + "release_year": "2012", + "source_id": "GFDL-ESM2M" }, - "GFDL-ESM4":{ - "activity_participation":[ + "GFDL-ESM4": { + "activity_participation": [ "AerChemMIP", "C4MIP", "CDRMIP", @@ -4006,232 +4063,232 @@ "RFMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NOAA-GFDL" ], - "label":"GFDL-ESM4", - "label_extended":"GFDL-ESM4", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "GFDL-ESM4", + "label_extended": "GFDL-ESM4", + "license_info": { + "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", + "history": "2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "interactive", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"GFDL-AM4.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 49 levels; top level 1 Pa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "GFDL-AM4.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 49 levels; top level 1 Pa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"GFDL-ATMCHEM4.1 (full atmospheric chemistry)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "GFDL-ATMCHEM4.1 (full atmospheric chemistry)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"GFDL-LM4.1", - "native_nominal_resolution":"100 km" + "land": { + "description": "GFDL-LM4.1", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"GFDL-LM4.1", - "native_nominal_resolution":"100 km" + "landIce": { + "description": "GFDL-LM4.1", + "native_nominal_resolution": "100 km" }, - "ocean":{ - "description":"GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"GFDL-COBALTv2", - "native_nominal_resolution":"50 km" + "ocnBgchem": { + "description": "GFDL-COBALTv2", + "native_nominal_resolution": "50 km" }, - "seaIce":{ - "description":"GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)", + "native_nominal_resolution": "50 km" } }, - "release_year":"2018", - "source_id":"GFDL-ESM4" + "release_year": "2018", + "source_id": "GFDL-ESM4" }, - "GFDL-GRTCODE":{ - "activity_participation":[ + "GFDL-GRTCODE": { + "activity_participation": [ "RFMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NOAA-GFDL" ], - "label":"GFDL-GRTCODE", - "label_extended":"GFDL GPU radiative transfer code with two stream solver (March 2019)", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "GFDL-GRTCODE", + "label_extended": "GFDL GPU radiative transfer code with two stream solver (March 2019)", + "license_info": { + "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", + "history": "2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" + "atmos": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" + "land": { + "description": "none", + "native_nominal_resolution": "none" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2019", - "source_id":"GFDL-GRTCODE" + "release_year": "2019", + "source_id": "GFDL-GRTCODE" }, - "GFDL-OM4p5B":{ - "activity_participation":[ + "GFDL-OM4p5B": { + "activity_participation": [ "OMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NOAA-GFDL" ], - "label":"GFDL-OM4p5B", - "label_extended":"GFDL-OM4p5B", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "GFDL-OM4p5B", + "label_extended": "GFDL-OM4p5B", + "license_info": { + "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", + "history": "2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" + "atmos": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" + "land": { + "description": "none", + "native_nominal_resolution": "none" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"GFDL-BLINGv2", - "native_nominal_resolution":"50 km" + "ocnBgchem": { + "description": "GFDL-BLINGv2", + "native_nominal_resolution": "50 km" }, - "seaIce":{ - "description":"GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)", + "native_nominal_resolution": "50 km" } }, - "release_year":"2018", - "source_id":"GFDL-OM4p5B" + "release_year": "2018", + "source_id": "GFDL-OM4p5B" }, - "GFDL-RFM-DISORT":{ - "activity_participation":[ + "GFDL-RFM-DISORT": { + "activity_participation": [ "RFMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NOAA-GFDL" ], - "label":"GFDL-RFM-DISORT", - "label_extended":"GFDL Reference Forward Model Line-by-Line with DISORT solver (March 2019)", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "GFDL-RFM-DISORT", + "label_extended": "GFDL Reference Forward Model Line-by-Line with DISORT solver (March 2019)", + "license_info": { + "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", + "history": "2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" + "atmos": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" + "land": { + "description": "none", + "native_nominal_resolution": "none" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2019", - "source_id":"GFDL-RFM-DISORT" + "release_year": "2019", + "source_id": "GFDL-RFM-DISORT" }, - "GISS-E2-1-G":{ - "activity_participation":[ + "GISS-E2-1-G": { + "activity_participation": [ "AerChemMIP", "C4MIP", "CFMIP", @@ -4252,120 +4309,120 @@ "VIACSAB", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NASA-GISS" ], - "label":"GISS-E2.1G", - "label_extended":"GISS-E2.1G", - "license_info":{ - "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", - "history":"2018-08-21: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id":"CC0 1.0", - "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url":"https://creativecommons.org/publicdomain/zero/1.0/" + "label": "GISS-E2.1G", + "label_extended": "GISS-E2.1G", + "license_info": { + "exceptions_contact": "@lists.nasa.gov <- cmip-giss-l", + "history": "2018-08-21: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id": "CC0 1.0", + "license": "Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info": "https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url": "https://creativecommons.org/publicdomain/zero/1.0/" }, - "model_component":{ - "aerosol":{ - "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"GISS LSM", - "native_nominal_resolution":"250 km" + "land": { + "description": "GISS LSM", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"GISS SI", - "native_nominal_resolution":"250 km" + "seaIce": { + "description": "GISS SI", + "native_nominal_resolution": "250 km" } }, - "release_year":"2019", - "source_id":"GISS-E2-1-G" + "release_year": "2019", + "source_id": "GISS-E2-1-G" }, - "GISS-E2-1-G-CC":{ - "activity_participation":[ + "GISS-E2-1-G-CC": { + "activity_participation": [ "C4MIP", "CMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NASA-GISS" ], - "label":"GISS-E2-1-G-CC", - "label_extended":"GISS-E2-1-G-CC", - "license_info":{ - "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", - "history":"2019-03-25: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id":"CC0 1.0", - "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url":"https://creativecommons.org/publicdomain/zero/1.0/" + "label": "GISS-E2-1-G-CC", + "label_extended": "GISS-E2-1-G-CC", + "license_info": { + "exceptions_contact": "@lists.nasa.gov <- cmip-giss-l", + "history": "2019-03-25: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id": "CC0 1.0", + "license": "Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info": "https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url": "https://creativecommons.org/publicdomain/zero/1.0/" }, - "model_component":{ - "aerosol":{ - "description":"varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"GISS-E2.1 (2 x 2.5 degrees; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "GISS-E2.1 (2 x 2.5 degrees; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"GISS LSM", - "native_nominal_resolution":"250 km" + "land": { + "description": "GISS LSM", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"Fixed", - "native_nominal_resolution":"250 km" + "landIce": { + "description": "Fixed", + "native_nominal_resolution": "250 km" }, - "ocean":{ - "description":"GISS Ocean (1 deg; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "GISS Ocean (1 deg; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"NOBM (NASA Ocean Biogeochemistry Model; same grid as ocean)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "NOBM (NASA Ocean Biogeochemistry Model; same grid as ocean)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"GISS SI (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "GISS SI (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"GISS-E2-1-G-CC" + "release_year": "2019", + "source_id": "GISS-E2-1-G-CC" }, - "GISS-E2-1-H":{ - "activity_participation":[ + "GISS-E2-1-H": { + "activity_participation": [ "AerChemMIP", "CFMIP", "CMIP", @@ -4374,61 +4431,61 @@ "SIMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NASA-GISS" ], - "label":"GISS-E2.1H", - "label_extended":"GISS-E2.1H", - "license_info":{ - "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", - "history":"2018-08-24: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id":"CC0 1.0", - "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url":"https://creativecommons.org/publicdomain/zero/1.0/" + "label": "GISS-E2.1H", + "label_extended": "GISS-E2.1H", + "license_info": { + "exceptions_contact": "@lists.nasa.gov <- cmip-giss-l", + "history": "2018-08-24: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id": "CC0 1.0", + "license": "Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info": "https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url": "https://creativecommons.org/publicdomain/zero/1.0/" }, - "model_component":{ - "aerosol":{ - "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"GISS LSM", - "native_nominal_resolution":"250 km" + "land": { + "description": "GISS LSM", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 33 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 33 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"GISS SI", - "native_nominal_resolution":"250 km" + "seaIce": { + "description": "GISS SI", + "native_nominal_resolution": "250 km" } }, - "release_year":"2019", - "source_id":"GISS-E2-1-H" + "release_year": "2019", + "source_id": "GISS-E2-1-H" }, - "GISS-E2-2-G":{ - "activity_participation":[ + "GISS-E2-2-G": { + "activity_participation": [ "AerChemMIP", "CFMIP", "CMIP", @@ -4448,121 +4505,121 @@ "VIACSAB", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NASA-GISS" ], - "label":"GISS-E2-2-G", - "label_extended":"GISS-E2-2-G", - "license_info":{ - "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", - "history":"2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id":"CC0 1.0", - "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url":"https://creativecommons.org/publicdomain/zero/1.0/" + "label": "GISS-E2-2-G", + "label_extended": "GISS-E2-2-G", + "license_info": { + "exceptions_contact": "@lists.nasa.gov <- cmip-giss-l", + "history": "2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id": "CC0 1.0", + "license": "Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info": "https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url": "https://creativecommons.org/publicdomain/zero/1.0/" }, - "model_component":{ - "aerosol":{ - "description":"varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"GISS-E2.2 (High-top, 2 x 2.5 degrees; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "GISS-E2.2 (High-top, 2 x 2.5 degrees; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"GISS LSM", - "native_nominal_resolution":"250 km" + "land": { + "description": "GISS LSM", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"Fixed", - "native_nominal_resolution":"250 km" + "landIce": { + "description": "Fixed", + "native_nominal_resolution": "250 km" }, - "ocean":{ - "description":"GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"GISS SI", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "GISS SI", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"GISS-E2-2-G" + "release_year": "2019", + "source_id": "GISS-E2-2-G" }, - "GISS-E2-2-H":{ - "activity_participation":[ + "GISS-E2-2-H": { + "activity_participation": [ "CFMIP", "CMIP", "SIMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NASA-GISS" ], - "label":"GISS-E2.2H", - "label_extended":"GISS-E2.2H", - "license_info":{ - "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", - "history":"2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id":"CC0 1.0", - "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url":"https://creativecommons.org/publicdomain/zero/1.0/" + "label": "GISS-E2.2H", + "label_extended": "GISS-E2.2H", + "license_info": { + "exceptions_contact": "@lists.nasa.gov <- cmip-giss-l", + "history": "2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id": "CC0 1.0", + "license": "Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info": "https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url": "https://creativecommons.org/publicdomain/zero/1.0/" }, - "model_component":{ - "aerosol":{ - "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"GISS-E2.2 (High Top, 2.5x2 degree; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "GISS-E2.2 (High Top, 2.5x2 degree; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"GISS LSM", - "native_nominal_resolution":"250 km" + "land": { + "description": "GISS LSM", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 33 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 33 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"GISS SI (same grid as atmos)", - "native_nominal_resolution":"250 km" + "seaIce": { + "description": "GISS SI (same grid as atmos)", + "native_nominal_resolution": "250 km" } }, - "release_year":"2021", - "source_id":"GISS-E2-2-H" + "release_year": "2021", + "source_id": "GISS-E2-2-H" }, - "GISS-E3-G":{ - "activity_participation":[ + "GISS-E3-G": { + "activity_participation": [ "AerChemMIP", "C4MIP", "CFMIP", @@ -4583,179 +4640,179 @@ "VIACSAB", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NASA-GISS" ], - "label":"GISS-E3-G", - "label_extended":"GISS-E3-G", - "license_info":{ - "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", - "history":"2019-12-30: initially published under CC BY-NC-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id":"CC0 1.0", - "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url":"https://creativecommons.org/publicdomain/zero/1.0/" + "label": "GISS-E3-G", + "label_extended": "GISS-E3-G", + "license_info": { + "exceptions_contact": "@lists.nasa.gov <- cmip-giss-l", + "history": "2019-12-30: initially published under CC BY-NC-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id": "CC0 1.0", + "license": "Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info": "https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url": "https://creativecommons.org/publicdomain/zero/1.0/" }, - "model_component":{ - "aerosol":{ - "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"GISS-E3 (Cubed sphere, C90; 90 x 90 x 6 gridboxes/cubeface, grid resolution aligns with longitude/latitude along central lines for each cubeface; 102 levels; top level 0.002 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "GISS-E3 (Cubed sphere, C90; 90 x 90 x 6 gridboxes/cubeface, grid resolution aligns with longitude/latitude along central lines for each cubeface; 102 levels; top level 0.002 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"GISS LSM", - "native_nominal_resolution":"100 km" + "land": { + "description": "GISS LSM", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"GISS Ocean (1 degree; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "GISS Ocean (1 degree; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"GISS SI", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "GISS SI", + "native_nominal_resolution": "100 km" } }, - "release_year":"2020", - "source_id":"GISS-E3-G" + "release_year": "2020", + "source_id": "GISS-E3-G" }, - "HadGEM3-GC31-HH":{ - "activity_participation":[ + "HadGEM3-GC31-HH": { + "activity_participation": [ "CMIP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MOHC", "NERC" ], - "label":"HadGEM3-GC31-HH", - "label_extended":"HadGEM3-GC3.1-N512ORCA12", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", - "history":"2018-09-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "HadGEM3-GC31-HH", + "label_extended": "HadGEM3-GC3.1-N512ORCA12", + "license_info": { + "exceptions_contact": "@metoffice.gov.uk <- cmip6.hadgem3", + "history": "2018-09-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"50 km" + "model_component": { + "aerosol": { + "description": "UKCA-GLOMAP-mode", + "native_nominal_resolution": "50 km" }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"50 km" + "land": { + "description": "JULES-HadGEM3-GL7.1", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"10 km" + "ocean": { + "description": "NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "10 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", - "native_nominal_resolution":"10 km" + "seaIce": { + "description": "CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", + "native_nominal_resolution": "10 km" } }, - "release_year":"2016", - "source_id":"HadGEM3-GC31-HH" + "release_year": "2016", + "source_id": "HadGEM3-GC31-HH" }, - "HadGEM3-GC31-HM":{ - "activity_participation":[ + "HadGEM3-GC31-HM": { + "activity_participation": [ "CMIP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MOHC", "NERC" ], - "label":"HadGEM3-GC31-HM", - "label_extended":"HadGEM3-GC3.1-N512ORCA025", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", - "history":"2017-08-31: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "HadGEM3-GC31-HM", + "label_extended": "HadGEM3-GC3.1-N512ORCA025", + "license_info": { + "exceptions_contact": "@metoffice.gov.uk <- cmip6.hadgem3", + "history": "2017-08-31: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"50 km" + "model_component": { + "aerosol": { + "description": "UKCA-GLOMAP-mode", + "native_nominal_resolution": "50 km" }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"50 km" + "land": { + "description": "JULES-HadGEM3-GL7.1", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", + "native_nominal_resolution": "25 km" } }, - "release_year":"2016", - "source_id":"HadGEM3-GC31-HM" + "release_year": "2016", + "source_id": "HadGEM3-GC31-HM" }, - "HadGEM3-GC31-LL":{ - "activity_participation":[ + "HadGEM3-GC31-LL": { + "activity_participation": [ "CFMIP", "CMIP", "DAMIP", @@ -4767,178 +4824,178 @@ "RFMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MOHC", "NERC" ], - "label":"HadGEM3-GC31-LL", - "label_extended":"HadGEM3-GC3.1-N96ORCA1", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", - "history":"2017-09-21: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "HadGEM3-GC31-LL", + "label_extended": "HadGEM3-GC3.1-N96ORCA1", + "license_info": { + "exceptions_contact": "@metoffice.gov.uk <- cmip6.hadgem3", + "history": "2017-09-21: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "UKCA-GLOMAP-mode", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"250 km" + "land": { + "description": "JULES-HadGEM3-GL7.1", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2016", - "source_id":"HadGEM3-GC31-LL" + "release_year": "2016", + "source_id": "HadGEM3-GC31-LL" }, - "HadGEM3-GC31-LM":{ - "activity_participation":[ + "HadGEM3-GC31-LM": { + "activity_participation": [ "CMIP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MOHC" ], - "label":"HadGEM3-GC31-LM", - "label_extended":"HadGEM3-GC3.1-N96ORCA025", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", - "history":"2017-09-06: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "HadGEM3-GC31-LM", + "label_extended": "HadGEM3-GC3.1-N96ORCA025", + "license_info": { + "exceptions_contact": "@metoffice.gov.uk <- cmip6.hadgem3", + "history": "2017-09-06: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "UKCA-GLOMAP-mode", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"250 km" + "land": { + "description": "JULES-HadGEM3-GL7.1", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", + "native_nominal_resolution": "25 km" } }, - "release_year":"2016", - "source_id":"HadGEM3-GC31-LM" + "release_year": "2016", + "source_id": "HadGEM3-GC31-LM" }, - "HadGEM3-GC31-MH":{ - "activity_participation":[ + "HadGEM3-GC31-MH": { + "activity_participation": [ "CMIP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MOHC" ], - "label":"HadGEM3-GC31-MH", - "label_extended":"HadGEM3-GC3.1-N216ORCA12", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", - "history":"2017-12-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "HadGEM3-GC31-MH", + "label_extended": "HadGEM3-GC3.1-N216ORCA12", + "license_info": { + "exceptions_contact": "@metoffice.gov.uk <- cmip6.hadgem3", + "history": "2017-12-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "UKCA-GLOMAP-mode", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"100 km" + "land": { + "description": "JULES-HadGEM3-GL7.1", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"10 km" + "ocean": { + "description": "NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "10 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", - "native_nominal_resolution":"10 km" + "seaIce": { + "description": "CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", + "native_nominal_resolution": "10 km" } }, - "release_year":"2016", - "source_id":"HadGEM3-GC31-MH" + "release_year": "2016", + "source_id": "HadGEM3-GC31-MH" }, - "HadGEM3-GC31-MM":{ - "activity_participation":[ + "HadGEM3-GC31-MM": { + "activity_participation": [ "CMIP", "DCPP", "GMMIP", @@ -4948,869 +5005,869 @@ "PAMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MOHC" ], - "label":"HadGEM3-GC31-MM", - "label_extended":"HadGEM3-GC3.1-N216ORCA025", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", - "history":"2017-08-18: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "HadGEM3-GC31-MM", + "label_extended": "HadGEM3-GC3.1-N216ORCA025", + "license_info": { + "exceptions_contact": "@metoffice.gov.uk <- cmip6.hadgem3", + "history": "2017-08-18: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "UKCA-GLOMAP-mode", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"100 km" + "land": { + "description": "JULES-HadGEM3-GL7.1", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", + "native_nominal_resolution": "25 km" } }, - "release_year":"2016", - "source_id":"HadGEM3-GC31-MM" + "release_year": "2016", + "source_id": "HadGEM3-GC31-MM" }, - "HiRAM-SIT-HR":{ - "activity_participation":[ + "HiRAM-SIT-HR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "AS-RCEC" ], - "label":"HiRAM-SIT-HR", - "label_extended":"HiRAM Coupling 1-D SIT (25 km atmosphere and 25 km ocean)", - "license_info":{ - "exceptions_contact":"@gate.sinica.edu.tw <- cytu", - "history":"2020-12-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "HiRAM-SIT-HR", + "label_extended": "HiRAM Coupling 1-D SIT (25 km atmosphere and 25 km ocean)", + "license_info": { + "exceptions_contact": "@gate.sinica.edu.tw <- cytu", + "history": "2020-12-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"GFDL-HiRAM (Cubed-sphere (c384) - 0.25 degree nominal horizontal resolution; 1536 x 768 longitude/latitude; 32 levels; top level 1 hPa)", - "native_nominal_resolution":"25 km" + "atmos": { + "description": "GFDL-HiRAM (Cubed-sphere (c384) - 0.25 degree nominal horizontal resolution; 1536 x 768 longitude/latitude; 32 levels; top level 1 hPa)", + "native_nominal_resolution": "25 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"GFDL-LM3 (same grid as atmos)", - "native_nominal_resolution":"25 km" + "land": { + "description": "GFDL-LM3 (same grid as atmos)", + "native_nominal_resolution": "25 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2018", - "source_id":"HiRAM-SIT-HR" + "release_year": "2018", + "source_id": "HiRAM-SIT-HR" }, - "HiRAM-SIT-LR":{ - "activity_participation":[ + "HiRAM-SIT-LR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "AS-RCEC" ], - "label":"HiRAM-SIT-LR", - "label_extended":"HiRAM Coupling 1-D SIT (50 km atmosphere and 25 km ocean)", - "license_info":{ - "exceptions_contact":"@gate.sinica.edu.tw <- cytu", - "history":"2020-12-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "HiRAM-SIT-LR", + "label_extended": "HiRAM Coupling 1-D SIT (50 km atmosphere and 25 km ocean)", + "license_info": { + "exceptions_contact": "@gate.sinica.edu.tw <- cytu", + "history": "2020-12-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"GFDL-HiRAM (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 768 x 384 longitude/latitude; 32 levels; top level 1 hPa)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "GFDL-HiRAM (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 768 x 384 longitude/latitude; 32 levels; top level 1 hPa)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"GFDL-LM3 (same grid as atmos)", - "native_nominal_resolution":"50 km" + "land": { + "description": "GFDL-LM3 (same grid as atmos)", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)", - "native_nominal_resolution":"25 km" + "ocean": { + "description": "SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)", + "native_nominal_resolution": "25 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2018", - "source_id":"HiRAM-SIT-LR" + "release_year": "2018", + "source_id": "HiRAM-SIT-LR" }, - "ICON-ESM-LR":{ - "activity_participation":[ + "ICON-ESM-LR": { + "activity_participation": [ "CMIP", "OMIP", "SIMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MPI-M" ], - "label":"ICON-ESM-LR", - "label_extended":"ICON-ESM-LR", - "license_info":{ - "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", - "history":"2021-02-15: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "ICON-ESM-LR", + "label_extended": "ICON-ESM-LR", + "license_info": { + "exceptions_contact": "@dkrz.de <- cmip6-mpi-esm", + "history": "2021-02-15: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none, prescribed MACv2-SP", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "none, prescribed MACv2-SP", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"ICON-A (icosahedral/triangles; 160 km; 47 levels; top level 80 km)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "ICON-A (icosahedral/triangles; 160 km; 47 levels; top level 80 km)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JSBACH4.20", - "native_nominal_resolution":"250 km" + "land": { + "description": "JSBACH4.20", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none/prescribed", - "native_nominal_resolution":"none" + "landIce": { + "description": "none/prescribed", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"ICON-O (icosahedral/triangles; 40 km; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "ICON-O (icosahedral/triangles; 40 km; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"HAMOCC", - "native_nominal_resolution":"50 km" + "ocnBgchem": { + "description": "HAMOCC", + "native_nominal_resolution": "50 km" }, - "seaIce":{ - "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution": "50 km" } }, - "release_year":"2017", - "source_id":"ICON-ESM-LR" + "release_year": "2017", + "source_id": "ICON-ESM-LR" }, - "IITM-ESM":{ - "activity_participation":[ + "IITM-ESM": { + "activity_participation": [ "CMIP", "GMMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "CCCR-IITM" ], - "label":"IITM-ESM", - "label_extended":"IITM-ESM", - "license_info":{ - "exceptions_contact":"@tropmet.res.in <- iitm-esm", - "history":"2019-07-19: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "IITM-ESM", + "label_extended": "IITM-ESM", + "license_info": { + "exceptions_contact": "@tropmet.res.in <- iitm-esm", + "history": "2019-07-19: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"prescribed MAC-v2", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "prescribed MAC-v2", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"IITM-GFSv1 (T62L64, Linearly Reduced Gaussian Grid; 192 x 94 longitude/latitude; 64 levels; top level 0.2 mb)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "IITM-GFSv1 (T62L64, Linearly Reduced Gaussian Grid; 192 x 94 longitude/latitude; 64 levels; top level 0.2 mb)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"NOAH LSMv2.7.1", - "native_nominal_resolution":"250 km" + "land": { + "description": "NOAH LSMv2.7.1", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MOM4p1 (tripolar, primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "MOM4p1 (tripolar, primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"TOPAZv2.0", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "TOPAZv2.0", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"SISv1.0", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "SISv1.0", + "native_nominal_resolution": "100 km" } }, - "release_year":"2015", - "source_id":"IITM-ESM" + "release_year": "2015", + "source_id": "IITM-ESM" }, - "INM-CM4-8":{ - "activity_participation":[ + "INM-CM4-8": { + "activity_participation": [ "CMIP", "PMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "INM" ], - "label":"INM-CM4-8", - "label_extended":"INM-CM4-8", - "license_info":{ - "exceptions_contact":"@gmail.com <- volodinev", - "history":"2019-05-28: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "INM-CM4-8", + "label_extended": "INM-CM4-8", + "license_info": { + "exceptions_contact": "@gmail.com <- volodinev", + "history": "2019-05-28: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"INM-AER1", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "INM-AER1", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"INM-AM4-8 (2x1.5; 180 x 120 longitude/latitude; 21 levels; top level sigma = 0.01)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "INM-AM4-8 (2x1.5; 180 x 120 longitude/latitude; 21 levels; top level sigma = 0.01)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"INM-LND1", - "native_nominal_resolution":"100 km" + "land": { + "description": "INM-LND1", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"INM-OM5 (North Pole shifted to 60N, 90E; 360 x 318 longitude/latitude; 40 levels; sigma vertical coordinate)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "INM-OM5 (North Pole shifted to 60N, 90E; 360 x 318 longitude/latitude; 40 levels; sigma vertical coordinate)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"INM-ICE1", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "INM-ICE1", + "native_nominal_resolution": "100 km" } }, - "release_year":"2016", - "source_id":"INM-CM4-8" + "release_year": "2016", + "source_id": "INM-CM4-8" }, - "INM-CM5-0":{ - "activity_participation":[ + "INM-CM5-0": { + "activity_participation": [ "CMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "INM" ], - "label":"INM-CM5-0", - "label_extended":"INM-CM5-0", - "license_info":{ - "exceptions_contact":"@gmail.com <- volodinev", - "history":"2019-06-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "INM-CM5-0", + "label_extended": "INM-CM5-0", + "license_info": { + "exceptions_contact": "@gmail.com <- volodinev", + "history": "2019-06-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"INM-AER1", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "INM-AER1", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"INM-AM5-0 (2x1.5; 180 x 120 longitude/latitude; 73 levels; top level sigma = 0.0002)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "INM-AM5-0 (2x1.5; 180 x 120 longitude/latitude; 73 levels; top level sigma = 0.0002)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"INM-LND1", - "native_nominal_resolution":"100 km" + "land": { + "description": "INM-LND1", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"INM-OM5 (North Pole shifted to 60N, 90E. 0.5x0.25; 720 x 720 longitude/latitude; 40 levels; vertical sigma coordinate)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "INM-OM5 (North Pole shifted to 60N, 90E. 0.5x0.25; 720 x 720 longitude/latitude; 40 levels; vertical sigma coordinate)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"INM-ICE1", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "INM-ICE1", + "native_nominal_resolution": "50 km" } }, - "release_year":"2016", - "source_id":"INM-CM5-0" + "release_year": "2016", + "source_id": "INM-CM5-0" }, - "INM-CM5-H":{ - "activity_participation":[ + "INM-CM5-H": { + "activity_participation": [ "CMIP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "INM" ], - "label":"INM-CM5-H", - "label_extended":"INM-CM5-H", - "license_info":{ - "exceptions_contact":"@gmail.com <- volodinev", - "history":"2019-08-12: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "INM-CM5-H", + "label_extended": "INM-CM5-H", + "license_info": { + "exceptions_contact": "@gmail.com <- volodinev", + "history": "2019-08-12: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"INM-AER1", - "native_nominal_resolution":"50 km" + "model_component": { + "aerosol": { + "description": "INM-AER1", + "native_nominal_resolution": "50 km" }, - "atmos":{ - "description":"INM-AM5-H (0.67x0.5; 540 x 360 longitude/latitude; 73 levels; top level sigma = 0.0002)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "INM-AM5-H (0.67x0.5; 540 x 360 longitude/latitude; 73 levels; top level sigma = 0.0002)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"INM-LND1", - "native_nominal_resolution":"50 km" + "land": { + "description": "INM-LND1", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"INM-OM5-H (North Pole shifted to 60N, 90E. 0.167x0.125; 2160x1440 longitude/latitude; 40 levels; vertical sigma coordinate)", - "native_nominal_resolution":"10 km" + "ocean": { + "description": "INM-OM5-H (North Pole shifted to 60N, 90E. 0.167x0.125; 2160x1440 longitude/latitude; 40 levels; vertical sigma coordinate)", + "native_nominal_resolution": "10 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"INM-ICE1", - "native_nominal_resolution":"10 km" + "seaIce": { + "description": "INM-ICE1", + "native_nominal_resolution": "10 km" } }, - "release_year":"2016", - "source_id":"INM-CM5-H" + "release_year": "2016", + "source_id": "INM-CM5-H" }, - "IPSL-CM5A2-INCA":{ - "activity_participation":[ + "IPSL-CM5A2-INCA": { + "activity_participation": [ "AerChemMIP", "LUMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "IPSL" ], - "label":"IPSL-CM5A2-INCA", - "label_extended":"IPSL-CM5A2-INCA", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2020-07-29: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "IPSL-CM5A2-INCA", + "label_extended": "IPSL-CM5A2-INCA", + "license_info": { + "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", + "history": "2020-07-29: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"INCA v6 NMHC-AER-S", - "native_nominal_resolution":"500 km" + "model_component": { + "aerosol": { + "description": "INCA v6 NMHC-AER-S", + "native_nominal_resolution": "500 km" }, - "atmos":{ - "description":"LMDZ (APv5; 96 x 96 longitude/latitude; 39 levels; top level 80000 m)", - "native_nominal_resolution":"500 km" + "atmos": { + "description": "LMDZ (APv5; 96 x 96 longitude/latitude; 39 levels; top level 80000 m)", + "native_nominal_resolution": "500 km" }, - "atmosChem":{ - "description":"INCA v6 NMHC-AER-S", - "native_nominal_resolution":"500 km" + "atmosChem": { + "description": "INCA v6 NMHC-AER-S", + "native_nominal_resolution": "500 km" }, - "land":{ - "description":"ORCHIDEE (IPSLCM5A2.1, Water/Carbon/Energy mode)", - "native_nominal_resolution":"500 km" + "land": { + "description": "ORCHIDEE (IPSLCM5A2.1, Water/Carbon/Energy mode)", + "native_nominal_resolution": "500 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO-OPA (v3.6, ORCA2 tripolar primarily 2deg; 182 x 149 longitude/latitude; 31 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"250 km" + "ocean": { + "description": "NEMO-OPA (v3.6, ORCA2 tripolar primarily 2deg; 182 x 149 longitude/latitude; 31 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "250 km" }, - "ocnBgchem":{ - "description":"NEMO-PISCES", - "native_nominal_resolution":"250 km" + "ocnBgchem": { + "description": "NEMO-PISCES", + "native_nominal_resolution": "250 km" }, - "seaIce":{ - "description":"NEMO-LIM2", - "native_nominal_resolution":"250 km" + "seaIce": { + "description": "NEMO-LIM2", + "native_nominal_resolution": "250 km" } }, - "release_year":"2019", - "source_id":"IPSL-CM5A2-INCA" + "release_year": "2019", + "source_id": "IPSL-CM5A2-INCA" }, - "IPSL-CM6A-ATM-HR":{ - "activity_participation":[ + "IPSL-CM6A-ATM-HR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "IPSL" ], - "label":"IPSL-CM6A-ATM-HR", - "label_extended":"IPSL-CM6A-ATM-HR", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2019-01-22: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "IPSL-CM6A-ATM-HR", + "label_extended": "IPSL-CM6A-ATM-HR", + "license_info": { + "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", + "history": "2019-01-22: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"LMDZ (NPv6, N256; 512 x 360 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "LMDZ (NPv6, N256; 512 x 360 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", - "native_nominal_resolution":"50 km" + "land": { + "description": "ORCHIDEE (v2.0, Water/Carbon/Energy mode)", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2018", - "source_id":"IPSL-CM6A-ATM-HR" + "release_year": "2018", + "source_id": "IPSL-CM6A-ATM-HR" }, - "IPSL-CM6A-ATM-ICO-HR":{ - "activity_participation":[ + "IPSL-CM6A-ATM-ICO-HR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "IPSL" ], - "label":"IPSL-CM6A-ATM-ICO-HR", - "label_extended":"IPSL-CM6A-ATM-ICO-HR", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2022-07-21: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "IPSL-CM6A-ATM-ICO-HR", + "label_extended": "IPSL-CM6A-ATM-ICO-HR", + "license_info": { + "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", + "history": "2022-07-21: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"DYNAMICO-LMDZ (NPv6; 256000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "DYNAMICO-LMDZ (NPv6; 256000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", - "native_nominal_resolution":"50 km" + "land": { + "description": "ORCHIDEE (v2.2, Water/Carbon/Energy mode)", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_ominal_resolution":"none" + "seaIce": { + "description": "none", + "native_ominal_resolution": "none" } }, - "release_year":"2021", - "source_id":"IPSL-CM6A-ATM-ICO-HR" + "release_year": "2021", + "source_id": "IPSL-CM6A-ATM-ICO-HR" }, - "IPSL-CM6A-ATM-ICO-LR":{ - "activity_participation":[ + "IPSL-CM6A-ATM-ICO-LR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "IPSL" ], - "label":"IPSL-CM6A-ATM-ICO-LR", - "label_extended":"IPSL-CM6A-ATM-ICO-LR", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2022-07-21: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "IPSL-CM6A-ATM-ICO-LR", + "label_extended": "IPSL-CM6A-ATM-ICO-LR", + "license_info": { + "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", + "history": "2022-07-21: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"DYNAMICO-LMDZ (NPv6; 16000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "DYNAMICO-LMDZ (NPv6; 16000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", - "native_nominal_resolution":"250 km" + "land": { + "description": "ORCHIDEE (v2.2, Water/Carbon/Energy mode)", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_ominal_resolution":"none" + "seaIce": { + "description": "none", + "native_ominal_resolution": "none" } }, - "release_year":"2021", - "source_id":"IPSL-CM6A-ATM-ICO-LR" + "release_year": "2021", + "source_id": "IPSL-CM6A-ATM-ICO-LR" }, - "IPSL-CM6A-ATM-ICO-MR":{ - "activity_participation":[ + "IPSL-CM6A-ATM-ICO-MR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "IPSL" ], - "label":"IPSL-CM6A-ATM-ICO-MR", - "label_extended":"IPSL-CM6A-ATM-ICO-MR", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2022-07-20: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "IPSL-CM6A-ATM-ICO-MR", + "label_extended": "IPSL-CM6A-ATM-ICO-MR", + "license_info": { + "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", + "history": "2022-07-20: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"DYNAMICO-LMDZ (NPv6; 64000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "DYNAMICO-LMDZ (NPv6; 64000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", - "native_nominal_resolution":"100 km" + "land": { + "description": "ORCHIDEE (v2.2, Water/Carbon/Energy mode)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_ominal_resolution":"none" + "seaIce": { + "description": "none", + "native_ominal_resolution": "none" } }, - "release_year":"2021", - "source_id":"IPSL-CM6A-ATM-ICO-MR" + "release_year": "2021", + "source_id": "IPSL-CM6A-ATM-ICO-MR" }, - "IPSL-CM6A-ATM-ICO-VHR":{ - "activity_participation":[ + "IPSL-CM6A-ATM-ICO-VHR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "IPSL" ], - "label":"IPSL-CM6A-ATM-ICO-VHR", - "label_extended":"IPSL-CM6A-ATM-ICO-VHR", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2022-07-21: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "IPSL-CM6A-ATM-ICO-VHR", + "label_extended": "IPSL-CM6A-ATM-ICO-VHR", + "license_info": { + "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", + "history": "2022-07-21: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"DYNAMICO-LMDZ (NPv6; 1024000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", - "native_nominal_resolution":"25 km" + "atmos": { + "description": "DYNAMICO-LMDZ (NPv6; 1024000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", + "native_nominal_resolution": "25 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", - "native_nominal_resolution":"25 km" + "land": { + "description": "ORCHIDEE (v2.2, Water/Carbon/Energy mode)", + "native_nominal_resolution": "25 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_ominal_resolution":"none" + "seaIce": { + "description": "none", + "native_ominal_resolution": "none" } }, - "release_year":"2021", - "source_id":"IPSL-CM6A-ATM-ICO-VHR" + "release_year": "2021", + "source_id": "IPSL-CM6A-ATM-ICO-VHR" }, - "IPSL-CM6A-ATM-LR-REPROBUS":{ - "activity_participation":[ + "IPSL-CM6A-ATM-LR-REPROBUS": { + "activity_participation": [ "AerChemMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "IPSL" ], - "label":"IPSL-CM6A-ATM-LR-REPROBUS", - "label_extended":"IPSL-CM6A-ATM-LR-REPROBUS", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2024-06-18: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "IPSL-CM6A-ATM-LR-REPROBUS", + "label_extended": "IPSL-CM6A-ATM-LR-REPROBUS", + "license_info": { + "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", + "history": "2024-06-18: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"REPROBUS v6 (same grid as atmos)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "REPROBUS v6 (same grid as atmos)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" + "land": { + "description": "none", + "native_nominal_resolution": "none" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2021", - "source_id":"IPSL-CM6A-ATM-LR-REPROBUS" + "release_year": "2021", + "source_id": "IPSL-CM6A-ATM-LR-REPROBUS" }, - "IPSL-CM6A-LR":{ - "activity_participation":[ + "IPSL-CM6A-LR": { + "activity_participation": [ "AerChemMIP", "C4MIP", "CDRMIP", @@ -5831,412 +5888,412 @@ "ScenarioMIP", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "IPSL" ], - "label":"IPSL-CM6A-LR", - "label_extended":"IPSL-CM6A-LR", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2018-03-14: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "IPSL-CM6A-LR", + "label_extended": "IPSL-CM6A-LR", + "license_info": { + "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", + "history": "2018-03-14: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"LMDZ (NPv6, N96; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "LMDZ (NPv6, N96; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", - "native_nominal_resolution":"250 km" + "land": { + "description": "ORCHIDEE (v2.0, Water/Carbon/Energy mode)", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"NEMO-PISCES", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "NEMO-PISCES", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"NEMO-LIM3", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "NEMO-LIM3", + "native_nominal_resolution": "100 km" } }, - "release_year":"2017", - "source_id":"IPSL-CM6A-LR" + "release_year": "2017", + "source_id": "IPSL-CM6A-LR" }, - "IPSL-CM6A-LR-INCA":{ - "activity_participation":[ + "IPSL-CM6A-LR-INCA": { + "activity_participation": [ "AerChemMIP", "RFMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "IPSL" ], - "label":"IPSL-CM6A-LR-INCA", - "label_extended":"IPSL-CM6A-LR-INCA", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2020-07-17: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "IPSL-CM6A-LR-INCA", + "label_extended": "IPSL-CM6A-LR-INCA", + "license_info": { + "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", + "history": "2020-07-17: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"INCA v6 AER", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "INCA v6 AER", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", - "native_nominal_resolution":"250 km" + "land": { + "description": "ORCHIDEE (v2.0, Water/Carbon/Energy mode)", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"NEMO-PISCES", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "NEMO-PISCES", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"NEMO-LIM3", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "NEMO-LIM3", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"IPSL-CM6A-LR-INCA" + "release_year": "2019", + "source_id": "IPSL-CM6A-LR-INCA" }, - "IPSL-CM6A-MR1":{ - "activity_participation":[ + "IPSL-CM6A-MR1": { + "activity_participation": [ "CMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "IPSL" ], - "label":"IPSL-CM6A-MR1", - "label_extended":"IPSL-CM6A-MR1", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2024-03-26: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "IPSL-CM6A-MR1", + "label_extended": "IPSL-CM6A-MR1", + "license_info": { + "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", + "history": "2024-03-26: initially published under CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"LMDZ (NPv6; 256 x 256 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "LMDZ (NPv6; 256 x 256 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode; same grid as atmos)", - "native_nominal_resolution":"100 km" + "land": { + "description": "ORCHIDEE (v2.2, Water/Carbon/Energy mode; same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"NEMO-PISCES (same grid as ocean)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "NEMO-PISCES (same grid as ocean)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"NEMO-LIM3 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "NEMO-LIM3 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2021", - "source_id":"IPSL-CM6A-MR1" + "release_year": "2021", + "source_id": "IPSL-CM6A-MR1" }, - "KACE-1-0-G":{ - "activity_participation":[ + "KACE-1-0-G": { + "activity_participation": [ "CMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NIMS-KMA" ], - "label":"KACE1.0-G", - "label_extended":"KACE1.0-GLOMAP", - "license_info":{ - "exceptions_contact":"@korea.kr <- sunghm122", - "history":"2019-08-13: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "KACE1.0-G", + "label_extended": "KACE1.0-GLOMAP", + "license_info": { + "exceptions_contact": "@korea.kr <- sunghm122", + "history": "2019-08-13: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "UKCA-GLOMAP-mode", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"250 km" + "land": { + "description": "JULES-HadGEM3-GL7.1", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MOM4p1 (tripolar primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "MOM4p1 (tripolar primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (tripolar primarily 1deg; 360 x 200 longitude/latitude)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE-HadGEM3-GSI8 (tripolar primarily 1deg; 360 x 200 longitude/latitude)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2018", - "source_id":"KACE-1-0-G" + "release_year": "2018", + "source_id": "KACE-1-0-G" }, - "KIOST-ESM":{ - "activity_participation":[ + "KIOST-ESM": { + "activity_participation": [ "C4MIP", "CMIP", "DynVarMIP", "PMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "KIOST" ], - "label":"KIOST-ESM", - "label_extended":"KIOST Earth System Model v2", - "license_info":{ - "exceptions_contact":"@pknu.ac.kr <- yhokim", - "history":"2019-11-04: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "KIOST-ESM", + "label_extended": "KIOST Earth System Model v2", + "license_info": { + "exceptions_contact": "@pknu.ac.kr <- yhokim", + "history": "2019-11-04: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"GFDL-AM2.0 (cubed sphere (C48); 192 x 96 longitude/latitude; 32 vertical levels; top level 2 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "GFDL-AM2.0 (cubed sphere (C48); 192 x 96 longitude/latitude; 32 vertical levels; top level 2 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"Simple carbon aerosol model (emission type)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "Simple carbon aerosol model (emission type)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"NCAR-CLM4", - "native_nominal_resolution":"250 km" + "land": { + "description": "NCAR-CLM4", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"NCAR-CLM4", - "native_nominal_resolution":"250 km" + "landIce": { + "description": "NCAR-CLM4", + "native_nominal_resolution": "250 km" }, - "ocean":{ - "description":"GFDL-MOM5.0 (tripolar - nominal 1.0 deg; 360 x 200 longitude/latitude; 52 levels; top grid cell 0-2 m; NK mixed layer scheme)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "GFDL-MOM5.0 (tripolar - nominal 1.0 deg; 360 x 200 longitude/latitude; 52 levels; top grid cell 0-2 m; NK mixed layer scheme)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"TOPAZ2", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "TOPAZ2", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"GFDL-SIS", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "GFDL-SIS", + "native_nominal_resolution": "100 km" } }, - "release_year":"2018", - "source_id":"KIOST-ESM" + "release_year": "2018", + "source_id": "KIOST-ESM" }, - "LBLRTM-12-8":{ - "activity_participation":[ + "LBLRTM-12-8": { + "activity_participation": [ "RFMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "AER" ], - "label":"LBLRTM 12.8", - "label_extended":"Line-By-Line Radiative Transfer Model v12.8, aer_v_3.6, MT_CKD_3.2", - "license_info":{ - "exceptions_contact":"@aer.com <- aer_lblrtm", - "history":"2019-05-14: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "LBLRTM 12.8", + "label_extended": "Line-By-Line Radiative Transfer Model v12.8, aer_v_3.6, MT_CKD_3.2", + "license_info": { + "exceptions_contact": "@aer.com <- aer_lblrtm", + "history": "2019-05-14: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" + "atmos": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" + "land": { + "description": "none", + "native_nominal_resolution": "none" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2017", - "source_id":"LBLRTM-12-8" + "release_year": "2017", + "source_id": "LBLRTM-12-8" }, - "MCM-UA-1-0":{ - "activity_participation":[ + "MCM-UA-1-0": { + "activity_participation": [ "CMIP", "FAFMIP", "PMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "UA" ], - "label":"MCM-UA-1-0", - "label_extended":"Manabe Climate Model v1.0 - University of Arizona", - "license_info":{ - "exceptions_contact":"@email.arizona.edu <- GEOS-CMIP", - "history":"2019-07-31: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "MCM-UA-1-0", + "label_extended": "Manabe Climate Model v1.0 - University of Arizona", + "license_info": { + "exceptions_contact": "@email.arizona.edu <- GEOS-CMIP", + "history": "2019-07-31: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"Modifies surface albedoes (Haywood et al. 1997, doi: 10.1175/1520-0442(1997)010<1562:GCMCOT>2.0.CO;2)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "Modifies surface albedoes (Haywood et al. 1997, doi: 10.1175/1520-0442(1997)010<1562:GCMCOT>2.0.CO;2)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"R30L14 (3.75 X 2.5 degree (long-lat) configuration; 96 x 80 longitude/latitude; 14 levels; top level 0.015 sigma, 15 mb)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "R30L14 (3.75 X 2.5 degree (long-lat) configuration; 96 x 80 longitude/latitude; 14 levels; top level 0.015 sigma, 15 mb)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"Standard Manabe bucket hydrology scheme (Manabe 1969, doi: 10.1175/1520-0493(1969)097<0739:CATOC>2.3.CO;2)", - "native_nominal_resolution":"250 km" + "land": { + "description": "Standard Manabe bucket hydrology scheme (Manabe 1969, doi: 10.1175/1520-0493(1969)097<0739:CATOC>2.3.CO;2)", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"Specified location - invariant in time, has high albedo and latent heat capacity", - "native_nominal_resolution":"250 km" + "landIce": { + "description": "Specified location - invariant in time, has high albedo and latent heat capacity", + "native_nominal_resolution": "250 km" }, - "ocean":{ - "description":"MOM1.0 (MOM1, 1.875 X 2.5 deg; 192 x 80 longitude/latitude; 18 levels; top grid cell 0-40 m)", - "native_nominal_resolution":"250 km" + "ocean": { + "description": "MOM1.0 (MOM1, 1.875 X 2.5 deg; 192 x 80 longitude/latitude; 18 levels; top grid cell 0-40 m)", + "native_nominal_resolution": "250 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"Thermodynamic ice model (free drift dynamics)", - "native_nominal_resolution":"250 km" + "seaIce": { + "description": "Thermodynamic ice model (free drift dynamics)", + "native_nominal_resolution": "250 km" } }, - "release_year":"1991", - "source_id":"MCM-UA-1-0" + "release_year": "1991", + "source_id": "MCM-UA-1-0" }, - "MIROC-ES2H":{ - "activity_participation":[ + "MIROC-ES2H": { + "activity_participation": [ "AerChemMIP", "C4MIP", "CMIP", @@ -6245,119 +6302,119 @@ "ScenarioMIP", "VIACSAB" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MIROC" ], - "label":"MIROC-ES2H", - "label_extended":"MIROC-ES2H", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2021-01-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "MIROC-ES2H", + "label_extended": "MIROC-ES2H", + "license_info": { + "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", + "history": "2021-01-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"SPRINTARS6.0", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "SPRINTARS6.0", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution":"500 km" + "atmosChem": { + "description": "CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution": "500 km" }, - "land":{ - "description":"MATSIRO6.0+VISIT-e ver.1.0", - "native_nominal_resolution":"250 km" + "land": { + "description": "MATSIRO6.0+VISIT-e ver.1.0", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"COCO4.9", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "COCO4.9", + "native_nominal_resolution": "100 km" } }, - "release_year":"2018", - "source_id":"MIROC-ES2H" + "release_year": "2018", + "source_id": "MIROC-ES2H" }, - "MIROC-ES2H-NB":{ - "activity_participation":[ + "MIROC-ES2H-NB": { + "activity_participation": [ "AerChemMIP", "CMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MIROC" ], - "label":"MIROC-ES2H-NB", - "label_extended":"MIROC-ES2H with No BiogenicCycle", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2020-04-28: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "MIROC-ES2H-NB", + "label_extended": "MIROC-ES2H with No BiogenicCycle", + "license_info": { + "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", + "history": "2020-04-28: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"SPRINTARS6.0", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "SPRINTARS6.0", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution":"500 km" + "atmosChem": { + "description": "CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution": "500 km" }, - "land":{ - "description":"MATSIRO6", - "native_nominal_resolution":"250 km" + "land": { + "description": "MATSIRO6", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"COCO4.9", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "COCO4.9", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"MIROC-ES2H-NB" + "release_year": "2019", + "source_id": "MIROC-ES2H-NB" }, - "MIROC-ES2L":{ - "activity_participation":[ + "MIROC-ES2L": { + "activity_participation": [ "C4MIP", "CDRMIP", "CMIP", @@ -6371,61 +6428,61 @@ "VIACSAB", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MIROC" ], - "label":"MIROC-ES2L", - "label_extended":"MIROC-ES2L", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2019-08-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "MIROC-ES2L", + "label_extended": "MIROC-ES2L", + "license_info": { + "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", + "history": "2019-08-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"SPRINTARS6.0", - "native_nominal_resolution":"500 km" + "model_component": { + "aerosol": { + "description": "SPRINTARS6.0", + "native_nominal_resolution": "500 km" }, - "atmos":{ - "description":"CCSR AGCM (T42; 128 x 64 longitude/latitude; 40 levels; top level 3 hPa)", - "native_nominal_resolution":"500 km" + "atmos": { + "description": "CCSR AGCM (T42; 128 x 64 longitude/latitude; 40 levels; top level 3 hPa)", + "native_nominal_resolution": "500 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"MATSIRO6.0+VISIT-e ver.1.0", - "native_nominal_resolution":"500 km" + "land": { + "description": "MATSIRO6.0+VISIT-e ver.1.0", + "native_nominal_resolution": "500 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"COCO4.9", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "COCO4.9", + "native_nominal_resolution": "100 km" } }, - "release_year":"2018", - "source_id":"MIROC-ES2L" + "release_year": "2018", + "source_id": "MIROC-ES2L" }, - "MIROC6":{ - "activity_participation":[ + "MIROC6": { + "activity_participation": [ "AerChemMIP", "CFMIP", "CMIP", @@ -6443,121 +6500,121 @@ "ScenarioMIP", "VIACSAB" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MIROC" ], - "label":"MIROC6", - "label_extended":"MIROC6", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2018-12-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "MIROC6", + "label_extended": "MIROC6", + "license_info": { + "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", + "history": "2018-12-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"SPRINTARS6.0", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "SPRINTARS6.0", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"MATSIRO6.0", - "native_nominal_resolution":"250 km" + "land": { + "description": "MATSIRO6.0", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"COCO4.9", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "COCO4.9", + "native_nominal_resolution": "100 km" } }, - "release_year":"2017", - "source_id":"MIROC6" + "release_year": "2017", + "source_id": "MIROC6" }, - "MPI-ESM-1-2-HAM":{ - "activity_participation":[ + "MPI-ESM-1-2-HAM": { + "activity_participation": [ "AerChemMIP", "CMIP", "RFMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "HAMMOZ-Consortium" ], - "label":"MPI-ESM1.2-HAM", - "label_extended":"MPI-ESM1.2-HAM", - "license_info":{ - "exceptions_contact":"@sympa.ethz.ch <- aerchemmip_echam-ham", - "history":"2019-06-27: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "MPI-ESM1.2-HAM", + "label_extended": "MPI-ESM1.2-HAM", + "license_info": { + "exceptions_contact": "@sympa.ethz.ch <- aerchemmip_echam-ham", + "history": "2019-06-27: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"HAM2.3", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "HAM2.3", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"sulfur chemistry (unnamed)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "sulfur chemistry (unnamed)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"JSBACH 3.20", - "native_nominal_resolution":"250 km" + "land": { + "description": "JSBACH 3.20", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution":"250 km" + "ocean": { + "description": "MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution": "250 km" }, - "ocnBgchem":{ - "description":"HAMOCC6", - "native_nominal_resolution":"250 km" + "ocnBgchem": { + "description": "HAMOCC6", + "native_nominal_resolution": "250 km" }, - "seaIce":{ - "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution":"250 km" + "seaIce": { + "description": "unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution": "250 km" } }, - "release_year":"2017", - "source_id":"MPI-ESM-1-2-HAM" + "release_year": "2017", + "source_id": "MPI-ESM-1-2-HAM" }, - "MPI-ESM1-2-HR":{ - "activity_participation":[ + "MPI-ESM1-2-HR": { + "activity_participation": [ "CMIP", "CORDEX", "DCPP", @@ -6570,63 +6627,63 @@ "ScenarioMIP", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MPI-M", "DWD", "DKRZ" ], - "label":"MPI-ESM1.2-HR", - "label_extended":"MPI-ESM1.2-HR", - "license_info":{ - "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", - "history":"2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "MPI-ESM1.2-HR", + "label_extended": "MPI-ESM1.2-HR", + "license_info": { + "exceptions_contact": "@dkrz.de <- cmip6-mpi-esm", + "history": "2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none, prescribed MACv2-SP", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "none, prescribed MACv2-SP", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"ECHAM6.3 (spectral T127; 384 x 192 longitude/latitude; 95 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "ECHAM6.3 (spectral T127; 384 x 192 longitude/latitude; 95 levels; top level 0.01 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JSBACH3.20", - "native_nominal_resolution":"100 km" + "land": { + "description": "JSBACH3.20", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none/prescribed", - "native_nominal_resolution":"none" + "landIce": { + "description": "none/prescribed", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"HAMOCC6", - "native_nominal_resolution":"50 km" + "ocnBgchem": { + "description": "HAMOCC6", + "native_nominal_resolution": "50 km" }, - "seaIce":{ - "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution": "50 km" } }, - "release_year":"2017", - "source_id":"MPI-ESM1-2-HR" + "release_year": "2017", + "source_id": "MPI-ESM1-2-HR" }, - "MPI-ESM1-2-LR":{ - "activity_participation":[ + "MPI-ESM1-2-LR": { + "activity_participation": [ "C4MIP", "CDRMIP", "CFMIP", @@ -6647,238 +6704,238 @@ "ScenarioMIP", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MPI-M", "AWI", "DKRZ", "DWD" ], - "label":"MPI-ESM1.2-LR", - "label_extended":"MPI-ESM1.2-LR", - "license_info":{ - "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", - "history":"2019-07-10: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "MPI-ESM1.2-LR", + "label_extended": "MPI-ESM1.2-LR", + "license_info": { + "exceptions_contact": "@dkrz.de <- cmip6-mpi-esm", + "history": "2019-07-10: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none, prescribed MACv2-SP", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "none, prescribed MACv2-SP", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JSBACH3.20", - "native_nominal_resolution":"250 km" + "land": { + "description": "JSBACH3.20", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none/prescribed", - "native_nominal_resolution":"none" + "landIce": { + "description": "none/prescribed", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution":"250 km" + "ocean": { + "description": "MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution": "250 km" }, - "ocnBgchem":{ - "description":"HAMOCC6", - "native_nominal_resolution":"250 km" + "ocnBgchem": { + "description": "HAMOCC6", + "native_nominal_resolution": "250 km" }, - "seaIce":{ - "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution":"250 km" + "seaIce": { + "description": "unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution": "250 km" } }, - "release_year":"2017", - "source_id":"MPI-ESM1-2-LR" + "release_year": "2017", + "source_id": "MPI-ESM1-2-LR" }, - "MPI-ESM1-2-XR":{ - "activity_participation":[ + "MPI-ESM1-2-XR": { + "activity_participation": [ "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MPI-M" ], - "label":"MPI-ESM1.2-XR", - "label_extended":"MPI-ESM1.2-XR", - "license_info":{ - "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", - "history":"2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "MPI-ESM1.2-XR", + "label_extended": "MPI-ESM1.2-XR", + "license_info": { + "exceptions_contact": "@dkrz.de <- cmip6-mpi-esm", + "history": "2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none, prescribed MACv2-SP", - "native_nominal_resolution":"50 km" + "model_component": { + "aerosol": { + "description": "none, prescribed MACv2-SP", + "native_nominal_resolution": "50 km" }, - "atmos":{ - "description":"ECHAM6.3 (spectral T255; 768 x 384 longitude/latitude; 95 levels; top level 0.01 hPa)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "ECHAM6.3 (spectral T255; 768 x 384 longitude/latitude; 95 levels; top level 0.01 hPa)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JSBACH3.20", - "native_nominal_resolution":"50 km" + "land": { + "description": "JSBACH3.20", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none/prescribed", - "native_nominal_resolution":"none" + "landIce": { + "description": "none/prescribed", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution":"50 km" + "ocean": { + "description": "MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution": "50 km" }, - "ocnBgchem":{ - "description":"HAMOCC6", - "native_nominal_resolution":"50 km" + "ocnBgchem": { + "description": "HAMOCC6", + "native_nominal_resolution": "50 km" }, - "seaIce":{ - "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution": "50 km" } }, - "release_year":"2017", - "source_id":"MPI-ESM1-2-XR" + "release_year": "2017", + "source_id": "MPI-ESM1-2-XR" }, - "MRI-AGCM3-2-H":{ - "activity_participation":[ + "MRI-AGCM3-2-H": { + "activity_participation": [ "DynVarMIP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MRI" ], - "label":"MRI-AGCM3-2-H", - "label_extended":"MRI-AGCM3-2-H", - "license_info":{ - "exceptions_contact":"@mri-jma.go.jp <- rmizuta", - "history":"2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "MRI-AGCM3-2-H", + "label_extended": "MRI-AGCM3-2-H", + "license_info": { + "exceptions_contact": "@mri-jma.go.jp <- rmizuta", + "history": "2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"Prescribed from MRI-ESM2.0", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "Prescribed from MRI-ESM2.0", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"MRI-AGCM3.2H (TL319; 640 x 320 longitude/latitude; 64 levels; top level 0.01 hPa)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "MRI-AGCM3.2H (TL319; 640 x 320 longitude/latitude; 64 levels; top level 0.01 hPa)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"SIB0109", - "native_nominal_resolution":"50 km" + "land": { + "description": "SIB0109", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2017", - "source_id":"MRI-AGCM3-2-H" + "release_year": "2017", + "source_id": "MRI-AGCM3-2-H" }, - "MRI-AGCM3-2-S":{ - "activity_participation":[ + "MRI-AGCM3-2-S": { + "activity_participation": [ "CMIP", "DynVarMIP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MRI" ], - "label":"MRI-AGCM3-2-S", - "label_extended":"MRI-AGCM3-2-S", - "license_info":{ - "exceptions_contact":"@mri-jma.go.jp <- rmizuta", - "history":"2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "MRI-AGCM3-2-S", + "label_extended": "MRI-AGCM3-2-S", + "license_info": { + "exceptions_contact": "@mri-jma.go.jp <- rmizuta", + "history": "2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"Prescribed from MRI-ESM2.0", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "Prescribed from MRI-ESM2.0", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"MRI-AGCM3.2S (TL959; 1920 x 960 longitude/latitude; 64 levels; top level 0.01 hPa)", - "native_nominal_resolution":"25 km" + "atmos": { + "description": "MRI-AGCM3.2S (TL959; 1920 x 960 longitude/latitude; 64 levels; top level 0.01 hPa)", + "native_nominal_resolution": "25 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"SIB0109", - "native_nominal_resolution":"25 km" + "land": { + "description": "SIB0109", + "native_nominal_resolution": "25 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2017", - "source_id":"MRI-AGCM3-2-S" + "release_year": "2017", + "source_id": "MRI-AGCM3-2-S" }, - "MRI-ESM2-0":{ - "activity_participation":[ + "MRI-ESM2-0": { + "activity_participation": [ "AerChemMIP", "C4MIP", "CFMIP", @@ -6898,61 +6955,61 @@ "ScenarioMIP", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MRI" ], - "label":"MRI-ESM2.0", - "label_extended":"MRI-ESM2.0", - "license_info":{ - "exceptions_contact":"@mri-jma.go.jp <- mdeushi", - "history":"2019-02-22: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "MRI-ESM2.0", + "label_extended": "MRI-ESM2.0", + "license_info": { + "exceptions_contact": "@mri-jma.go.jp <- mdeushi", + "history": "2019-02-22: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MASINGAR mk2r4 (TL95; 192 x 96 longitude/latitude; 80 levels; top level 0.01 hPa)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "MASINGAR mk2r4 (TL95; 192 x 96 longitude/latitude; 80 levels; top level 0.01 hPa)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"MRI-AGCM3.5 (TL159; 320 x 160 longitude/latitude; 80 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "MRI-AGCM3.5 (TL159; 320 x 160 longitude/latitude; 80 levels; top level 0.01 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"MRI-CCM2.1 (T42; 128 x 64 longitude/latitude; 80 levels; top level 0.01 hPa)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "MRI-CCM2.1 (T42; 128 x 64 longitude/latitude; 80 levels; top level 0.01 hPa)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"HAL 1.0", - "native_nominal_resolution":"100 km" + "land": { + "description": "HAL 1.0", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MRI.COM4.4 (tripolar primarily 0.5 deg latitude/1 deg longitude with meridional refinement down to 0.3 deg within 10 degrees north and south of the equator; 360 x 364 longitude/latitude; 61 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "MRI.COM4.4 (tripolar primarily 0.5 deg latitude/1 deg longitude with meridional refinement down to 0.3 deg within 10 degrees north and south of the equator; 360 x 364 longitude/latitude; 61 levels; top grid cell 0-2 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"MRI.COM4.4", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "MRI.COM4.4", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"MRI.COM4.4", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "MRI.COM4.4", + "native_nominal_resolution": "100 km" } }, - "release_year":"2017", - "source_id":"MRI-ESM2-0" + "release_year": "2017", + "source_id": "MRI-ESM2-0" }, - "NESM3":{ - "activity_participation":[ + "NESM3": { + "activity_participation": [ "CMIP", "DAMIP", "DCPP", @@ -6962,354 +7019,354 @@ "ScenarioMIP", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NUIST" ], - "label":"NESM v3", - "label_extended":"NUIST ESM v3", - "license_info":{ - "exceptions_contact":"@nuist.edu.cn <- esmc", - "history":"2019-06-25: initially published under CC BY-SA 4.0; 2022-10-05: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "NESM v3", + "label_extended": "NUIST ESM v3", + "license_info": { + "exceptions_contact": "@nuist.edu.cn <- esmc", + "history": "2019-06-25: initially published under CC BY-SA 4.0; 2022-10-05: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"ECHAM v6.3 (T63; 192 x 96 longitude/latitude; 47 levels; top level 1 Pa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "ECHAM v6.3 (T63; 192 x 96 longitude/latitude; 47 levels; top level 1 Pa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JSBACH v3.1", - "native_nominal_resolution":"2.5 km" + "land": { + "description": "JSBACH v3.1", + "native_nominal_resolution": "2.5 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO v3.4 (NEMO v3.4, tripolar primarily 1deg; 384 x 362 longitude/latitude; 46 levels; top grid cell 0-6 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO v3.4 (NEMO v3.4, tripolar primarily 1deg; 384 x 362 longitude/latitude; 46 levels; top grid cell 0-6 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE4.1", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4.1", + "native_nominal_resolution": "100 km" } }, - "release_year":"2016", - "source_id":"NESM3" + "release_year": "2016", + "source_id": "NESM3" }, - "NICAM16-7S":{ - "activity_participation":[ + "NICAM16-7S": { + "activity_participation": [ "CMIP", "DynVarMIP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MIROC" ], - "label":"NICAM16-7S", - "label_extended":"NICAM.16 gl07-L38 with NSW6", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2019-03-18: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "NICAM16-7S", + "label_extended": "NICAM.16 gl07-L38 with NSW6", + "license_info": { + "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", + "history": "2019-03-18: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"Prescribed MACv2-SP", - "native_nominal_resolution":"50 km" + "model_component": { + "aerosol": { + "description": "Prescribed MACv2-SP", + "native_nominal_resolution": "50 km" }, - "atmos":{ - "description":"NICAM.16 (56km icosahedral grid; 163,842 grid cells (=10*4^7+2); 38 levels; top level 40 km)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "NICAM.16 (56km icosahedral grid; 163,842 grid cells (=10*4^7+2); 38 levels; top level 40 km)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"MATSIRO6 (w/o MOSAIC)", - "native_nominal_resolution":"50 km" + "land": { + "description": "MATSIRO6 (w/o MOSAIC)", + "native_nominal_resolution": "50 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"Fixed", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "Fixed", + "native_nominal_resolution": "50 km" } }, - "release_year":"2017", - "source_id":"NICAM16-7S" + "release_year": "2017", + "source_id": "NICAM16-7S" }, - "NICAM16-8S":{ - "activity_participation":[ + "NICAM16-8S": { + "activity_participation": [ "CMIP", "DynVarMIP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MIROC" ], - "label":"NICAM16-8S", - "label_extended":"NICAM.16 gl08-L38 with NSW6", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "NICAM16-8S", + "label_extended": "NICAM.16 gl08-L38 with NSW6", + "license_info": { + "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", + "history": "2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"Prescribed MACv2-SP", - "native_nominal_resolution":"25 km" + "model_component": { + "aerosol": { + "description": "Prescribed MACv2-SP", + "native_nominal_resolution": "25 km" }, - "atmos":{ - "description":"NICAM.16 (28km icosahedral grid; 655,362 grid cells (=10*4^8+2); 38 levels; top level 40 km)", - "native_nominal_resolution":"50 km" + "atmos": { + "description": "NICAM.16 (28km icosahedral grid; 655,362 grid cells (=10*4^8+2); 38 levels; top level 40 km)", + "native_nominal_resolution": "50 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"MATSIRO6 (w/o MOSAIC)", - "native_nominal_resolution":"25 km" + "land": { + "description": "MATSIRO6 (w/o MOSAIC)", + "native_nominal_resolution": "25 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"Fixed", - "native_nominal_resolution":"25 km" + "seaIce": { + "description": "Fixed", + "native_nominal_resolution": "25 km" } }, - "release_year":"2017", - "source_id":"NICAM16-8S" + "release_year": "2017", + "source_id": "NICAM16-8S" }, - "NICAM16-9S":{ - "activity_participation":[ + "NICAM16-9S": { + "activity_participation": [ "CMIP", "DynVarMIP", "HighResMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MIROC" ], - "label":"NICAM16-9S", - "label_extended":"NICAM.16 gl09-L38 with NSW6", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "NICAM16-9S", + "label_extended": "NICAM.16 gl09-L38 with NSW6", + "license_info": { + "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", + "history": "2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"Prescribed MACv2-SP", - "native_nominal_resolution":"10 km" + "model_component": { + "aerosol": { + "description": "Prescribed MACv2-SP", + "native_nominal_resolution": "10 km" }, - "atmos":{ - "description":"NICAM.16 (14km icosahedral grid; 2,621,442 grid cells (=10*4^9+2); 38 levels; top level 40 km)", - "native_nominal_resolution":"25 km" + "atmos": { + "description": "NICAM.16 (14km icosahedral grid; 2,621,442 grid cells (=10*4^9+2); 38 levels; top level 40 km)", + "native_nominal_resolution": "25 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"MATSIRO6 (w/o MOSAIC)", - "native_nominal_resolution":"10 km" + "land": { + "description": "MATSIRO6 (w/o MOSAIC)", + "native_nominal_resolution": "10 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"Fixed", - "native_nominal_resolution":"10 km" + "seaIce": { + "description": "Fixed", + "native_nominal_resolution": "10 km" } }, - "release_year":"2017", - "source_id":"NICAM16-9S" + "release_year": "2017", + "source_id": "NICAM16-9S" }, - "NorCPM1":{ - "activity_participation":[ + "NorCPM1": { + "activity_participation": [ "CMIP", "DCPP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NCC" ], - "label":"NorCPM1", - "label_extended":"Norwegian Climate Prediction Model version 1", - "license_info":{ - "exceptions_contact":"@uib.no <- norcpm", - "history":"2019-09-14: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "NorCPM1", + "label_extended": "Norwegian Climate Prediction Model version 1", + "license_info": { + "exceptions_contact": "@uib.no <- norcpm", + "history": "2019-09-14: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"OsloAero4.1 (same grid as atmos)", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "OsloAero4.1 (same grid as atmos)", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"CAM-OSLO4.1 (2 degree resolution; 144 x 96 longitude/latitude; 26 levels; top level ~2 hPa)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "CAM-OSLO4.1 (2 degree resolution; 144 x 96 longitude/latitude; 26 levels; top level ~2 hPa)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"OsloChemSimp4.1 (same grid as atmos)", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "OsloChemSimp4.1 (same grid as atmos)", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"CLM4 (same grid as atmos)", - "native_nominal_resolution":"250 km" + "land": { + "description": "CLM4 (same grid as atmos)", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"MICOM1.1 (1 degree resolution; 320 x 384 longitude/latitude; 53 levels; top grid cell 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "MICOM1.1 (1 degree resolution; 320 x 384 longitude/latitude; 53 levels; top grid cell 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"HAMOCC5.1 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "HAMOCC5.1 (same grid as ocean)", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE4 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"NorCPM1" + "release_year": "2019", + "source_id": "NorCPM1" }, - "NorESM1-F":{ - "activity_participation":[ + "NorESM1-F": { + "activity_participation": [ "CMIP", "PMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NCC" ], - "label":"NorESM1-F", - "label_extended":"NorESM1-F (a fast version of NorESM that is designed for paleo and multi-ensemble simulations)", - "license_info":{ - "exceptions_contact":"@met.no <- noresm-ncc", - "history":"2019-09-20: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "NorESM1-F", + "label_extended": "NorESM1-F (a fast version of NorESM that is designed for paleo and multi-ensemble simulations)", + "license_info": { + "exceptions_contact": "@met.no <- noresm-ncc", + "history": "2019-09-20: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"CAM4 (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "CAM4 (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CLM4", - "native_nominal_resolution":"250 km" + "land": { + "description": "CLM4", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"CISM", - "native_nominal_resolution":"250 km" + "landIce": { + "description": "CISM", + "native_nominal_resolution": "250 km" }, - "ocean":{ - "description":"MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"HAMOCC5.1", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "HAMOCC5.1", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE4", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4", + "native_nominal_resolution": "100 km" } }, - "release_year":"2018", - "source_id":"NorESM1-F" + "release_year": "2018", + "source_id": "NorESM1-F" }, - "NorESM2-LM":{ - "activity_participation":[ + "NorESM2-LM": { + "activity_participation": [ "AerChemMIP", "C4MIP", "CDRMIP", @@ -7325,61 +7382,61 @@ "ScenarioMIP", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NCC" ], - "label":"NorESM2-LM", - "label_extended":"NorESM2-LM (low atmosphere-medium ocean resolution, GHG concentration driven)", - "license_info":{ - "exceptions_contact":"@met.no <- noresm-ncc", - "history":"2019-08-15: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "NorESM2-LM", + "label_extended": "NorESM2-LM (low atmosphere-medium ocean resolution, GHG concentration driven)", + "license_info": { + "exceptions_contact": "@met.no <- noresm-ncc", + "history": "2019-08-15: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"OsloAero", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "OsloAero", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"OsloChemSimp", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "OsloChemSimp", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"CLM", - "native_nominal_resolution":"250 km" + "land": { + "description": "CLM", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"CISM", - "native_nominal_resolution":"250 km" + "landIce": { + "description": "CISM", + "native_nominal_resolution": "250 km" }, - "ocean":{ - "description":"MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"HAMOCC", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "HAMOCC", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE", + "native_nominal_resolution": "100 km" } }, - "release_year":"2017", - "source_id":"NorESM2-LM" + "release_year": "2017", + "source_id": "NorESM2-LM" }, - "NorESM2-MM":{ - "activity_participation":[ + "NorESM2-MM": { + "activity_participation": [ "AerChemMIP", "CFMIP", "CMIP", @@ -7388,339 +7445,339 @@ "RFMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NCC" ], - "label":"NorESM2-MM", - "label_extended":"NorESM2-MM (medium atmosphere-medium ocean resolution, GHG concentration driven)", - "license_info":{ - "exceptions_contact":"@met.no <- noresm-ncc", - "history":"2019-11-08: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "NorESM2-MM", + "label_extended": "NorESM2-MM (medium atmosphere-medium ocean resolution, GHG concentration driven)", + "license_info": { + "exceptions_contact": "@met.no <- noresm-ncc", + "history": "2019-11-08: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"OsloAero", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "OsloAero", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"CAM-OSLO (1 degree resolution; 288 x 192; 32 levels; top level 3 mb)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "CAM-OSLO (1 degree resolution; 288 x 192; 32 levels; top level 3 mb)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"OsloChemSimp", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "OsloChemSimp", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"CLM", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"CISM", - "native_nominal_resolution":"100 km" + "landIce": { + "description": "CISM", + "native_nominal_resolution": "100 km" }, - "ocean":{ - "description":"MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"HAMOCC", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "HAMOCC", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE", + "native_nominal_resolution": "100 km" } }, - "release_year":"2017", - "source_id":"NorESM2-MM" + "release_year": "2017", + "source_id": "NorESM2-MM" }, - "PCMDI-test-1-0":{ - "activity_participation":[ + "PCMDI-test-1-0": { + "activity_participation": [ "CMIP" ], - "cohort":[ + "cohort": [ "Registered" ], - "institution_id":[ + "institution_id": [ "PCMDI" ], - "label":"PCMDI-test 1.0", - "label_extended":"PCMDI-test 1.0 (This entry is free text for users to contribute verbose information)", - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "label": "PCMDI-test 1.0", + "label_extended": "PCMDI-test 1.0 (This entry is free text for users to contribute verbose information)", + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"Earth1.0-gettingHotter (360 x 180 longitude/latitude; 50 levels; top level 0.1 mb)", - "native_nominal_resolution":"1x1 degree" + "atmos": { + "description": "Earth1.0-gettingHotter (360 x 180 longitude/latitude; 50 levels; top level 0.1 mb)", + "native_nominal_resolution": "1x1 degree" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"Earth1.0", - "native_nominal_resolution":"1x1 degree" + "land": { + "description": "Earth1.0", + "native_nominal_resolution": "1x1 degree" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"BlueMarble1.0-warming (360 x 180 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"1x1 degree" + "ocean": { + "description": "BlueMarble1.0-warming (360 x 180 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "1x1 degree" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"Declining1.0-warming (360 x 180 longitude/latitude)", - "native_nominal_resolution":"1x1 degree" + "seaIce": { + "description": "Declining1.0-warming (360 x 180 longitude/latitude)", + "native_nominal_resolution": "1x1 degree" } }, - "release_year":"1989", - "source_id":"PCMDI-test-1-0" + "release_year": "1989", + "source_id": "PCMDI-test-1-0" }, - "RRTMG-LW-4-91":{ - "activity_participation":[ + "RRTMG-LW-4-91": { + "activity_participation": [ "RFMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "AER" ], - "label":"RRTMG-LW 4.91", - "label_extended":"RRTM for GCMs v4.91, longwave", - "license_info":{ - "exceptions_contact":"@aer.com <- aer_rrtmg", - "history":"2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "RRTMG-LW 4.91", + "label_extended": "RRTM for GCMs v4.91, longwave", + "license_info": { + "exceptions_contact": "@aer.com <- aer_rrtmg", + "history": "2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" + "atmos": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" + "land": { + "description": "none", + "native_nominal_resolution": "none" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2017", - "source_id":"RRTMG-LW-4-91" + "release_year": "2017", + "source_id": "RRTMG-LW-4-91" }, - "RRTMG-SW-4-02":{ - "activity_participation":[ + "RRTMG-SW-4-02": { + "activity_participation": [ "RFMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "AER" ], - "label":"RRTMG-SW 4.02", - "label_extended":"RRTM for GCMs v4.02, shortwave", - "license_info":{ - "exceptions_contact":"@aer.com <- aer_rrtmg", - "history":"2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "RRTMG-SW 4.02", + "label_extended": "RRTM for GCMs v4.02, shortwave", + "license_info": { + "exceptions_contact": "@aer.com <- aer_rrtmg", + "history": "2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" + "atmos": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" + "land": { + "description": "none", + "native_nominal_resolution": "none" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2017", - "source_id":"RRTMG-SW-4-02" + "release_year": "2017", + "source_id": "RRTMG-SW-4-02" }, - "RTE-RRTMGP-181204":{ - "activity_participation":[ + "RTE-RRTMGP-181204": { + "activity_participation": [ "RFMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "RTE-RRTMGP-Consortium" ], - "label":"RTE+RRTMGP (2018-12-04 full-resolution)", - "label_extended":"Radiative Transfer for Energetics using RRTM for GCM applications - Parallel (2018-12-04 full-resolution)", - "license_info":{ - "exceptions_contact":"@aer.com <- aer_rrtmgp", - "history":"2019-10-07: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "RTE+RRTMGP (2018-12-04 full-resolution)", + "label_extended": "Radiative Transfer for Energetics using RRTM for GCM applications - Parallel (2018-12-04 full-resolution)", + "license_info": { + "exceptions_contact": "@aer.com <- aer_rrtmgp", + "history": "2019-10-07: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" + "model_component": { + "aerosol": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" + "atmos": { + "description": "none", + "native_nominal_resolution": "none" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" + "land": { + "description": "none", + "native_nominal_resolution": "none" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" + "ocean": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" + "seaIce": { + "description": "none", + "native_nominal_resolution": "none" } }, - "release_year":"2019", - "source_id":"RTE-RRTMGP-181204" + "release_year": "2019", + "source_id": "RTE-RRTMGP-181204" }, - "SAM0-UNICON":{ - "activity_participation":[ + "SAM0-UNICON": { + "activity_participation": [ "CMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "SNU" ], - "label":"SAM0-UNICON", - "label_extended":"SAM0-UNICON (SNU Atmosphere Model version 0 with Unified Convection Scheme)", - "license_info":{ - "exceptions_contact":"@snu.ac.kr <- sungsup", - "history":"2019-03-23: initially published under CC BY-SA 4.0; 2022-10-12: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "SAM0-UNICON", + "label_extended": "SAM0-UNICON (SNU Atmosphere Model version 0 with Unified Convection Scheme)", + "license_info": { + "exceptions_contact": "@snu.ac.kr <- sungsup", + "history": "2019-03-23: initially published under CC BY-SA 4.0; 2022-10-12: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"MAM3", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "MAM3", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"CAM5.3 with UNICON (1deg; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "CAM5.3 with UNICON (1deg; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"CLM4.0", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM4.0", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"POP2 (Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "POP2 (Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4.0", + "native_nominal_resolution": "100 km" } }, - "release_year":"2017", - "source_id":"SAM0-UNICON" + "release_year": "2017", + "source_id": "SAM0-UNICON" }, - "TaiESM1":{ - "activity_participation":[ + "TaiESM1": { + "activity_participation": [ "AerChemMIP", "CFMIP", "CMIP", @@ -7731,177 +7788,177 @@ "RFMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "AS-RCEC" ], - "label":"TaiESM 1.0", - "label_extended":"Taiwan Earth System Model 1.0", - "license_info":{ - "exceptions_contact":"@gate.sinica.edu.tw <- leelupin", - "history":"2019-12-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "TaiESM 1.0", + "label_extended": "Taiwan Earth System Model 1.0", + "license_info": { + "exceptions_contact": "@gate.sinica.edu.tw <- leelupin", + "history": "2019-12-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"SNAP (same grid as atmos)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "SNAP (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"SNAP (same grid as atmos)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "SNAP (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"CLM4.0 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM4.0 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE4", - "native_nominal_resolution":"50 km" + "seaIce": { + "description": "CICE4", + "native_nominal_resolution": "50 km" } }, - "release_year":"2018", - "source_id":"TaiESM1" + "release_year": "2018", + "source_id": "TaiESM1" }, - "TaiESM1-TIMCOM":{ - "activity_participation":[ + "TaiESM1-TIMCOM": { + "activity_participation": [ "CMIP", "OMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NTU" ], - "label":"TaiESM1-TIMCOM", - "label_extended":"Taiwan Earth System Model 1.0 using TIMCOM ocean model", - "license_info":{ - "exceptions_contact":"@ntu.edu.tw <- tsengyh", - "history":"2020-09-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "TaiESM1-TIMCOM", + "label_extended": "Taiwan Earth System Model 1.0 using TIMCOM ocean model", + "license_info": { + "exceptions_contact": "@ntu.edu.tw <- tsengyh", + "history": "2020-09-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"SNAP (same grid as atmos)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "SNAP (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"SNAP (same grid as atmos)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "SNAP (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"CLM4.0 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM4.0 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"TIMCOM (TIMCOMv1.7, primarily 1deg; 360 x 288 longitude/latitude; 45 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "TIMCOM (TIMCOMv1.7, primarily 1deg; 360 x 288 longitude/latitude; 45 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE4", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4", + "native_nominal_resolution": "100 km" } }, - "release_year":"2020", - "source_id":"TaiESM1-TIMCOM" + "release_year": "2020", + "source_id": "TaiESM1-TIMCOM" }, - "TaiESM1-TIMCOM2":{ - "activity_participation":[ + "TaiESM1-TIMCOM2": { + "activity_participation": [ "CMIP", "OMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "NTU" ], - "label":"TaiESM1-TIMCOM2", - "label_extended":"Taiwan Earth System Model 1.0 using TIMCOM ocean model 2.0", - "license_info":{ - "exceptions_contact":"@ntu.edu.tw <- tsengyh", - "history":"2021-12-13: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "TaiESM1-TIMCOM2", + "label_extended": "Taiwan Earth System Model 1.0 using TIMCOM ocean model 2.0", + "license_info": { + "exceptions_contact": "@ntu.edu.tw <- tsengyh", + "history": "2021-12-13: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"SNAP (same grid as atmos)", - "native_nominal_resolution":"100 km" + "model_component": { + "aerosol": { + "description": "SNAP (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "atmos":{ - "description":"TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", - "native_nominal_resolution":"100 km" + "atmos": { + "description": "TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", + "native_nominal_resolution": "100 km" }, - "atmosChem":{ - "description":"SNAP (same grid as atmos)", - "native_nominal_resolution":"100 km" + "atmosChem": { + "description": "SNAP (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "land":{ - "description":"CLM4.0 (same grid as atmos)", - "native_nominal_resolution":"100 km" + "land": { + "description": "CLM4.0 (same grid as atmos)", + "native_nominal_resolution": "100 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"TIMCOM (TIMCOMv2.2, primarily 1deg; 320 x 288 longitude/latitude; 55 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "TIMCOM (TIMCOMv2.2, primarily 1deg; 320 x 288 longitude/latitude; 55 levels; top grid cell 0-10 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE4 (same grid as ocean)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE4 (same grid as ocean)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2021", - "source_id":"TaiESM1-TIMCOM2" + "release_year": "2021", + "source_id": "TaiESM1-TIMCOM2" }, - "UKESM1-0-LL":{ - "activity_participation":[ + "UKESM1-0-LL": { + "activity_participation": [ "AerChemMIP", "C4MIP", "CDRMIP", @@ -7916,190 +7973,190 @@ "ScenarioMIP", "VolMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MOHC", "NERC", "NIMS-KMA", "NIWA" ], - "label":"UKESM1.0-LL", - "label_extended":"UKESM1.0-N96ORCA1", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", - "history":"2019-04-04: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "UKESM1.0-LL", + "label_extended": "UKESM1.0-N96ORCA1", + "license_info": { + "exceptions_contact": "@metoffice.gov.uk <- cmip6.ukesm1", + "history": "2019-04-04: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "UKCA-GLOMAP-mode", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"UKCA-StratTrop", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "UKCA-StratTrop", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"JULES-ES-1.0", - "native_nominal_resolution":"250 km" + "land": { + "description": "JULES-ES-1.0", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"MEDUSA2", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "MEDUSA2", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2018", - "source_id":"UKESM1-0-LL" + "release_year": "2018", + "source_id": "UKESM1-0-LL" }, - "UKESM1-1-LL":{ - "activity_participation":[ + "UKESM1-1-LL": { + "activity_participation": [ "CMIP", "ScenarioMIP" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MOHC", "NERC", "NIMS-KMA", "NIWA" ], - "label":"UKESM1.1-LL", - "label_extended":"UKESM1.1-N96ORCA1", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", - "history":"2022-05-04: initially published under CC BY-SA 4.0; 2022-05-04: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "UKESM1.1-LL", + "label_extended": "UKESM1.1-N96ORCA1", + "license_info": { + "exceptions_contact": "@metoffice.gov.uk <- cmip6.ukesm1", + "history": "2022-05-04: initially published under CC BY-SA 4.0; 2022-05-04: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "UKCA-GLOMAP-mode", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"UKCA-StratTrop", - "native_nominal_resolution":"250 km" + "atmosChem": { + "description": "UKCA-StratTrop", + "native_nominal_resolution": "250 km" }, - "land":{ - "description":"JULES-ES-1.0", - "native_nominal_resolution":"250 km" + "land": { + "description": "JULES-ES-1.0", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" + "landIce": { + "description": "none", + "native_nominal_resolution": "none" }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"MEDUSA2", - "native_nominal_resolution":"100 km" + "ocnBgchem": { + "description": "MEDUSA2", + "native_nominal_resolution": "100 km" }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2021", - "source_id":"UKESM1-1-LL" + "release_year": "2021", + "source_id": "UKESM1-1-LL" }, - "UKESM1-ice-LL":{ - "activity_participation":[ + "UKESM1-ice-LL": { + "activity_participation": [ "ISMIP6" ], - "cohort":[ + "cohort": [ "Published" ], - "institution_id":[ + "institution_id": [ "MOHC", "NERC" ], - "label":"UKESM1.ice-LL", - "label_extended":"UKESM1.ice-N96ORCA1", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", - "history":"2022-02-11: initially published under CC BY-SA 4.0; 2022-02-11: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" + "label": "UKESM1.ice-LL", + "label_extended": "UKESM1.ice-N96ORCA1", + "license_info": { + "exceptions_contact": "@metoffice.gov.uk <- cmip6.ukesm1", + "history": "2022-02-11: initially published under CC BY-SA 4.0; 2022-02-11: relaxed to CC BY 4.0", + "id": "CC BY 4.0", + "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url": "https://creativecommons.org/licenses/by/4.0/" }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" + "model_component": { + "aerosol": { + "description": "UKCA-GLOMAP-mode", + "native_nominal_resolution": "250 km" }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" + "atmos": { + "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution": "250 km" }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" + "atmosChem": { + "description": "none", + "native_nominal_resolution": "none" }, - "land":{ - "description":"JULES-ISMIP6-1.0", - "native_nominal_resolution":"250 km" + "land": { + "description": "JULES-ISMIP6-1.0", + "native_nominal_resolution": "250 km" }, - "landIce":{ - "description":"BISICLES-UKESM-ISMIP6-1.0", - "native_nominal_resolution":"5 km" + "landIce": { + "description": "BISICLES-UKESM-ISMIP6-1.0", + "native_nominal_resolution": "5 km" }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" + "ocean": { + "description": "NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution": "100 km" }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" + "ocnBgchem": { + "description": "none", + "native_nominal_resolution": "none" }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", - "native_nominal_resolution":"100 km" + "seaIce": { + "description": "CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "native_nominal_resolution": "100 km" } }, - "release_year":"2019", - "source_id":"UKESM1-ice-LL" + "release_year": "2019", + "source_id": "UKESM1-ice-LL" } }, - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "institution_id":"PCMDI", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "source_id_CV_modified":"Fri Apr 11 10:41:49 2025 -0700", - "source_id_CV_note":"Revised IPSL-CM6A-ATM-LR-REPROBUS source_id entry", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + "version_metadata": { + "CV_collection_modified": "Fri Apr 18 16:28:35 2025 -0700", + "CV_collection_version": "6.2.58.79", + "author": "Paul J. Durack ", + "institution_id": "PCMDI", + "previous_commit": "1e8961cb140d3246c70cdc24d2cc8404570de5dc", + "source_id_CV_modified": "Fri Apr 11 10:41:49 2025 -0700", + "source_id_CV_note": "Revised IPSL-CM6A-ATM-LR-REPROBUS source_id entry", + "specs_doc": "v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" } -} +} \ No newline at end of file From 24fdc9079d0f6c90fa4d547275486606a7d81097 Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Thu, 25 Sep 2025 16:55:51 +1000 Subject: [PATCH 06/18] update to solve grid issue --- src/access_moppy/ocean_supergrid.py | 108 +++++++++++----------------- 1 file changed, 41 insertions(+), 67 deletions(-) diff --git a/src/access_moppy/ocean_supergrid.py b/src/access_moppy/ocean_supergrid.py index 81c130f..f02cc07 100644 --- a/src/access_moppy/ocean_supergrid.py +++ b/src/access_moppy/ocean_supergrid.py @@ -40,6 +40,8 @@ def get_supergrid_path(self, nominal_resolution: str) -> str: # Check if running on Gadi and file exists if os.path.exists(gadi_supergrid_path): supergrid_path = gadi_supergrid_path + elif nominal_resolution == "10 km": + supergrid_path = "/g/data/vk83/experiments/inputs/access-om2/ocean/grids/mosaic/global.01deg/2020.05.30/ocean_hgrid.nc" else: # Not on Gadi or file not available, download from Google Drive # Mapping nominal resolution to Google Drive file IDs @@ -104,33 +106,37 @@ def load_supergrid(self, supergrid_file: str): def extract_grid(self, grid_type: str): if grid_type["x"] == "T": x = self.xt - corners_x = self.xq + x_offset = 0 elif grid_type["x"] == "U": x = self.xu - corners_x = self.supergrid["x_full"] + x_offset = 0 elif grid_type["x"] == "V": x = self.xv - corners_x = self.supergrid["x_full"] + x_offset = 1 elif grid_type["x"] == "Q": x = self.xq - corners_x = self.xq + x_offset = 1 else: raise ValueError(f"Unsupported grid_type: x {grid_type['x']}") - + if grid_type["y"] == "T": y = self.yt - corners_y = self.yq + y_offset = 0 elif grid_type["y"] == "U": y = self.yu - corners_y = self.supergrid["y_full"] + y_offset = 1 elif grid_type["y"] == "V": y = self.yv - corners_y = self.supergrid["y_full"] + y_offset = 0 elif grid_type["y"] == "Q": y = self.yq - corners_y = self.yq + y_offset = 1 else: raise ValueError(f"Unsupported grid_type: y {grid_type['y']}") + + corners_x = self.supergrid["x_full"][y_offset::2, x_offset::2] + corners_y = self.supergrid["y_full"][y_offset::2, x_offset::2] + corners_x = (corners_x + 360) % 360 @@ -152,68 +158,36 @@ def extract_grid(self, grid_type: str): lon = xr.DataArray((x + 360) % 360, dims=("j", "i"), name="longitude") # Calculate corner coordinates {"U", "V"} grids have half the number of corners in that direction - if grid_type["y"] in {"U", "V"}: - lat_bnds = ( - xr.concat( - [ - corners_x[:-1:2, :-1:2].expand_dims(vertices=[0]), - corners_x[:-1:2, 1:-1:2].expand_dims(vertices=[1]), - corners_x[1::2, 1:-1:2].expand_dims(vertices=[2]), - corners_x[1::2, :-1:2].expand_dims(vertices=[3]), - ], - dim="vertices", - ) - .rename({"j_full": "j", "i_full": "i"}) - .transpose("j", "i", "vertices") - .rename("vertices_latitude") - ) - else: - lat_bnds = ( - xr.concat( - [ - corners_y[:-1, :-1].expand_dims(vertices=[0]), - corners_y[:-1, 1:].expand_dims(vertices=[1]), - corners_y[1:, 1:].expand_dims(vertices=[2]), - corners_y[1:, :-1].expand_dims(vertices=[3]), - ], - dim="vertices", - ) - .rename({"j_full": "j", "i_full": "i"}) - .transpose("j", "i", "vertices") - .rename("vertices_latitude") + lat_bnds = ( + xr.concat( + [ + corners_y[:-1, :-1].expand_dims(vertices=[0]), + corners_y[:-1, 1:].expand_dims(vertices=[1]), + corners_y[1:, 1:].expand_dims(vertices=[2]), + corners_y[1:, :-1].expand_dims(vertices=[3]), + ], + dim="vertices", ) + .rename({"j_full": "j", "i_full": "i"}) + .transpose("j", "i", "vertices") + .rename("vertices_latitude") + ) # Calculate corner coordinates {"U", "V"} grids have half the number of corners in that direction - if grid_type["x"] in {"U", "V"}: - lon_bnds = ( - xr.concat( - [ - corners_x[:-1:2, :-1:2].expand_dims(vertices=[0]), - corners_x[:-1:2, 1:-1:2].expand_dims(vertices=[1]), - corners_x[1::2, 1:-1:2].expand_dims(vertices=[2]), - corners_x[1::2, :-1:2].expand_dims(vertices=[3]), - ], - dim="vertices", - ) - .rename({"j_full": "j", "i_full": "i"}) - .transpose("j", "i", "vertices") - .rename("vertices_longitude") - ) - else: - lon_bnds = ( - xr.concat( - [ - corners_x[:-1, :-1].expand_dims(vertices=[0]), - corners_x[:-1, 1:].expand_dims(vertices=[1]), - corners_x[1:, 1:].expand_dims(vertices=[2]), - corners_x[1:, :-1].expand_dims(vertices=[3]), - ], - dim="vertices", - ) - .rename({"j_full": "j", "i_full": "i"}) - .transpose("j", "i", "vertices") - .rename("vertices_longitude") + lon_bnds = ( + xr.concat( + [ + corners_x[:-1, :-1].expand_dims(vertices=[0]), + corners_x[:-1, 1:].expand_dims(vertices=[1]), + corners_x[1:, 1:].expand_dims(vertices=[2]), + corners_x[1:, :-1].expand_dims(vertices=[3]), + ], + dim="vertices", ) + .rename({"j_full": "j", "i_full": "i"}) + .transpose("j", "i", "vertices") + .rename("vertices_longitude") + ) return { "i": i_coord, From fcad73329dc6d9058cf56f4cf4dfc71c106e154b Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Thu, 2 Oct 2025 14:27:45 +1000 Subject: [PATCH 07/18] grid update --- src/access_moppy/ocean_supergrid.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/access_moppy/ocean_supergrid.py b/src/access_moppy/ocean_supergrid.py index f02cc07..501bec6 100644 --- a/src/access_moppy/ocean_supergrid.py +++ b/src/access_moppy/ocean_supergrid.py @@ -134,10 +134,21 @@ def extract_grid(self, grid_type: str): else: raise ValueError(f"Unsupported grid_type: y {grid_type['y']}") - corners_x = self.supergrid["x_full"][y_offset::2, x_offset::2] - corners_y = self.supergrid["y_full"][y_offset::2, x_offset::2] + if grid_type["x"] == "T": + corners_x = self.supergrid["x_full"][0::2, 0::2] + else: + xt_ext = xr.concat([self.xt, self.xt.isel(j_full=-1, i_full=slice(None, None, -1))], dim='j_full') + corners_x = xr.concat([xt_ext, xt_ext.isel(i_full=0)], dim='i_full') + if grid_type["y"] == "T": + corners_y = self.supergrid["y_full"][0::2, 0::2] + else: + yt_ext = xr.concat([self.yt, self.yt.isel(j_full=-1, i_full=slice(None, None, -1))], dim='j_full') + corners_y = xr.concat([yt_ext, yt_ext.isel(i_full=0)], dim='i_full') + + # print("corners_x",corners_x) + # print("corners_y",corners_y) corners_x = (corners_x + 360) % 360 i_coord = xr.DataArray( From 428c7a331134666831f43aa99e666f7425e87f48 Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Thu, 2 Oct 2025 16:01:37 +1000 Subject: [PATCH 08/18] update grid mechanism for OM2 --- src/access_moppy/ocean_supergrid.py | 44 ++++++++++++++--------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/src/access_moppy/ocean_supergrid.py b/src/access_moppy/ocean_supergrid.py index 501bec6..f357587 100644 --- a/src/access_moppy/ocean_supergrid.py +++ b/src/access_moppy/ocean_supergrid.py @@ -98,57 +98,57 @@ def load_supergrid(self, supergrid_file: str): self.yt = self.supergrid["y_full"][1::2, 1::2] self.xu = self.supergrid["x_full"][1::2, :-1:2] self.yu = self.supergrid["y_full"][1::2, :-1:2] - self.xv = self.supergrid["x_full"][::2, 1::2] - self.yv = self.supergrid["y_full"][::2, 1::2] + self.xv = self.supergrid["x_full"][:-1:2, 1::2] + self.yv = self.supergrid["y_full"][:-1:2, 1::2] self.xq = self.supergrid["x_full"][::2, ::2] self.yq = self.supergrid["y_full"][::2, ::2] def extract_grid(self, grid_type: str): + # Extract grid coordinates and bounds based on the specified grid type if grid_type["x"] == "T": x = self.xt - x_offset = 0 elif grid_type["x"] == "U": x = self.xu - x_offset = 0 elif grid_type["x"] == "V": x = self.xv - x_offset = 1 elif grid_type["x"] == "Q": x = self.xq - x_offset = 1 else: raise ValueError(f"Unsupported grid_type: x {grid_type['x']}") - + + # Extract grid coordinates and bounds based on the specified grid type if grid_type["y"] == "T": y = self.yt - y_offset = 0 elif grid_type["y"] == "U": y = self.yu - y_offset = 1 elif grid_type["y"] == "V": y = self.yv - y_offset = 0 elif grid_type["y"] == "Q": y = self.yq - y_offset = 1 else: raise ValueError(f"Unsupported grid_type: y {grid_type['y']}") - - if grid_type["x"] == "T": + + # Calculate corner coordinates + if grid_type["x"] == "T": corners_x = self.supergrid["x_full"][0::2, 0::2] else: - xt_ext = xr.concat([self.xt, self.xt.isel(j_full=-1, i_full=slice(None, None, -1))], dim='j_full') - corners_x = xr.concat([xt_ext, xt_ext.isel(i_full=0)], dim='i_full') + # Extract corner coordinates for U grids + xt_ext = xr.concat( + [self.xt, self.xt.isel(j_full=-1, i_full=slice(None, None, -1))], + dim="j_full", + ) + corners_x = xr.concat([xt_ext, xt_ext.isel(i_full=0)], dim="i_full") - if grid_type["y"] == "T": + if grid_type["y"] == "T": corners_y = self.supergrid["y_full"][0::2, 0::2] else: - yt_ext = xr.concat([self.yt, self.yt.isel(j_full=-1, i_full=slice(None, None, -1))], dim='j_full') - corners_y = xr.concat([yt_ext, yt_ext.isel(i_full=0)], dim='i_full') - + # Extract corner coordinates for U grids + yt_ext = xr.concat( + [self.yt, self.yt.isel(j_full=-1, i_full=slice(None, None, -1))], + dim="j_full", + ) + corners_y = xr.concat([yt_ext, yt_ext.isel(i_full=0)], dim="i_full") - # print("corners_x",corners_x) - # print("corners_y",corners_y) corners_x = (corners_x + 360) % 360 i_coord = xr.DataArray( @@ -168,7 +168,6 @@ def extract_grid(self, grid_type: str): lat = xr.DataArray(y, dims=("j", "i"), name="latitude") lon = xr.DataArray((x + 360) % 360, dims=("j", "i"), name="longitude") - # Calculate corner coordinates {"U", "V"} grids have half the number of corners in that direction lat_bnds = ( xr.concat( [ @@ -184,7 +183,6 @@ def extract_grid(self, grid_type: str): .rename("vertices_latitude") ) - # Calculate corner coordinates {"U", "V"} grids have half the number of corners in that direction lon_bnds = ( xr.concat( [ From 41e3d4ca5e618ac3659e2e70906fd6c2e053ca66 Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Thu, 2 Oct 2025 16:13:04 +1000 Subject: [PATCH 09/18] format --- src/access_moppy/base.py | 77 +++++++++++++++++++++------------------ src/access_moppy/ocean.py | 1 + 2 files changed, 43 insertions(+), 35 deletions(-) diff --git a/src/access_moppy/base.py b/src/access_moppy/base.py index 3c940ff..045e4b9 100644 --- a/src/access_moppy/base.py +++ b/src/access_moppy/base.py @@ -241,12 +241,13 @@ def _update_latest_symlink(self, versioned_path: Path): def write(self): import gc + import psutil - + attrs = self.ds.attrs required_keys = [ "variable_id", - "table_id", + "table_id", "source_id", "experiment_id", "variant_label", @@ -284,128 +285,134 @@ def write(self): # Set global attributes for k, v in attrs.items(): dst.setncattr(k, v) - + # Create dimensions for dim, size in self.ds.sizes.items(): if dim == "time": dst.createDimension(dim, None) # Unlimited dimension else: dst.createDimension(dim, size) - + # Create variables and write data for var in self.ds.variables: vdat = self.ds[var] fill = None if var.endswith("_bnds") else vdat.attrs.get("_FillValue") - + # Create variable v = ( dst.createVariable(var, str(vdat.dtype), vdat.dims, fill_value=fill) if fill else dst.createVariable(var, str(vdat.dtype), vdat.dims) ) - + # Set variable attributes (except _FillValue which is handled above) if not var.endswith("_bnds"): for a, val in vdat.attrs.items(): if a != "_FillValue": v.setncattr(a, val) - + # Write data with memory management print(f"Writing variable: {var} (shape: {vdat.shape})") - + try: # Check data size and available memory data_size_gb = vdat.nbytes / 1e9 available_mem_gb = psutil.virtual_memory().available / 1e9 - + print(f" Data size: {data_size_gb:.2f} GB") print(f" Available memory: {available_mem_gb:.2f} GB") - + # If data is small enough or not chunked, write directly - if data_size_gb < available_mem_gb * 0.5 and (not hasattr(vdat, 'chunks') or vdat.chunks is None): + if data_size_gb < available_mem_gb * 0.5 and ( + not hasattr(vdat, "chunks") or vdat.chunks is None + ): print(f" Writing {var} directly...") v[:] = vdat.values - + # For large or chunked data, write in time slices elif "time" in vdat.dims: print(f" Writing {var} in time slices...") time_axis = vdat.dims.index("time") n_times = vdat.shape[time_axis] - + # Write one time step at a time for t in range(n_times): if t % 10 == 0: # Progress indicator print(f" Time step {t+1}/{n_times}") - + # Create slice for time dimension slices = [slice(None)] * len(vdat.dims) slices[time_axis] = t - + # Get data for this time step time_data = vdat[tuple(slices)] - + # Compute if it's a dask array - if hasattr(time_data, 'compute'): + if hasattr(time_data, "compute"): time_data = time_data.compute() - + # Write to netCDF v_slices = [slice(None)] * len(v.dimensions) v_slices[time_axis] = t v[tuple(v_slices)] = time_data.values - + # Garbage collect every 5 time steps if t % 5 == 4: gc.collect() - + # For non-time variables or small spatial data else: print(f" Writing {var} with chunking...") - if hasattr(vdat, 'compute'): + if hasattr(vdat, "compute"): # For dask arrays, compute in chunks chunk_data = vdat.compute() v[:] = chunk_data.values else: v[:] = vdat.values - + except MemoryError as e: - print(f" Memory error writing {var}, trying alternative approach...") - + print( + f" Memory error writing {var}, trying alternative approach..." + ) + # Fallback: write in smaller spatial chunks if len(vdat.shape) >= 3: # Has spatial dimensions # Write in blocks if "time" in vdat.dims: - time_axis = vdat.dims.index("time") + time_axis = vdat.dims.index("time") for t in range(vdat.shape[time_axis]): - print(f" Fallback: Time step {t+1}/{vdat.shape[time_axis]}") + print( + f" Fallback: Time step {t+1}/{vdat.shape[time_axis]}" + ) slices = [slice(None)] * len(vdat.dims) slices[time_axis] = t - + time_slice = vdat[tuple(slices)] - if hasattr(time_slice, 'compute'): + if hasattr(time_slice, "compute"): time_slice = time_slice.compute() - - v_slices = [slice(None)] * len(v.dimensions) + + v_slices = [slice(None)] * len(v.dimensions) v_slices[time_axis] = t v[tuple(v_slices)] = time_slice.values - + gc.collect() else: # For non-time variables, just try direct assignment - if hasattr(vdat, 'compute'): + if hasattr(vdat, "compute"): vdat = vdat.compute() v[:] = vdat.values else: raise e - + except Exception as e: print(f"Error writing variable {var}: {e}") raise e - + print(f" Finished writing {var}") gc.collect() print(f"CMORised output written to {path}") - + # Final garbage collection gc.collect() diff --git a/src/access_moppy/ocean.py b/src/access_moppy/ocean.py index bb023f5..1d25c89 100644 --- a/src/access_moppy/ocean.py +++ b/src/access_moppy/ocean.py @@ -135,6 +135,7 @@ def update_attributes(self): self.ds["latitude"] = self.grid_info["latitude"] self.ds["longitude"] = self.grid_info["longitude"] + print("self.grid_info[vertices_latitude]:", self.grid_info["vertices_latitude"]) self.ds["vertices_latitude"] = self.grid_info["vertices_latitude"] self.ds["vertices_longitude"] = self.grid_info["vertices_longitude"] From 1f6caae37b8ef03ebb6a4bc1adcfc5860be75434 Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Thu, 2 Oct 2025 16:18:30 +1000 Subject: [PATCH 10/18] format --- .../CMIP6_CVs/CMIP6_source_id.json | 57 ------------------- 1 file changed, 57 deletions(-) diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json index f18aadc..05f5d9d 100644 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json +++ b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json @@ -299,63 +299,6 @@ "release_year": "2020", "source_id": "ACCESS-OM2-025" }, - "ACCESS-OM2-01": { - "activity_participation": [ - "OMIP" - ], - "cohort": [ - "not-Published" - ], - "institution_id": [ - "CSIRO-COSIMA" - ], - "label": "ACCESS-OM2-01", - "label_extended": "Australian Community Climate and Earth System Simulator Ocean Model Version 2 0.1 degree", - "license_info": { - "exceptions_contact": "@csiro.au <- access_csiro", - "history": "2021-06-17: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" - }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" - }, - "atmos": { - "description": "none", - "native_nominal_resolution": "none" - }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" - }, - "land": { - "description": "none", - "native_nominal_resolution": "none" - }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" - }, - "ocean": { - "description": "ACCESS-OM2 (MOM5, tripolar primarily 1/10 deg; 3600 x 2700 longitude/latitude; 75 levels; top grid cell 0-2.3 m)", - "native_nominal_resolution": "10 km" - }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" - }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" - } - }, - "release_year": "", - "source_id": "" - }, "ARTS-2-3": { "activity_participation": [ "RFMIP" From 2169829d8d0db4befc8d700812838f5aac9cab15 Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Thu, 2 Oct 2025 16:27:43 +1000 Subject: [PATCH 11/18] end of file fixer --- .../cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json index 05f5d9d..d2d489c 100644 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json +++ b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json @@ -8102,4 +8102,4 @@ "source_id_CV_note": "Revised IPSL-CM6A-ATM-LR-REPROBUS source_id entry", "specs_doc": "v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" } -} \ No newline at end of file +} From 099bf32f710830b46ce7b867eeaafcce93a5534f Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Thu, 2 Oct 2025 17:15:46 +1000 Subject: [PATCH 12/18] organise --- src/access_moppy/base.py | 179 +-------------------------------------- 1 file changed, 1 insertion(+), 178 deletions(-) diff --git a/src/access_moppy/base.py b/src/access_moppy/base.py index 045e4b9..e3f63ab 100644 --- a/src/access_moppy/base.py +++ b/src/access_moppy/base.py @@ -177,73 +177,7 @@ def _update_latest_symlink(self, versioned_path: Path): except Exception as e: print(f"Warning: Failed to update latest symlink at {latest_link}: {e}") - # def write(self): - # attrs = self.ds.attrs - # required_keys = [ - # "variable_id", - # "table_id", - # "source_id", - # "experiment_id", - # "variant_label", - # "grid_label", - # ] - # missing = [k for k in required_keys if k not in attrs] - # if missing: - # raise ValueError( - # f"Missing required CMIP6 global attributes for filename: {missing}" - # ) - - # time_var = self.ds[self.cmor_name].coords["time"] - # units = time_var.attrs["units"] - # calendar = time_var.attrs.get("calendar", "standard").lower() - # times = num2date(time_var.values[[0, -1]], units=units, calendar=calendar) - # start, end = [f"{t.year:04d}{t.month:02d}" for t in times] - # time_range = f"{start}-{end}" - - # filename = ( - # f"{attrs['variable_id']}_{attrs['table_id']}_{attrs['source_id']}_" - # f"{attrs['experiment_id']}_{attrs['variant_label']}_" - # f"{attrs['grid_label']}_{time_range}.nc" - # ) - - # if self.drs_root: - # drs_path = self._build_drs_path(attrs) - # drs_path.mkdir(parents=True, exist_ok=True) - # path = drs_path / filename - # self._update_latest_symlink(drs_path) - # else: - # path = Path(self.output_path) / filename - # path.parent.mkdir(parents=True, exist_ok=True) - - # with nc.Dataset(path, "w", format="NETCDF4") as dst: - # for k, v in attrs.items(): - # dst.setncattr(k, v) - # for dim, size in self.ds.sizes.items(): - # if dim == "time": - # dst.createDimension(dim, None) # Unlimited dimension - # else: - # dst.createDimension(dim, size) - # for var in self.ds.variables: - # vdat = self.ds[var] - # fill = None if var.endswith("_bnds") else vdat.attrs.get("_FillValue") - # v = ( - # dst.createVariable(var, str(vdat.dtype), vdat.dims, fill_value=fill) - # if fill - # else dst.createVariable(var, str(vdat.dtype), vdat.dims) - # ) - # if not var.endswith("_bnds"): - # for a, val in vdat.attrs.items(): - # if a != "_FillValue": - # v.setncattr(a, val) - # v[:] = vdat.values - - # print(f"CMORised output written to {path}") - def write(self): - import gc - - import psutil - attrs = self.ds.attrs required_keys = [ "variable_id", @@ -282,140 +216,29 @@ def write(self): path.parent.mkdir(parents=True, exist_ok=True) with nc.Dataset(path, "w", format="NETCDF4") as dst: - # Set global attributes for k, v in attrs.items(): dst.setncattr(k, v) - - # Create dimensions for dim, size in self.ds.sizes.items(): if dim == "time": dst.createDimension(dim, None) # Unlimited dimension else: dst.createDimension(dim, size) - - # Create variables and write data for var in self.ds.variables: vdat = self.ds[var] fill = None if var.endswith("_bnds") else vdat.attrs.get("_FillValue") - - # Create variable v = ( dst.createVariable(var, str(vdat.dtype), vdat.dims, fill_value=fill) if fill else dst.createVariable(var, str(vdat.dtype), vdat.dims) ) - - # Set variable attributes (except _FillValue which is handled above) if not var.endswith("_bnds"): for a, val in vdat.attrs.items(): if a != "_FillValue": v.setncattr(a, val) - - # Write data with memory management - print(f"Writing variable: {var} (shape: {vdat.shape})") - - try: - # Check data size and available memory - data_size_gb = vdat.nbytes / 1e9 - available_mem_gb = psutil.virtual_memory().available / 1e9 - - print(f" Data size: {data_size_gb:.2f} GB") - print(f" Available memory: {available_mem_gb:.2f} GB") - - # If data is small enough or not chunked, write directly - if data_size_gb < available_mem_gb * 0.5 and ( - not hasattr(vdat, "chunks") or vdat.chunks is None - ): - print(f" Writing {var} directly...") - v[:] = vdat.values - - # For large or chunked data, write in time slices - elif "time" in vdat.dims: - print(f" Writing {var} in time slices...") - time_axis = vdat.dims.index("time") - n_times = vdat.shape[time_axis] - - # Write one time step at a time - for t in range(n_times): - if t % 10 == 0: # Progress indicator - print(f" Time step {t+1}/{n_times}") - - # Create slice for time dimension - slices = [slice(None)] * len(vdat.dims) - slices[time_axis] = t - - # Get data for this time step - time_data = vdat[tuple(slices)] - - # Compute if it's a dask array - if hasattr(time_data, "compute"): - time_data = time_data.compute() - - # Write to netCDF - v_slices = [slice(None)] * len(v.dimensions) - v_slices[time_axis] = t - v[tuple(v_slices)] = time_data.values - - # Garbage collect every 5 time steps - if t % 5 == 4: - gc.collect() - - # For non-time variables or small spatial data - else: - print(f" Writing {var} with chunking...") - if hasattr(vdat, "compute"): - # For dask arrays, compute in chunks - chunk_data = vdat.compute() - v[:] = chunk_data.values - else: - v[:] = vdat.values - - except MemoryError as e: - print( - f" Memory error writing {var}, trying alternative approach..." - ) - - # Fallback: write in smaller spatial chunks - if len(vdat.shape) >= 3: # Has spatial dimensions - # Write in blocks - if "time" in vdat.dims: - time_axis = vdat.dims.index("time") - for t in range(vdat.shape[time_axis]): - print( - f" Fallback: Time step {t+1}/{vdat.shape[time_axis]}" - ) - slices = [slice(None)] * len(vdat.dims) - slices[time_axis] = t - - time_slice = vdat[tuple(slices)] - if hasattr(time_slice, "compute"): - time_slice = time_slice.compute() - - v_slices = [slice(None)] * len(v.dimensions) - v_slices[time_axis] = t - v[tuple(v_slices)] = time_slice.values - - gc.collect() - else: - # For non-time variables, just try direct assignment - if hasattr(vdat, "compute"): - vdat = vdat.compute() - v[:] = vdat.values - else: - raise e - - except Exception as e: - print(f"Error writing variable {var}: {e}") - raise e - - print(f" Finished writing {var}") - gc.collect() + v[:] = vdat.values print(f"CMORised output written to {path}") - # Final garbage collection - gc.collect() - def run(self, write_output: bool = False): self.select_and_process_variables() self.drop_intermediates() From f473c990ac5a3559361716ecf4d1df5032156618 Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Fri, 10 Oct 2025 10:50:08 +1100 Subject: [PATCH 13/18] update for grid --- src/access_moppy/driver.py | 29 +++-- src/access_moppy/ocean.py | 177 +++++++++++++++++++++++++--- src/access_moppy/ocean_supergrid.py | 150 ++++++++++++++++++++++- 3 files changed, 325 insertions(+), 31 deletions(-) diff --git a/src/access_moppy/driver.py b/src/access_moppy/driver.py index d94a47e..7316008 100644 --- a/src/access_moppy/driver.py +++ b/src/access_moppy/driver.py @@ -4,11 +4,10 @@ from access_moppy.atmosphere import CMIP6_Atmosphere_CMORiser from access_moppy.defaults import _default_parent_info -from access_moppy.ocean import CMIP6_Ocean_CMORiser +from access_moppy.ocean import CMIP6_Ocean_CMORiser_OM2, CMIP6_Ocean_CMORiser_OM3 from access_moppy.utilities import load_model_mappings from access_moppy.vocabulary_processors import CMIP6Vocabulary - class ACCESS_ESM_CMORiser: """ Coordinates the CMORisation process using CMIP6Vocabulary and CMORiser. @@ -86,14 +85,24 @@ def __init__( drs_root=drs_root if drs_root else None, ) elif table in ("Oyr", "Oday", "Omon", "SImon"): - self.cmoriser = CMIP6_Ocean_CMORiser( - input_paths=self.input_paths, - output_path=str(self.output_path), - cmor_name=cmor_name, - cmip6_vocab=self.vocab, - variable_mapping=self.variable_mapping, - drs_root=drs_root if drs_root else None, - ) + if self.source_id == "ACCESS-OM3": + self.cmoriser = CMIP6_Ocean_CMORiser_OM3( + input_paths=self.input_paths, + output_path=str(self.output_path), + cmor_name=cmor_name, + cmip6_vocab=self.vocab, + variable_mapping=self.variable_mapping, + drs_root=drs_root if drs_root else None, + ) + else: + self.cmoriser = CMIP6_Ocean_CMORiser_OM2( + input_paths=self.input_paths, + output_path=str(self.output_path), + cmor_name=cmor_name, + cmip6_vocab=self.vocab, + variable_mapping=self.variable_mapping, + drs_root=drs_root if drs_root else None, + ) def __getitem__(self, key): return self.cmoriser.ds[key] diff --git a/src/access_moppy/ocean.py b/src/access_moppy/ocean.py index 1d25c89..5fa922e 100644 --- a/src/access_moppy/ocean.py +++ b/src/access_moppy/ocean.py @@ -5,7 +5,7 @@ from access_moppy.base import CMIP6_CMORiser from access_moppy.derivations import custom_functions, evaluate_expression -from access_moppy.ocean_supergrid import Supergrid +from access_moppy.ocean_supergrid import Supergrid_cgrid, Supergrid_bgrid from access_moppy.vocabulary_processors import CMIP6Vocabulary @@ -33,17 +33,33 @@ def __init__( ) nominal_resolution = cmip6_vocab._get_nominal_resolution() - self.supergrid = Supergrid(nominal_resolution) + self.supergrid = None # To be defined in subclasses self.grid_info = None self.grid_type = None + + def _get_coord_sets(self): + """A abstract method to get the coordinate sets for the grid type.""" + raise NotImplementedError( + "Subclasses must implement _get_coord_sets." + ) def infer_grid_type(self): - coord_sets = { - "T": {"xt_ocean", "yt_ocean"}, - "U": {"xu_ocean", "yu_ocean"}, - "V": {"xv_ocean", "yv_ocean"}, - "Q": {"xq_ocean", "yq_ocean"}, - } + # if self.vocab.source_id == "ACCESS-OM3": + # coord_sets = { + # "T": {"xh", "yh"}, + # "U": {"xu", "yu"}, + # "V": {"xv", "yv"}, + # "Q": {"xq", "yq"}, + # } + # else: + # coord_sets = { + # "T": {"xt_ocean", "yt_ocean"}, + # "U": {"xu_ocean", "yu_ocean"}, + # "V": {"xv_ocean", "yv_ocean"}, + # "Q": {"xq_ocean", "yq_ocean"}, + # } + + coord_sets = self._get_coord_sets() present_coords = set(self.ds.coords) # Find which grid type matches the present coordinates # handle "x" and "y" separately to allow for mixed grids @@ -62,6 +78,12 @@ def infer_grid_type(self): return grid_dict else: raise ValueError("Could not infer grid type from dataset coordinates.") + + def _get_dim_rename(self): + """A abstract method to get the dimension renaming mapping for the grid type.""" + raise NotImplementedError( + "Subclasses must implement _get_dim_rename." + ) def select_and_process_variables(self): input_vars = self.mapping[self.cmor_name]["model_variables"] @@ -80,17 +102,28 @@ def select_and_process_variables(self): else: raise ValueError(f"Unsupported calculation type: {calc['type']}") - dim_rename = { - "xt_ocean": "i", - "yt_ocean": "j", - "xu_ocean": "i", - "yu_ocean": "j", - "xq_ocean": "i", - "yq_ocean": "j", - "xv_ocean": "i", - "yv_ocean": "j", - "st_ocean": "lev", # depth level - } + dim_rename = self._get_dim_rename() + + # if self.vocab.source_id == "ACCESS-OM3": + # dim_rename = { + # "xh": "i", + # "yh": "j", + # "xq": "i", + # "yq": "j", + # "zl": "lev", # depth level + # } + # else: + # dim_rename = { + # "xt_ocean": "i", + # "yt_ocean": "j", + # "xu_ocean": "i", + # "yu_ocean": "j", + # "xq_ocean": "i", + # "yq_ocean": "j", + # "xv_ocean": "i", + # "yv_ocean": "j", + # "st_ocean": "lev", # depth level + # } dims_to_rename = { k: v for k, v in dim_rename.items() if k in self.ds[self.cmor_name].dims } @@ -183,3 +216,109 @@ def update_attributes(self): # Check calendar and units self._check_calendar("time") + + +class CMIP6_Ocean_CMORiser_OM2(CMIP6_Ocean_CMORiser): + + def __init__( + self, + input_paths: Union[str, List[str]], + output_path: str, + cmor_name: str, + cmip6_vocab: CMIP6Vocabulary, + variable_mapping: Dict[str, Any], + drs_root: Optional[Path] = None, + ): + super().__init__( + input_paths=input_paths, + output_path=output_path, + cmor_name=cmor_name, + cmip6_vocab=cmip6_vocab, + variable_mapping=variable_mapping, + drs_root=drs_root, + ) + + nominal_resolution = cmip6_vocab._get_nominal_resolution() + # OM2 uses B-grid + self.supergrid = Supergrid_bgrid(nominal_resolution) + self.grid_info = None + self.grid_type = None + + def _get_coord_sets(self): + if self.vocab.source_id == "ACCESS-OM2": + return { + "T": {"xt_ocean", "yt_ocean"}, + "U": {"xu_ocean", "yu_ocean"}, + "V": {"xv_ocean", "yv_ocean"}, + "Q": {"xq_ocean", "yq_ocean"}, + } + else: + raise ValueError(f"Unsupported source_id: {self.vocab.source_id}") + + def _get_dim_rename(self): + if self.vocab.source_id == "ACCESS-OM2": + return { + "xt_ocean": "i", + "yt_ocean": "j", + "xu_ocean": "i", + "yu_ocean": "j", + "xq_ocean": "i", + "yq_ocean": "j", + "xv_ocean": "i", + "yv_ocean": "j", + "st_ocean": "lev", # depth level + } + else: + raise ValueError(f"Unsupported source_id: {self.vocab.source_id}") + + +class CMIP6_Ocean_CMORiser_OM3(CMIP6_Ocean_CMORiser): + """ + CMORiser subclass for ocean variables on the ACCESS-OM3 model using C-grid supergrid coordinates. + """ + def __init__( + self, + input_paths: Union[str, List[str]], + output_path: str, + cmor_name: str, + cmip6_vocab: CMIP6Vocabulary, + variable_mapping: Dict[str, Any], + drs_root: Optional[Path] = None, + ): + super().__init__( + input_paths=input_paths, + output_path=output_path, + cmor_name=cmor_name, + cmip6_vocab=cmip6_vocab, + variable_mapping=variable_mapping, + drs_root=drs_root, + ) + + nominal_resolution = cmip6_vocab._get_nominal_resolution() + # OM3 uses C-grid + self.supergrid = Supergrid_cgrid(nominal_resolution) + self.grid_info = None + self.grid_type = None + + def _get_coord_sets(self): + if self.vocab.source_id == "ACCESS-OM3": + return { + "T": {"xh", "yh"}, + "U": {"xu", "yu"}, + "V": {"xv", "yv"}, + "Q": {"xq", "yq"}, + } + else: + raise ValueError(f"Unsupported source_id: {self.vocab.source_id}") + + def _get_dim_rename(self): + if self.vocab.source_id == "ACCESS-OM3": + return { + "xh": "i", + "yh": "j", + "xq": "i", + "yq": "j", + "zl": "lev", # depth level + } + else: + raise ValueError(f"Unsupported source_id: {self.vocab.source_id}") diff --git a/src/access_moppy/ocean_supergrid.py b/src/access_moppy/ocean_supergrid.py index f357587..5f8fb43 100644 --- a/src/access_moppy/ocean_supergrid.py +++ b/src/access_moppy/ocean_supergrid.py @@ -85,6 +85,23 @@ def download_from_gdrive(file_id, dest_path): ) return supergrid_path + def load_supergrid(self, supergrid_file: str): + """Load the supergrid dataset from the specified file.""" + raise NotImplementedError( + "Subclasses must implement load_supergrid." + ) + + def extract_grid(self, grid_type: str): + raise NotImplementedError( + "Subclasses must implement extract_grid." + ) + + +class Supergrid_cgrid(Supergrid): + def __init__(self, nominal_resolution: str): + """Initialize the Supergrid_cgrid class with a specified nominal resolution.""" + super().__init__(nominal_resolution) + def load_supergrid(self, supergrid_file: str): """Load the supergrid dataset from the specified file.""" if not supergrid_file: @@ -112,7 +129,7 @@ def extract_grid(self, grid_type: str): elif grid_type["x"] == "V": x = self.xv elif grid_type["x"] == "Q": - x = self.xq + x = self.xq[1::, 1::] else: raise ValueError(f"Unsupported grid_type: x {grid_type['x']}") @@ -124,7 +141,7 @@ def extract_grid(self, grid_type: str): elif grid_type["y"] == "V": y = self.yv elif grid_type["y"] == "Q": - y = self.yq + y = self.yq[1::, 1::] else: raise ValueError(f"Unsupported grid_type: y {grid_type['y']}") @@ -207,3 +224,132 @@ def extract_grid(self, grid_type: str): "vertices_latitude": lat_bnds, "vertices_longitude": lon_bnds, } + + +class Supergrid_bgrid(Supergrid): + def __init__(self, nominal_resolution: str): + """Initialize the Supergrid_cgrid class with a specified nominal resolution.""" + super().__init__(nominal_resolution) + + def load_supergrid(self, supergrid_file: str): + """Load the supergrid dataset from the specified file.""" + if not supergrid_file: + raise ValueError("supergrid_file must be provided") + + self.supergrid = xr.open_dataset(supergrid_file).rename_dims( + {"nxp": "i_full", "nyp": "j_full"} + ) + self.supergrid = self.supergrid.rename_vars({"x": "x_full", "y": "y_full"}) + self.xt = self.supergrid["x_full"][1::2, 1::2] + self.yt = self.supergrid["y_full"][1::2, 1::2] + self.xu = self.supergrid["x_full"][2::2, 2::2] + self.yu = self.supergrid["y_full"][2::2, 2::2] + # self.xv = self.supergrid["x_full"][:-1:2, 1::2] + # self.yv = self.supergrid["y_full"][:-1:2, 1::2] + # self.xq = self.supergrid["x_full"][::2, ::2] + # self.yq = self.supergrid["y_full"][::2, ::2] + + def extract_grid(self, grid_type: str): + # Extract grid coordinates and bounds based on the specified grid type + if grid_type["x"] == "T": + x = self.xt + elif grid_type["x"] == "U": + x = self.xu + # elif grid_type["x"] == "V": + # x = self.xv + # elif grid_type["x"] == "Q": + # x = self.xq + else: + raise ValueError(f"Unsupported grid_type: x {grid_type['x']}") + + # Extract grid coordinates and bounds based on the specified grid type + if grid_type["y"] == "T": + y = self.yt + elif grid_type["y"] == "U": + y = self.yu + # elif grid_type["y"] == "V": + # y = self.yv + # elif grid_type["y"] == "Q": + # y = self.yq + else: + raise ValueError(f"Unsupported grid_type: y {grid_type['y']}") + + # Calculate corner coordinates + if grid_type["x"] == "T": + corners_x = self.supergrid["x_full"][0::2, 0::2] + else: + # Extract corner coordinates for U grids + xt_ext = xr.concat( + [self.xt, self.xt.isel(j_full=-1, i_full=slice(None, None, -1))], + dim="j_full", + ) + corners_x = xr.concat([xt_ext, xt_ext.isel(i_full=0)], dim="i_full") + + if grid_type["y"] == "T": + corners_y = self.supergrid["y_full"][0::2, 0::2] + else: + # Extract corner coordinates for U grids + yt_ext = xr.concat( + [self.yt, self.yt.isel(j_full=-1, i_full=slice(None, None, -1))], + dim="j_full", + ) + corners_y = xr.concat([yt_ext, yt_ext.isel(i_full=0)], dim="i_full") + + corners_x = (corners_x + 360) % 360 + + i_coord = xr.DataArray( + np.arange(x.shape[1]), + dims="i", + name="i", + attrs={"long_name": "cell index along first dimension", "units": "1"}, + ) + j_coord = xr.DataArray( + np.arange(y.shape[0]), + dims="j", + name="j", + attrs={"long_name": "cell index along second dimension", "units": "1"}, + ) + vertices = xr.DataArray(np.arange(4), dims="vertices", name="vertices") + + lat = xr.DataArray(y, dims=("j", "i"), name="latitude") + lon = xr.DataArray((x + 360) % 360, dims=("j", "i"), name="longitude") + + lat_bnds = ( + xr.concat( + [ + corners_y[:-1, :-1].expand_dims(vertices=[0]), + corners_y[:-1, 1:].expand_dims(vertices=[1]), + corners_y[1:, 1:].expand_dims(vertices=[2]), + corners_y[1:, :-1].expand_dims(vertices=[3]), + ], + dim="vertices", + ) + .rename({"j_full": "j", "i_full": "i"}) + .transpose("j", "i", "vertices") + .rename("vertices_latitude") + ) + + lon_bnds = ( + xr.concat( + [ + corners_x[:-1, :-1].expand_dims(vertices=[0]), + corners_x[:-1, 1:].expand_dims(vertices=[1]), + corners_x[1:, 1:].expand_dims(vertices=[2]), + corners_x[1:, :-1].expand_dims(vertices=[3]), + ], + dim="vertices", + ) + .rename({"j_full": "j", "i_full": "i"}) + .transpose("j", "i", "vertices") + .rename("vertices_longitude") + ) + + return { + "i": i_coord, + "j": j_coord, + "vertices": vertices, + "latitude": lat, + "longitude": lon, + "vertices_latitude": lat_bnds, + "vertices_longitude": lon_bnds, + } \ No newline at end of file From d5cb4923d15f73d22d4b94bd2148bd9d944f1c37 Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Fri, 10 Oct 2025 11:58:08 +1100 Subject: [PATCH 14/18] update for B and C grid --- src/access_moppy/driver.py | 4 + src/access_moppy/ocean.py | 72 +++------ src/access_moppy/ocean_supergrid.py | 225 ++++++++++------------------ 3 files changed, 100 insertions(+), 201 deletions(-) diff --git a/src/access_moppy/driver.py b/src/access_moppy/driver.py index 7316008..778a195 100644 --- a/src/access_moppy/driver.py +++ b/src/access_moppy/driver.py @@ -86,6 +86,8 @@ def __init__( ) elif table in ("Oyr", "Oday", "Omon", "SImon"): if self.source_id == "ACCESS-OM3": + # ACCESS-OM3 uses MOM6 (C-grid) — requires dedicated CMORiser implementation + # that handles C-grid supergrid logic, MOM6 metadata, and OM3-specific conventions self.cmoriser = CMIP6_Ocean_CMORiser_OM3( input_paths=self.input_paths, output_path=str(self.output_path), @@ -95,6 +97,8 @@ def __init__( drs_root=drs_root if drs_root else None, ) else: + # ACCESS-OM2 uses MOM5 (B-grid) — handled by a separate CMORiser class + # specialized for B-grid variable locations and OM2-specific metadata self.cmoriser = CMIP6_Ocean_CMORiser_OM2( input_paths=self.input_paths, output_path=str(self.output_path), diff --git a/src/access_moppy/ocean.py b/src/access_moppy/ocean.py index 5fa922e..30350c6 100644 --- a/src/access_moppy/ocean.py +++ b/src/access_moppy/ocean.py @@ -5,7 +5,7 @@ from access_moppy.base import CMIP6_CMORiser from access_moppy.derivations import custom_functions, evaluate_expression -from access_moppy.ocean_supergrid import Supergrid_cgrid, Supergrid_bgrid +from access_moppy.ocean_supergrid import Supergrid_bgrid, Supergrid_cgrid from access_moppy.vocabulary_processors import CMIP6Vocabulary @@ -36,29 +36,13 @@ def __init__( self.supergrid = None # To be defined in subclasses self.grid_info = None self.grid_type = None - + def _get_coord_sets(self): """A abstract method to get the coordinate sets for the grid type.""" - raise NotImplementedError( - "Subclasses must implement _get_coord_sets." - ) + raise NotImplementedError("Subclasses must implement _get_coord_sets.") def infer_grid_type(self): - # if self.vocab.source_id == "ACCESS-OM3": - # coord_sets = { - # "T": {"xh", "yh"}, - # "U": {"xu", "yu"}, - # "V": {"xv", "yv"}, - # "Q": {"xq", "yq"}, - # } - # else: - # coord_sets = { - # "T": {"xt_ocean", "yt_ocean"}, - # "U": {"xu_ocean", "yu_ocean"}, - # "V": {"xv_ocean", "yv_ocean"}, - # "Q": {"xq_ocean", "yq_ocean"}, - # } - + """Infer the grid type (T, U, V, Q) based on present coordinates.""" coord_sets = self._get_coord_sets() present_coords = set(self.ds.coords) # Find which grid type matches the present coordinates @@ -78,14 +62,13 @@ def infer_grid_type(self): return grid_dict else: raise ValueError("Could not infer grid type from dataset coordinates.") - + def _get_dim_rename(self): """A abstract method to get the dimension renaming mapping for the grid type.""" - raise NotImplementedError( - "Subclasses must implement _get_dim_rename." - ) + raise NotImplementedError("Subclasses must implement _get_dim_rename.") def select_and_process_variables(self): + """Select and process variables for the CMOR output.""" input_vars = self.mapping[self.cmor_name]["model_variables"] calc = self.mapping[self.cmor_name]["calculation"] @@ -104,26 +87,6 @@ def select_and_process_variables(self): dim_rename = self._get_dim_rename() - # if self.vocab.source_id == "ACCESS-OM3": - # dim_rename = { - # "xh": "i", - # "yh": "j", - # "xq": "i", - # "yq": "j", - # "zl": "lev", # depth level - # } - # else: - # dim_rename = { - # "xt_ocean": "i", - # "yt_ocean": "j", - # "xu_ocean": "i", - # "yu_ocean": "j", - # "xq_ocean": "i", - # "yq_ocean": "j", - # "xv_ocean": "i", - # "yv_ocean": "j", - # "st_ocean": "lev", # depth level - # } dims_to_rename = { k: v for k, v in dim_rename.items() if k in self.ds[self.cmor_name].dims } @@ -168,7 +131,6 @@ def update_attributes(self): self.ds["latitude"] = self.grid_info["latitude"] self.ds["longitude"] = self.grid_info["longitude"] - print("self.grid_info[vertices_latitude]:", self.grid_info["vertices_latitude"]) self.ds["vertices_latitude"] = self.grid_info["vertices_latitude"] self.ds["vertices_longitude"] = self.grid_info["vertices_longitude"] @@ -216,9 +178,10 @@ def update_attributes(self): # Check calendar and units self._check_calendar("time") - + class CMIP6_Ocean_CMORiser_OM2(CMIP6_Ocean_CMORiser): + """CMORiser for ocean variables on the ACCESS-OM2 model using B-grid supergrid coordinates.""" def __init__( self, @@ -245,6 +208,7 @@ def __init__( self.grid_type = None def _get_coord_sets(self): + """Get the coordinate sets for the grid type.""" if self.vocab.source_id == "ACCESS-OM2": return { "T": {"xt_ocean", "yt_ocean"}, @@ -256,6 +220,7 @@ def _get_coord_sets(self): raise ValueError(f"Unsupported source_id: {self.vocab.source_id}") def _get_dim_rename(self): + """Get the dimension renaming mapping for the grid type.""" if self.vocab.source_id == "ACCESS-OM2": return { "xt_ocean": "i", @@ -273,9 +238,8 @@ def _get_dim_rename(self): class CMIP6_Ocean_CMORiser_OM3(CMIP6_Ocean_CMORiser): - """ - CMORiser subclass for ocean variables on the ACCESS-OM3 model using C-grid supergrid coordinates. - """ + """CMORiser subclass for ocean variables on the ACCESS-OM3 model using C-grid supergrid coordinates.""" + def __init__( self, input_paths: Union[str, List[str]], @@ -295,12 +259,13 @@ def __init__( ) nominal_resolution = cmip6_vocab._get_nominal_resolution() - # OM3 uses C-grid + # OM3 uses C-grid, call self.supergrid = Supergrid_cgrid(nominal_resolution) self.grid_info = None self.grid_type = None - + def _get_coord_sets(self): + """Get the coordinate sets for the grid type.""" if self.vocab.source_id == "ACCESS-OM3": return { "T": {"xh", "yh"}, @@ -309,9 +274,10 @@ def _get_coord_sets(self): "Q": {"xq", "yq"}, } else: - raise ValueError(f"Unsupported source_id: {self.vocab.source_id}") - + raise ValueError(f"Unsupported source_id: {self.vocab.source_id}") + def _get_dim_rename(self): + """Get the dimension renaming mapping for the grid type.""" if self.vocab.source_id == "ACCESS-OM3": return { "xh": "i", diff --git a/src/access_moppy/ocean_supergrid.py b/src/access_moppy/ocean_supergrid.py index 5f8fb43..832631f 100644 --- a/src/access_moppy/ocean_supergrid.py +++ b/src/access_moppy/ocean_supergrid.py @@ -40,8 +40,6 @@ def get_supergrid_path(self, nominal_resolution: str) -> str: # Check if running on Gadi and file exists if os.path.exists(gadi_supergrid_path): supergrid_path = gadi_supergrid_path - elif nominal_resolution == "10 km": - supergrid_path = "/g/data/vk83/experiments/inputs/access-om2/ocean/grids/mosaic/global.01deg/2020.05.30/ocean_hgrid.nc" else: # Not on Gadi or file not available, download from Google Drive # Mapping nominal resolution to Google Drive file IDs @@ -87,79 +85,39 @@ def download_from_gdrive(file_id, dest_path): def load_supergrid(self, supergrid_file: str): """Load the supergrid dataset from the specified file.""" - raise NotImplementedError( - "Subclasses must implement load_supergrid." - ) - - def extract_grid(self, grid_type: str): - raise NotImplementedError( - "Subclasses must implement extract_grid." - ) - + raise NotImplementedError("Subclasses must implement load_supergrid.") -class Supergrid_cgrid(Supergrid): - def __init__(self, nominal_resolution: str): - """Initialize the Supergrid_cgrid class with a specified nominal resolution.""" - super().__init__(nominal_resolution) - - def load_supergrid(self, supergrid_file: str): - """Load the supergrid dataset from the specified file.""" - if not supergrid_file: - raise ValueError("supergrid_file must be provided") - - self.supergrid = xr.open_dataset(supergrid_file).rename_dims( - {"nxp": "i_full", "nyp": "j_full"} - ) - self.supergrid = self.supergrid.rename_vars({"x": "x_full", "y": "y_full"}) - self.xt = self.supergrid["x_full"][1::2, 1::2] - self.yt = self.supergrid["y_full"][1::2, 1::2] - self.xu = self.supergrid["x_full"][1::2, :-1:2] - self.yu = self.supergrid["y_full"][1::2, :-1:2] - self.xv = self.supergrid["x_full"][:-1:2, 1::2] - self.yv = self.supergrid["y_full"][:-1:2, 1::2] - self.xq = self.supergrid["x_full"][::2, ::2] - self.yq = self.supergrid["y_full"][::2, ::2] + def _get_xy(self, grid_type: str): + """Extract grid x, y based on the specified grid type.""" + raise NotImplementedError("Subclasses must implement _get_xy.") def extract_grid(self, grid_type: str): - # Extract grid coordinates and bounds based on the specified grid type - if grid_type["x"] == "T": - x = self.xt - elif grid_type["x"] == "U": - x = self.xu - elif grid_type["x"] == "V": - x = self.xv - elif grid_type["x"] == "Q": - x = self.xq[1::, 1::] - else: - raise ValueError(f"Unsupported grid_type: x {grid_type['x']}") - - # Extract grid coordinates and bounds based on the specified grid type - if grid_type["y"] == "T": - y = self.yt - elif grid_type["y"] == "U": - y = self.yu - elif grid_type["y"] == "V": - y = self.yv - elif grid_type["y"] == "Q": - y = self.yq[1::, 1::] - else: - raise ValueError(f"Unsupported grid_type: y {grid_type['y']}") + """Extract grid coordinates and bounds based on the specified grid type.""" + x, y = self._get_xy(grid_type) # Calculate corner coordinates if grid_type["x"] == "T": + # For T-grid (tracer points), corners are directly located at every other + # point on the supergrid (even indices correspond to corners) corners_x = self.supergrid["x_full"][0::2, 0::2] else: - # Extract corner coordinates for U grids + # For non-T grids (e.g., U-grid), we need to reconstruct corner coordinates + # by extending the tracer grid (xt) to include the outer boundary edges. + + # Extend xt in the y-direction by appending the last row reversed + # This ensures periodic or symmetric coverage along j (latitude-like axis) xt_ext = xr.concat( [self.xt, self.xt.isel(j_full=-1, i_full=slice(None, None, -1))], dim="j_full", ) + # Extend xt_ext in the x-direction by appending the first column + # This completes the wrap-around along i (longitude-like axis) corners_x = xr.concat([xt_ext, xt_ext.isel(i_full=0)], dim="i_full") if grid_type["y"] == "T": corners_y = self.supergrid["y_full"][0::2, 0::2] else: - # Extract corner coordinates for U grids + # Extract corner coordinates for U,Q grids yt_ext = xr.concat( [self.yt, self.yt.isel(j_full=-1, i_full=slice(None, None, -1))], dim="j_full", @@ -226,11 +184,13 @@ def extract_grid(self, grid_type: str): } -class Supergrid_bgrid(Supergrid): +class Supergrid_cgrid(Supergrid): + """C-grid supergrid handling for MOM6 models.""" + def __init__(self, nominal_resolution: str): """Initialize the Supergrid_cgrid class with a specified nominal resolution.""" super().__init__(nominal_resolution) - + def load_supergrid(self, supergrid_file: str): """Load the supergrid dataset from the specified file.""" if not supergrid_file: @@ -239,26 +199,31 @@ def load_supergrid(self, supergrid_file: str): self.supergrid = xr.open_dataset(supergrid_file).rename_dims( {"nxp": "i_full", "nyp": "j_full"} ) + # Extract grid positions for different Arakawa C-grid points + # - T-points: tracer (cell centers) + # - U-points: zonal velocity (east-west) + # - V-points: meridional velocity (north-south) + # - Q-points: cell corners self.supergrid = self.supergrid.rename_vars({"x": "x_full", "y": "y_full"}) self.xt = self.supergrid["x_full"][1::2, 1::2] self.yt = self.supergrid["y_full"][1::2, 1::2] - self.xu = self.supergrid["x_full"][2::2, 2::2] - self.yu = self.supergrid["y_full"][2::2, 2::2] - # self.xv = self.supergrid["x_full"][:-1:2, 1::2] - # self.yv = self.supergrid["y_full"][:-1:2, 1::2] - # self.xq = self.supergrid["x_full"][::2, ::2] - # self.yq = self.supergrid["y_full"][::2, ::2] - - def extract_grid(self, grid_type: str): + self.xu = self.supergrid["x_full"][1::2, :-1:2] + self.yu = self.supergrid["y_full"][1::2, :-1:2] + self.xv = self.supergrid["x_full"][:-1:2, 1::2] + self.yv = self.supergrid["y_full"][:-1:2, 1::2] + self.xq = self.supergrid["x_full"][::2, ::2] + self.yq = self.supergrid["y_full"][::2, ::2] + + def _get_xy(self, grid_type: str): # Extract grid coordinates and bounds based on the specified grid type if grid_type["x"] == "T": x = self.xt elif grid_type["x"] == "U": x = self.xu - # elif grid_type["x"] == "V": - # x = self.xv - # elif grid_type["x"] == "Q": - # x = self.xq + elif grid_type["x"] == "V": + x = self.xv + elif grid_type["x"] == "Q": + x = self.xq[1::, 1::] else: raise ValueError(f"Unsupported grid_type: x {grid_type['x']}") @@ -267,89 +232,53 @@ def extract_grid(self, grid_type: str): y = self.yt elif grid_type["y"] == "U": y = self.yu - # elif grid_type["y"] == "V": - # y = self.yv - # elif grid_type["y"] == "Q": - # y = self.yq + elif grid_type["y"] == "V": + y = self.yv + elif grid_type["y"] == "Q": + y = self.yq[1::, 1::] else: raise ValueError(f"Unsupported grid_type: y {grid_type['y']}") + return x, y - # Calculate corner coordinates - if grid_type["x"] == "T": - corners_x = self.supergrid["x_full"][0::2, 0::2] - else: - # Extract corner coordinates for U grids - xt_ext = xr.concat( - [self.xt, self.xt.isel(j_full=-1, i_full=slice(None, None, -1))], - dim="j_full", - ) - corners_x = xr.concat([xt_ext, xt_ext.isel(i_full=0)], dim="i_full") - - if grid_type["y"] == "T": - corners_y = self.supergrid["y_full"][0::2, 0::2] - else: - # Extract corner coordinates for U grids - yt_ext = xr.concat( - [self.yt, self.yt.isel(j_full=-1, i_full=slice(None, None, -1))], - dim="j_full", - ) - corners_y = xr.concat([yt_ext, yt_ext.isel(i_full=0)], dim="i_full") - corners_x = (corners_x + 360) % 360 +class Supergrid_bgrid(Supergrid): + """B-grid supergrid handling for MOM5 models.""" - i_coord = xr.DataArray( - np.arange(x.shape[1]), - dims="i", - name="i", - attrs={"long_name": "cell index along first dimension", "units": "1"}, - ) - j_coord = xr.DataArray( - np.arange(y.shape[0]), - dims="j", - name="j", - attrs={"long_name": "cell index along second dimension", "units": "1"}, - ) - vertices = xr.DataArray(np.arange(4), dims="vertices", name="vertices") + def __init__(self, nominal_resolution: str): + """Initialize the Supergrid_bgrid class with a specified nominal resolution.""" + super().__init__(nominal_resolution) - lat = xr.DataArray(y, dims=("j", "i"), name="latitude") - lon = xr.DataArray((x + 360) % 360, dims=("j", "i"), name="longitude") + def load_supergrid(self, supergrid_file: str): + """Load the supergrid dataset from the specified file.""" + if not supergrid_file: + raise ValueError("supergrid_file must be provided") - lat_bnds = ( - xr.concat( - [ - corners_y[:-1, :-1].expand_dims(vertices=[0]), - corners_y[:-1, 1:].expand_dims(vertices=[1]), - corners_y[1:, 1:].expand_dims(vertices=[2]), - corners_y[1:, :-1].expand_dims(vertices=[3]), - ], - dim="vertices", - ) - .rename({"j_full": "j", "i_full": "i"}) - .transpose("j", "i", "vertices") - .rename("vertices_latitude") + self.supergrid = xr.open_dataset(supergrid_file).rename_dims( + {"nxp": "i_full", "nyp": "j_full"} ) + self.supergrid = self.supergrid.rename_vars({"x": "x_full", "y": "y_full"}) + # Extract grid positions for Arakawa B-grid: + # - T-points (mass points) at cell centers + # - U-points (velocity points) at the same position as T-points but can differ in spacing + self.xt = self.supergrid["x_full"][1::2, 1::2] + self.yt = self.supergrid["y_full"][1::2, 1::2] + self.xu = self.supergrid["x_full"][2::2, 2::2] + self.yu = self.supergrid["y_full"][2::2, 2::2] - lon_bnds = ( - xr.concat( - [ - corners_x[:-1, :-1].expand_dims(vertices=[0]), - corners_x[:-1, 1:].expand_dims(vertices=[1]), - corners_x[1:, 1:].expand_dims(vertices=[2]), - corners_x[1:, :-1].expand_dims(vertices=[3]), - ], - dim="vertices", - ) - .rename({"j_full": "j", "i_full": "i"}) - .transpose("j", "i", "vertices") - .rename("vertices_longitude") - ) + def _get_xy(self, grid_type: str): + # Extract grid coordinates and bounds based on the specified grid type + if grid_type["x"] == "T": + x = self.xt + elif grid_type["x"] == "U": + x = self.xu + else: + raise ValueError(f"Unsupported grid_type: x {grid_type['x']}") - return { - "i": i_coord, - "j": j_coord, - "vertices": vertices, - "latitude": lat, - "longitude": lon, - "vertices_latitude": lat_bnds, - "vertices_longitude": lon_bnds, - } \ No newline at end of file + # Extract grid coordinates and bounds based on the specified grid type + if grid_type["y"] == "T": + y = self.yt + elif grid_type["y"] == "U": + y = self.yu + else: + raise ValueError(f"Unsupported grid_type: y {grid_type['y']}") + return x, y From 48556a5838a7198b0fdd4bd289620b50ee6ff9e2 Mon Sep 17 00:00:00 2001 From: rhaegar325 Date: Fri, 10 Oct 2025 12:02:25 +1100 Subject: [PATCH 15/18] fix for pass ruff --- src/access_moppy/ocean.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/access_moppy/ocean.py b/src/access_moppy/ocean.py index 30350c6..34b4608 100644 --- a/src/access_moppy/ocean.py +++ b/src/access_moppy/ocean.py @@ -32,7 +32,6 @@ def __init__( drs_root=drs_root, ) - nominal_resolution = cmip6_vocab._get_nominal_resolution() self.supergrid = None # To be defined in subclasses self.grid_info = None self.grid_type = None From 669718cb6bd6f2a89487807d7c6514c1a0c7a538 Mon Sep 17 00:00:00 2001 From: rbeucher Date: Wed, 29 Oct 2025 16:16:46 +1000 Subject: [PATCH 16/18] Refactor documentation requirements in requirements.txt to remove unnecessary build configuration --- docs/requirements.txt | 27 ++++++--------------------- 1 file changed, 6 insertions(+), 21 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index e02d8d6..1cec6ee 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,24 +1,9 @@ -version: 2 - -build: - os: ubuntu-22.04 - tools: - python: "3.13" - -sphinx: - configuration: docs/source/conf.py - fail_on_warning: false - -formats: - - pdf - - epub - -python: - install: - - method: pip - path: . - extra_requirements: - - docs +############################### +# Documentation requirements # +############################### +# Tip: For local builds you can also run: +# pip install -e .[docs] +# which uses the extras defined in pyproject.toml # Core documentation dependencies sphinx>=7.0.0 From e22625e4bfacb9fcc65144956c7d693317744551 Mon Sep 17 00:00:00 2001 From: rbeucher Date: Mon, 10 Nov 2025 13:14:22 +1000 Subject: [PATCH 17/18] Fix ruff --- src/access_moppy/driver.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/access_moppy/driver.py b/src/access_moppy/driver.py index 778a195..d61301b 100644 --- a/src/access_moppy/driver.py +++ b/src/access_moppy/driver.py @@ -8,6 +8,7 @@ from access_moppy.utilities import load_model_mappings from access_moppy.vocabulary_processors import CMIP6Vocabulary + class ACCESS_ESM_CMORiser: """ Coordinates the CMORisation process using CMIP6Vocabulary and CMORiser. From 915f669a3ccccf52de771cb89a2e14ba57135218 Mon Sep 17 00:00:00 2001 From: rbeucher Date: Mon, 10 Nov 2025 13:25:48 +1000 Subject: [PATCH 18/18] Restore CMIP6 vocab file --- .../CMIP6_CVs/CMIP6_source_id.json | 10566 ++++++++-------- 1 file changed, 5283 insertions(+), 5283 deletions(-) diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json index d2d489c..daf33b3 100644 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json +++ b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json @@ -1,64 +1,64 @@ { - "source_id": { - "4AOP-v1-5": { - "activity_participation": [ + "source_id":{ + "4AOP-v1-5":{ + "activity_participation":[ "RFMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "IPSL" ], - "label": "4AOP-v1-5", - "label_extended": "Line-By-Line Radiative Transfer Model v1.5, Laboratoire Meteorologie Dynamique, GEISA spectroscopic database", - "license_info": { - "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", - "history": "2020-06-11: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"4AOP-v1-5", + "label_extended":"Line-By-Line Radiative Transfer Model v1.5, Laboratoire Meteorologie Dynamique, GEISA spectroscopic database", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2020-06-11: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "none", - "native_nominal_resolution": "none" + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "none", - "native_nominal_resolution": "none" + "land":{ + "description":"none", + "native_nominal_resolution":"none" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2019", - "source_id": "4AOP-v1-5" + "release_year":"2019", + "source_id":"4AOP-v1-5" }, - "ACCESS-CM2": { - "activity_participation": [ + "ACCESS-CM2":{ + "activity_participation":[ "CMIP", "DAMIP", "FAFMIP", @@ -67,61 +67,61 @@ "SIMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CSIRO-ARCCSS" ], - "label": "ACCESS-CM2", - "label_extended": "Australian Community Climate and Earth System Simulator Climate Model Version 2", - "license_info": { - "exceptions_contact": "@csiro.au <- access_csiro", - "history": "2019-11-08: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"ACCESS-CM2", + "label_extended":"Australian Community Climate and Earth System Simulator Climate Model Version 2", + "license_info":{ + "exceptions_contact":"@csiro.au <- access_csiro", + "history":"2019-11-08: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "UKCA-GLOMAP-mode", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CABLE2.5", - "native_nominal_resolution": "250 km" + "land":{ + "description":"CABLE2.5", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "ACCESS-OM2 (GFDL-MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"ACCESS-OM2 (GFDL-MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE5.1.2 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE5.1.2 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "ACCESS-CM2" + "release_year":"2019", + "source_id":"ACCESS-CM2" }, - "ACCESS-ESM1-5": { - "activity_participation": [ + "ACCESS-ESM1-5":{ + "activity_participation":[ "C4MIP", "CDRMIP", "CMIP", @@ -132,232 +132,232 @@ "RFMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CSIRO" ], - "label": "ACCESS-ESM1.5", - "label_extended": "Australian Community Climate and Earth System Simulator Earth System Model Version 1.5", - "license_info": { - "exceptions_contact": "@csiro.au <- access_csiro", - "history": "2019-11-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"ACCESS-ESM1.5", + "label_extended":"Australian Community Climate and Earth System Simulator Earth System Model Version 1.5", + "license_info":{ + "exceptions_contact":"@csiro.au <- access_csiro", + "history":"2019-11-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "CLASSIC (v1.0)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"CLASSIC (v1.0)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CABLE2.4", - "native_nominal_resolution": "250 km" + "land":{ + "description":"CABLE2.4", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "WOMBAT (same grid as ocean)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"WOMBAT (same grid as ocean)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE4.1 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4.1 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "ACCESS-ESM1-5" + "release_year":"2019", + "source_id":"ACCESS-ESM1-5" }, - "ACCESS-OM2": { - "activity_participation": [ + "ACCESS-OM2":{ + "activity_participation":[ "OMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CSIRO-COSIMA" ], - "label": "ACCESS-OM2", - "label_extended": "Australian Community Climate and Earth System Simulator Ocean Model Version 2", - "license_info": { - "exceptions_contact": "@csiro.au <- access_csiro", - "history": "2021-06-16: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"ACCESS-OM2", + "label_extended":"Australian Community Climate and Earth System Simulator Ocean Model Version 2", + "license_info":{ + "exceptions_contact":"@csiro.au <- access_csiro", + "history":"2021-06-16: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "none", - "native_nominal_resolution": "none" + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "none", - "native_nominal_resolution": "none" + "land":{ + "description":"none", + "native_nominal_resolution":"none" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-2.3 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-2.3 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "WOMBAT (same grid as ocean)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"WOMBAT (same grid as ocean)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE5.1.2 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE5.1.2 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2020", - "source_id": "ACCESS-OM2" + "release_year":"2020", + "source_id":"ACCESS-OM2" }, - "ACCESS-OM2-025": { - "activity_participation": [ + "ACCESS-OM2-025":{ + "activity_participation":[ "OMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CSIRO-COSIMA" ], - "label": "ACCESS-OM2-025", - "label_extended": "Australian Community Climate and Earth System Simulator Ocean Model Version 2 quarter degree", - "license_info": { - "exceptions_contact": "@csiro.au <- access_csiro", - "history": "2021-06-17: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"ACCESS-OM2-025", + "label_extended":"Australian Community Climate and Earth System Simulator Ocean Model Version 2 quarter degree", + "license_info":{ + "exceptions_contact":"@csiro.au <- access_csiro", + "history":"2021-06-17: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "none", - "native_nominal_resolution": "none" + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "none", - "native_nominal_resolution": "none" + "land":{ + "description":"none", + "native_nominal_resolution":"none" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "ACCESS-OM2 (MOM5, tripolar primarily 1/4 deg; 1440 x 1080 longitude/latitude; 50 levels; top grid cell 0-2.3 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"ACCESS-OM2 (MOM5, tripolar primarily 1/4 deg; 1440 x 1080 longitude/latitude; 50 levels; top grid cell 0-2.3 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "WOMBAT (same grid as ocean)", - "native_nominal_resolution": "25 km" + "ocnBgchem":{ + "description":"WOMBAT (same grid as ocean)", + "native_nominal_resolution":"25 km" }, - "seaIce": { - "description": "CICE5.1.2 (same grid as ocean)", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"CICE5.1.2 (same grid as ocean)", + "native_nominal_resolution":"25 km" } }, - "release_year": "2020", - "source_id": "ACCESS-OM2-025" + "release_year":"2020", + "source_id":"ACCESS-OM2-025" }, - "ARTS-2-3": { - "activity_participation": [ + "ARTS-2-3":{ + "activity_participation":[ "RFMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "UHH" ], - "label": "ARTS 2.3", - "label_extended": "ARTS 2.3 (Current development version of the Atmospheric Radiative Transfer Simulator)", - "license_info": { - "exceptions_contact": "@uni-hamburg.de <- oliver.lemke", - "history": "2019-06-20: initially published under CC BY-NC-SA 4.0; 2022-07-31: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"ARTS 2.3", + "label_extended":"ARTS 2.3 (Current development version of the Atmospheric Radiative Transfer Simulator)", + "license_info":{ + "exceptions_contact":"@uni-hamburg.de <- oliver.lemke", + "history":"2019-06-20: initially published under CC BY-NC-SA 4.0; 2022-07-31: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "none", - "native_nominal_resolution": "none" + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "none", - "native_nominal_resolution": "none" + "land":{ + "description":"none", + "native_nominal_resolution":"none" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2015", - "source_id": "ARTS-2-3" + "release_year":"2015", + "source_id":"ARTS-2-3" }, - "AWI-CM-1-1-HR": { - "activity_participation": [ + "AWI-CM-1-1-HR":{ + "activity_participation":[ "CMIP", "CORDEX", "HighResMIP", @@ -365,61 +365,61 @@ "SIMIP", "VIACSAB" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "AWI" ], - "label": "AWI-CM 1.1 HR", - "label_extended": "AWI-CM 1.1 HR", - "license_info": { - "exceptions_contact": "@awi.de <- mip-contact", - "history": "2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"AWI-CM 1.1 HR", + "label_extended":"AWI-CM 1.1 HR", + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JSBACH 3.20", - "native_nominal_resolution": "100 km" + "land":{ + "description":"JSBACH 3.20", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "FESOM 1.4 (unstructured grid in the horizontal with 1306775 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"FESOM 1.4 (unstructured grid in the horizontal with 1306775 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "FESOM 1.4", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"FESOM 1.4", + "native_nominal_resolution":"25 km" } }, - "release_year": "2018", - "source_id": "AWI-CM-1-1-HR" + "release_year":"2018", + "source_id":"AWI-CM-1-1-HR" }, - "AWI-CM-1-1-LR": { - "activity_participation": [ + "AWI-CM-1-1-LR":{ + "activity_participation":[ "CMIP", "CORDEX", "HighResMIP", @@ -428,61 +428,61 @@ "ScenarioMIP", "VIACSAB" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "AWI" ], - "label": "AWI-CM 1.1 LR", - "label_extended": "AWI-CM 1.1 LR", - "license_info": { - "exceptions_contact": "@awi.de <- mip-contact", - "history": "2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"AWI-CM 1.1 LR", + "label_extended":"AWI-CM 1.1 LR", + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JSBACH 3.20", - "native_nominal_resolution": "250 km" + "land":{ + "description":"JSBACH 3.20", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "FESOM 1.4", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"FESOM 1.4", + "native_nominal_resolution":"100 km" } }, - "release_year": "2018", - "source_id": "AWI-CM-1-1-LR" + "release_year":"2018", + "source_id":"AWI-CM-1-1-LR" }, - "AWI-CM-1-1-MR": { - "activity_participation": [ + "AWI-CM-1-1-MR":{ + "activity_participation":[ "CMIP", "CORDEX", "OMIP", @@ -491,237 +491,237 @@ "ScenarioMIP", "VIACSAB" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "AWI" ], - "label": "AWI-CM 1.1 MR", - "label_extended": "AWI-CM 1.1 MR", - "license_info": { - "exceptions_contact": "@awi.de <- mip-contact", - "history": "2018-12-18: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"AWI-CM 1.1 MR", + "label_extended":"AWI-CM 1.1 MR", + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2018-12-18: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JSBACH 3.20", - "native_nominal_resolution": "100 km" + "land":{ + "description":"JSBACH 3.20", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "FESOM 1.4 (unstructured grid in the horizontal with 830305 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"FESOM 1.4 (unstructured grid in the horizontal with 830305 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "FESOM 1.4", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"FESOM 1.4", + "native_nominal_resolution":"25 km" } }, - "release_year": "2018", - "source_id": "AWI-CM-1-1-MR" + "release_year":"2018", + "source_id":"AWI-CM-1-1-MR" }, - "AWI-ESM-1-1-LR": { - "activity_participation": [ + "AWI-ESM-1-1-LR":{ + "activity_participation":[ "CMIP", "PMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "AWI" ], - "label": "AWI-ESM 1.1 LR", - "label_extended": "AWI-ESM 1.1 LR", - "license_info": { - "exceptions_contact": "@awi.de <- mip-contact", - "history": "2020-02-12: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"AWI-ESM 1.1 LR", + "label_extended":"AWI-ESM 1.1 LR", + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2020-02-12: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JSBACH 3.20 with dynamic vegetation", - "native_nominal_resolution": "250 km" + "land":{ + "description":"JSBACH 3.20 with dynamic vegetation", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "FESOM 1.4", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"FESOM 1.4", + "native_nominal_resolution":"100 km" } }, - "release_year": "2018", - "source_id": "AWI-ESM-1-1-LR" + "release_year":"2018", + "source_id":"AWI-ESM-1-1-LR" }, - "AWI-ESM-1-REcoM": { - "activity_participation": [ + "AWI-ESM-1-REcoM":{ + "activity_participation":[ "C4MIP", "CDRMIP", "CMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "AWI" ], - "label": "AWI-ESM 1 REcoM", - "label_extended": "AWI-ESM 1 REcoM", - "license_info": { - "exceptions_contact": "@awi.de <- mip-contact", - "history": "2024-07-04: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"AWI-ESM 1 REcoM", + "label_extended":"AWI-ESM 1 REcoM", + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2024-07-04: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JSBACH 3.20 with dynamic vegetation", - "native_nominal_resolution": "250 km" + "land":{ + "description":"JSBACH 3.20 with dynamic vegetation", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "REcoM2 (same grid as ocean component)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"REcoM2 (same grid as ocean component)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "FESOM 1.4 (same grid as ocean component)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"FESOM 1.4 (same grid as ocean component)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2024", - "source_id": "AWI-ESM-1-REcoM" + "release_year":"2024", + "source_id":"AWI-ESM-1-REcoM" }, - "BCC-CSM2-HR": { - "activity_participation": [ + "BCC-CSM2-HR":{ + "activity_participation":[ "CMIP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "BCC" ], - "label": "BCC-CSM 2 HR", - "label_extended": "BCC-CSM 2 HR", - "license_info": { - "exceptions_contact": "@cma.gov.cn <- twwu", - "history": "2020-07-21: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"BCC-CSM 2 HR", + "label_extended":"BCC-CSM 2 HR", + "license_info":{ + "exceptions_contact":"@cma.gov.cn <- twwu", + "history":"2020-07-21: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "BCC_AGCM3_HR (T266; 800 x 400 longitude/latitude; 56 levels; top level 0.1 hPa)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"BCC_AGCM3_HR (T266; 800 x 400 longitude/latitude; 56 levels; top level 0.1 hPa)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "BCC_AVIM2", - "native_nominal_resolution": "50 km" + "land":{ + "description":"BCC_AVIM2", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "SIS2", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"SIS2", + "native_nominal_resolution":"50 km" } }, - "release_year": "2017", - "source_id": "BCC-CSM2-HR" + "release_year":"2017", + "source_id":"BCC-CSM2-HR" }, - "BCC-CSM2-MR": { - "activity_participation": [ + "BCC-CSM2-MR":{ + "activity_participation":[ "C4MIP", "CFMIP", "CMIP", @@ -733,294 +733,294 @@ "RFMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "BCC" ], - "label": "BCC-CSM 2 MR", - "label_extended": "BCC-CSM 2 MR", - "license_info": { - "exceptions_contact": "@cma.gov.cn <- twwu", - "history": "2018-10-09: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"BCC-CSM 2 MR", + "label_extended":"BCC-CSM 2 MR", + "license_info":{ + "exceptions_contact":"@cma.gov.cn <- twwu", + "history":"2018-10-09: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "BCC_AGCM3_MR (T106; 320 x 160 longitude/latitude; 46 levels; top level 1.46 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"BCC_AGCM3_MR (T106; 320 x 160 longitude/latitude; 46 levels; top level 1.46 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "BCC_AVIM2", - "native_nominal_resolution": "100 km" + "land":{ + "description":"BCC_AVIM2", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "SIS2", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"SIS2", + "native_nominal_resolution":"50 km" } }, - "release_year": "2017", - "source_id": "BCC-CSM2-MR" + "release_year":"2017", + "source_id":"BCC-CSM2-MR" }, - "BCC-ESM1": { - "activity_participation": [ + "BCC-ESM1":{ + "activity_participation":[ "AerChemMIP", "CMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "BCC" ], - "label": "BCC-ESM 1", - "label_extended": "BCC-ESM 1", - "license_info": { - "exceptions_contact": "@cma.gov.cn <- twwu", - "history": "2018-11-14: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"BCC-ESM 1", + "label_extended":"BCC-ESM 1", + "license_info":{ + "exceptions_contact":"@cma.gov.cn <- twwu", + "history":"2018-11-14: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "BCC_AGCM3_LR (T42; 128 x 64 longitude/latitude; 26 levels; top level 2.19 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"BCC_AGCM3_LR (T42; 128 x 64 longitude/latitude; 26 levels; top level 2.19 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "BCC-AGCM3-Chem", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"BCC-AGCM3-Chem", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "BCC_AVIM2", - "native_nominal_resolution": "250 km" + "land":{ + "description":"BCC_AVIM2", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "SIS2", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"SIS2", + "native_nominal_resolution":"50 km" } }, - "release_year": "2017", - "source_id": "BCC-ESM1" + "release_year":"2017", + "source_id":"BCC-ESM1" }, - "CAM-MPAS-HR": { - "activity_participation": [ + "CAM-MPAS-HR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "PNNL-WACCEM" ], - "label": "CAM-MPAS-HR", - "label_extended": "CAM MPAS (Community Atmosphere Model - Model for Prediction Across Scales)", - "license_info": { - "exceptions_contact": "@pnnl.gov <- bryce.harrop", - "history": "2025-03-25: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CAM-MPAS-HR", + "label_extended":"CAM MPAS (Community Atmosphere Model - Model for Prediction Across Scales)", + "license_info":{ + "exceptions_contact":"@pnnl.gov <- bryce.harrop", + "history":"2025-03-25: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none, prescribed MACv2-SP", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 30 km mesh with 655362 cells and 1966080 edges; 32 levels, top level 40363 m)", - "native_nominal_resolution": "25 km" + "atmos":{ + "description":"CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 30 km mesh with 655362 cells and 1966080 edges; 32 levels, top level 40363 m)", + "native_nominal_resolution":"25 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CLM (v4.0, same grid as atmos), River Transport Model (v1.0)", - "native_nominal_resolution": "25 km" + "land":{ + "description":"CLM (v4.0, same grid as atmos), River Transport Model (v1.0)", + "native_nominal_resolution":"25 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2018", - "source_id": "CAM-MPAS-HR" + "release_year":"2018", + "source_id":"CAM-MPAS-HR" }, - "CAM-MPAS-LR": { - "activity_participation": [ + "CAM-MPAS-LR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "PNNL-WACCEM" ], - "label": "CAM-MPAS-LR", - "label_extended": "CAM MPAS (Community Atmosphere Model - Model for Prediction Across Scales)", - "license_info": { - "exceptions_contact": "@pnnl.gov <- bryce.harrop", - "history": "2025-03-25: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CAM-MPAS-LR", + "label_extended":"CAM MPAS (Community Atmosphere Model - Model for Prediction Across Scales)", + "license_info":{ + "exceptions_contact":"@pnnl.gov <- bryce.harrop", + "history":"2025-03-25: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none, prescribed MACv2-SP", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 120 km mesh with 40962 cells and 122880 edges; 32 vertical levels, model top 40363 m)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 120 km mesh with 40962 cells and 122880 edges; 32 vertical levels, model top 40363 m)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CLM (v4.0, same grid as atmos), River Transport Model (v1.0)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM (v4.0, same grid as atmos), River Transport Model (v1.0)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2018", - "source_id": "CAM-MPAS-LR" + "release_year":"2018", + "source_id":"CAM-MPAS-LR" }, - "CAMS-CSM1-0": { - "activity_participation": [ + "CAMS-CSM1-0":{ + "activity_participation":[ "CFMIP", "CMIP", "GMMIP", "HighResMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CAMS" ], - "label": "CAMS-CSM 1.0", - "label_extended": "CAMS-CSM 1.0", - "license_info": { - "exceptions_contact": "@cma.gov.cn <- rongxy", - "history": "2019-07-08: initially published under CC BY-SA 4.0; 2022-09-29 relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CAMS-CSM 1.0", + "label_extended":"CAMS-CSM 1.0", + "license_info":{ + "exceptions_contact":"@cma.gov.cn <- rongxy", + "history":"2019-07-08: initially published under CC BY-SA 4.0; 2022-09-29 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "ECHAM5_CAMS (T106; 320 x 160 longitude/latitude; 31 levels; top level 10 mb)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"ECHAM5_CAMS (T106; 320 x 160 longitude/latitude; 31 levels; top level 10 mb)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CoLM 1.0", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CoLM 1.0", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MOM4 (tripolar; 360 x 200 longitude/latitude, primarily 1deg latitude/longitude, down to 1/3deg within 30deg of the equatorial tropics; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"MOM4 (tripolar; 360 x 200 longitude/latitude, primarily 1deg latitude/longitude, down to 1/3deg within 30deg of the equatorial tropics; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "SIS 1.0", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"SIS 1.0", + "native_nominal_resolution":"100 km" } }, - "release_year": "2016", - "source_id": "CAMS-CSM1-0" + "release_year":"2016", + "source_id":"CAMS-CSM1-0" }, - "CAS-ESM2-0": { - "activity_participation": [ + "CAS-ESM2-0":{ + "activity_participation":[ "AerChemMIP", "C4MIP", "CDRMIP", @@ -1042,291 +1042,291 @@ "VIACSAB", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CAS" ], - "label": "CAS-ESM 2.0", - "label_extended": "CAS-ESM 2.0 (Chinese Academy of Sciences Earth System Model version 2.0)", - "license_info": { - "exceptions_contact": "@mail.iap.ac.cn <- zhanghe", - "history": "2020-03-01: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CAS-ESM 2.0", + "label_extended":"CAS-ESM 2.0 (Chinese Academy of Sciences Earth System Model version 2.0)", + "license_info":{ + "exceptions_contact":"@mail.iap.ac.cn <- zhanghe", + "history":"2020-03-01: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "IAP AACM", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"IAP AACM", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "IAP AGCM 5.0 (Finite difference dynamical core; 256 x 128 longitude/latitude; 35 levels; top level 2.2 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"IAP AGCM 5.0 (Finite difference dynamical core; 256 x 128 longitude/latitude; 35 levels; top level 2.2 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "IAP AACM", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"IAP AACM", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "CoLM", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CoLM", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "LICOM2.0 (LICOM2.0, primarily 1deg; 362 x 196 longitude/latitude; 30 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"LICOM2.0 (LICOM2.0, primarily 1deg; 362 x 196 longitude/latitude; 30 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "IAP OBGCM", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"IAP OBGCM", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE4", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "CAS-ESM2-0" + "release_year":"2019", + "source_id":"CAS-ESM2-0" }, - "CESM1-1-CAM5-CMIP5": { - "activity_participation": [ + "CESM1-1-CAM5-CMIP5":{ + "activity_participation":[ "CMIP", "DCPP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NCAR" ], - "label": "CESM1-1-CAM5-CMIP5", - "label_extended": "CESM1-1-CAM5-CMIP5", - "license_info": { - "exceptions_contact": "@ucar.edu <- cesm_cmip6", - "history": "2019-10-07: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CESM1-1-CAM5-CMIP5", + "label_extended":"CESM1-1-CAM5-CMIP5", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-10-07: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM3 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM3 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "CAM5.2 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"CAM5.2 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "MAM3 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"MAM3 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "CLM4 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM4 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "BEC (same grid as ocean)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"BEC (same grid as ocean)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE4 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2011", - "source_id": "CESM1-1-CAM5-CMIP5" + "release_year":"2011", + "source_id":"CESM1-1-CAM5-CMIP5" }, - "CESM1-CAM5-SE-HR": { - "activity_participation": [ + "CESM1-CAM5-SE-HR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NCAR" ], - "label": "CESM1-CAM5-SE-HR", - "label_extended": "CESM 1.3 CAM5 spectral element configuration with CMIP5 forcings, hi res", - "license_info": { - "exceptions_contact": "@ucar.edu <- cesm_cmip6", - "history": "2020-07-24: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CESM1-CAM5-SE-HR", + "label_extended":"CESM 1.3 CAM5 spectral element configuration with CMIP5 forcings, hi res", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2020-07-24: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM3 (same grid as atmos)", - "native_nominal_resolution": "25 km" + "model_component":{ + "aerosol":{ + "description":"MAM3 (same grid as atmos)", + "native_nominal_resolution":"25 km" }, - "atmos": { - "description": "CAM5.2 (0.25 degree spectral element; 777602 cells; 30 levels; top level 2.25 mb)", - "native_nominal_resolution": "25 km" + "atmos":{ + "description":"CAM5.2 (0.25 degree spectral element; 777602 cells; 30 levels; top level 2.25 mb)", + "native_nominal_resolution":"25 km" }, - "atmosChem": { - "description": "MAM3 (same grid as atmos)", - "native_nominal_resolution": "25 km" + "atmosChem":{ + "description":"MAM3 (same grid as atmos)", + "native_nominal_resolution":"25 km" }, - "land": { - "description": "CLM4 (same grid as atmos)", - "native_nominal_resolution": "25 km" + "land":{ + "description":"CLM4 (same grid as atmos)", + "native_nominal_resolution":"25 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "POP2 (3600x2400 longitude/latitude; 62 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "10 km" + "ocean":{ + "description":"POP2 (3600x2400 longitude/latitude; 62 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"10 km" }, - "ocnBgchem": { - "description": "\"BEC (same grid as ocean)", - "native_nominal_resolution": "10 km" + "ocnBgchem":{ + "description":"\"BEC (same grid as ocean)", + "native_nominal_resolution":"10 km" }, - "seaIce": { - "description": "CICE4 (same grid as ocean)", - "native_nominal_resolution": "10 km" + "seaIce":{ + "description":"CICE4 (same grid as ocean)", + "native_nominal_resolution":"10 km" } }, - "release_year": "2012", - "source_id": "CESM1-CAM5-SE-HR" + "release_year":"2012", + "source_id":"CESM1-CAM5-SE-HR" }, - "CESM1-CAM5-SE-LR": { - "activity_participation": [ + "CESM1-CAM5-SE-LR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NCAR" ], - "label": "CESM1-CAM5-SE-LR", - "label_extended": "CESM 1.3 CAM5 spectral element configuration with CMIP5 forcings, lo res", - "license_info": { - "exceptions_contact": "@ucar.edu <- cesm_cmip6", - "history": "2020-07-08: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CESM1-CAM5-SE-LR", + "label_extended":"CESM 1.3 CAM5 spectral element configuration with CMIP5 forcings, lo res", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2020-07-08: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM3 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM3 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "CAM5.2 (1 degree spectral element; 48602 cells; 30 levels; top level 2.25 mb)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"CAM5.2 (1 degree spectral element; 48602 cells; 30 levels; top level 2.25 mb)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "MAM3 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"MAM3 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "CLM4 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM4 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "\"BEC (same grid as ocean)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"\"BEC (same grid as ocean)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE4 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2012", - "source_id": "CESM1-CAM5-SE-LR" + "release_year":"2012", + "source_id":"CESM1-CAM5-SE-LR" }, - "CESM1-WACCM-SC": { - "activity_participation": [ + "CESM1-WACCM-SC":{ + "activity_participation":[ "PAMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "UCI", "NCAR" ], - "label": "CESM1-WACCM-SC", - "label_extended": "Community Earth System Model 1, with the Whole Atmosphere Community Climate Model and Specified Chemistry", - "license_info": { - "exceptions_contact": "@ucar.edu <- cesm_cmip6", - "history": "2020-10-12: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CESM1-WACCM-SC", + "label_extended":"Community Earth System Model 1, with the Whole Atmosphere Community Climate Model and Specified Chemistry", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2020-10-12: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MOZART-specified (same grid as atmos)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"MOZART-specified (same grid as atmos)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "WACCM4 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 66 levels; top level 5.9e-06 mb)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"WACCM4 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 66 levels; top level 5.9e-06 mb)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "MOZART-specified (same grid as atmos)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"MOZART-specified (same grid as atmos)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "CLM4.0", - "native_nominal_resolution": "250 km" + "land":{ + "description":"CLM4.0", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "BEC (same grid as ocean)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"BEC (same grid as ocean)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE4 (same as grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4 (same as grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2011", - "source_id": "CESM1-WACCM-SC" + "release_year":"2011", + "source_id":"CESM1-WACCM-SC" }, - "CESM2": { - "activity_participation": [ + "CESM2":{ + "activity_participation":[ "AerChemMIP", "C4MIP", "CDRMIP", @@ -1353,239 +1353,239 @@ "VIACSAB", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NCAR" ], - "label": "CESM2", - "label_extended": "CESM2", - "license_info": { - "exceptions_contact": "@ucar.edu <- cesm_cmip6", - "history": "2019-02-18: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CESM2", + "label_extended":"CESM2", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-02-18: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM4 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "CAM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"CAM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "MAM4 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "CLM5 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM5 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "CISM2.1", - "native_nominal_resolution": "5 km" + "landIce":{ + "description":"CISM2.1", + "native_nominal_resolution":"5 km" }, - "ocean": { - "description": "POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "MARBL (same grid as ocean)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"MARBL (same grid as ocean)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE5.1 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE5.1 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2018", - "source_id": "CESM2" + "release_year":"2018", + "source_id":"CESM2" }, - "CESM2-FV2": { - "activity_participation": [ + "CESM2-FV2":{ + "activity_participation":[ "CMIP", "PMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NCAR" ], - "label": "CESM2-FV2", - "label_extended": "CESM2-FV2", - "license_info": { - "exceptions_contact": "@ucar.edu <- cesm_cmip6", - "history": "2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CESM2-FV2", + "label_extended":"CESM2-FV2", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM4 (same grid as atmos)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "CAM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 32 levels; top level 2.25 mb)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"CAM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 32 levels; top level 2.25 mb)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "MAM4 (same grid as atmos)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "CLM5 (same grid as atmos)", - "native_nominal_resolution": "250 km" + "land":{ + "description":"CLM5 (same grid as atmos)", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "CISM2.1", - "native_nominal_resolution": "5 km" + "landIce":{ + "description":"CISM2.1", + "native_nominal_resolution":"5 km" }, - "ocean": { - "description": "POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "MARBL (same grid as ocean)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"MARBL (same grid as ocean)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE5.1 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE5.1 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "CESM2-FV2" + "release_year":"2019", + "source_id":"CESM2-FV2" }, - "CESM2-WACCM": { - "activity_participation": [ + "CESM2-WACCM":{ + "activity_participation":[ "AerChemMIP", "CMIP", "GeoMIP", "RFMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NCAR" ], - "label": "CESM2-WACCM", - "label_extended": "CESM2-WACCM", - "license_info": { - "exceptions_contact": "@ucar.edu <- cesm_cmip6", - "history": "2019-02-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CESM2-WACCM", + "label_extended":"CESM2-WACCM", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-02-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM4 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "WACCM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 70 levels; top level 4.5e-06 mb)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"WACCM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 70 levels; top level 4.5e-06 mb)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "MAM4 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "CLM5 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM5 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "CISM2.1", - "native_nominal_resolution": "5 km" + "landIce":{ + "description":"CISM2.1", + "native_nominal_resolution":"5 km" }, - "ocean": { - "description": "POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "MARBL (same grid as ocean)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"MARBL (same grid as ocean)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE5.1 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE5.1 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2018", - "source_id": "CESM2-WACCM" + "release_year":"2018", + "source_id":"CESM2-WACCM" }, - "CESM2-WACCM-FV2": { - "activity_participation": [ + "CESM2-WACCM-FV2":{ + "activity_participation":[ "CMIP", "PMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NCAR" ], - "label": "CESM2-WACCM-FV2", - "label_extended": "CESM2-WACCM-FV2", - "license_info": { - "exceptions_contact": "@ucar.edu <- cesm_cmip6", - "history": "2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CESM2-WACCM-FV2", + "label_extended":"CESM2-WACCM-FV2", + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM4 (same grid as atmos)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "WACCM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 70 levels; top level 4.5e-06 mb)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"WACCM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 70 levels; top level 4.5e-06 mb)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "MAM4 (same grid as atmos)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"MAM4 (same grid as atmos)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "CLM5 (same grid as atmos)", - "native_nominal_resolution": "250 km" + "land":{ + "description":"CLM5 (same grid as atmos)", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "CISM2.1", - "native_nominal_resolution": "5 km" + "landIce":{ + "description":"CISM2.1", + "native_nominal_resolution":"5 km" }, - "ocean": { - "description": "POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "MARBL (same grid as ocean)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"MARBL (same grid as ocean)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE5.1 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE5.1 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "CESM2-WACCM-FV2" + "release_year":"2019", + "source_id":"CESM2-WACCM-FV2" }, - "CIESM": { - "activity_participation": [ + "CIESM":{ + "activity_participation":[ "CFMIP", "CMIP", "CORDEX", @@ -1595,120 +1595,120 @@ "SIMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "THU" ], - "label": "CIESM", - "label_extended": "Community Integrated Earth System Model", - "license_info": { - "exceptions_contact": "@tsinghua.edu.cn <- yanluan", - "history": "2019-12-02: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CIESM", + "label_extended":"Community Integrated Earth System Model", + "license_info":{ + "exceptions_contact":"@tsinghua.edu.cn <- yanluan", + "history":"2019-12-02: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM4", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM4", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "CIESM-AM (FV/FD; 288 x 192 longitude/latitude; 30 levels; top level 2.255 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"CIESM-AM (FV/FD; 288 x 192 longitude/latitude; 30 levels; top level 2.255 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "trop_mam4", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"trop_mam4", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "CIESM-LM (modified CLM4.5)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CIESM-LM (modified CLM4.5)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "CIESM-OM (FD, SCCGrid Displaced Pole; 720 x 560 longitude/latitude; 46 levels; top grid cell 0-6 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"CIESM-OM (FD, SCCGrid Displaced Pole; 720 x 560 longitude/latitude; 46 levels; top grid cell 0-6 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE4", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"CICE4", + "native_nominal_resolution":"50 km" } }, - "release_year": "2017", - "source_id": "CIESM" + "release_year":"2017", + "source_id":"CIESM" }, - "CMCC-CM2-HR4": { - "activity_participation": [ + "CMCC-CM2-HR4":{ + "activity_participation":[ "CMIP", "HighResMIP", "OMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CMCC" ], - "label": "CMCC-CM2-HR4", - "label_extended": "CMCC-CM2-HR4", - "license_info": { - "exceptions_contact": "@cmcc.it <- silvio.gualdi", - "history": "2017-07-06: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CMCC-CM2-HR4", + "label_extended":"CMCC-CM2-HR4", + "license_info":{ + "exceptions_contact":"@cmcc.it <- silvio.gualdi", + "history":"2017-07-06: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "prescribed MACv2-SP", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"prescribed MACv2-SP", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "CAM4 (1deg; 288 x 192 longitude/latitude; 26 levels; top at ~2 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"CAM4 (1deg; 288 x 192 longitude/latitude; 26 levels; top at ~2 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CLM4.5 (SP mode)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM4.5 (SP mode)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE4.0", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"25 km" } }, - "release_year": "2016", - "source_id": "CMCC-CM2-HR4" + "release_year":"2016", + "source_id":"CMCC-CM2-HR4" }, - "CMCC-CM2-SR5": { - "activity_participation": [ + "CMCC-CM2-SR5":{ + "activity_participation":[ "AerChemMIP", "CMIP", "DAMIP", @@ -1717,119 +1717,119 @@ "OMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CMCC" ], - "label": "CMCC-CM2-SR5", - "label_extended": "CMCC-CM2-SR5", - "license_info": { - "exceptions_contact": "@cmcc.it <- silvio.gualdi", - "history": "2020-02-26: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CMCC-CM2-SR5", + "label_extended":"CMCC-CM2-SR5", + "license_info":{ + "exceptions_contact":"@cmcc.it <- silvio.gualdi", + "history":"2020-02-26: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM3", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM3", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CLM4.5 (BGC mode)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM4.5 (BGC mode)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE4.0", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"100 km" } }, - "release_year": "2016", - "source_id": "CMCC-CM2-SR5" + "release_year":"2016", + "source_id":"CMCC-CM2-SR5" }, - "CMCC-CM2-VHR4": { - "activity_participation": [ + "CMCC-CM2-VHR4":{ + "activity_participation":[ "CMIP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CMCC" ], - "label": "CMCC-CM2-VHR4", - "label_extended": "CMCC-CM2-VHR4", - "license_info": { - "exceptions_contact": "@cmcc.it <- enrico.scoccimarro", - "history": "2017-09-27: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CMCC-CM2-VHR4", + "label_extended":"CMCC-CM2-VHR4", + "license_info":{ + "exceptions_contact":"@cmcc.it <- enrico.scoccimarro", + "history":"2017-09-27: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "prescribed MACv2-SP", - "native_nominal_resolution": "25 km" + "model_component":{ + "aerosol":{ + "description":"prescribed MACv2-SP", + "native_nominal_resolution":"25 km" }, - "atmos": { - "description": "CAM4 (1/4deg; 1152 x 768 longitude/latitude; 26 levels; top at ~2 hPa)", - "native_nominal_resolution": "25 km" + "atmos":{ + "description":"CAM4 (1/4deg; 1152 x 768 longitude/latitude; 26 levels; top at ~2 hPa)", + "native_nominal_resolution":"25 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CLM4.5 (SP mode)", - "native_nominal_resolution": "25 km" + "land":{ + "description":"CLM4.5 (SP mode)", + "native_nominal_resolution":"25 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE4.0", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"25 km" } }, - "release_year": "2017", - "source_id": "CMCC-CM2-VHR4" + "release_year":"2017", + "source_id":"CMCC-CM2-VHR4" }, - "CMCC-ESM2": { - "activity_participation": [ + "CMCC-ESM2":{ + "activity_participation":[ "C4MIP", "CMIP", "LS3MIP", @@ -1837,61 +1837,61 @@ "OMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CMCC" ], - "label": "CMCC-ESM2", - "label_extended": "CMCC-ESM2", - "license_info": { - "exceptions_contact": "@cmcc.it <- tomas.lovato", - "history": "2020-02-03: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CMCC-ESM2", + "label_extended":"CMCC-ESM2", + "license_info":{ + "exceptions_contact":"@cmcc.it <- tomas.lovato", + "history":"2020-02-03: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM3", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM3", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CLM4.5 (BGC mode)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM4.5 (BGC mode)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "BFM5.2", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"BFM5.2", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE4.0", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"100 km" } }, - "release_year": "2017", - "source_id": "CMCC-ESM2" + "release_year":"2017", + "source_id":"CMCC-ESM2" }, - "CNRM-CM6-1": { - "activity_participation": [ + "CNRM-CM6-1":{ + "activity_participation":[ "CFMIP", "CMIP", "DAMIP", @@ -1907,61 +1907,61 @@ "RFMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CNRM-CERFACS" ], - "label": "CNRM-CM6-1", - "label_extended": "CNRM-CM6-1", - "license_info": { - "exceptions_contact": "@cerfacs.fr <- contact.cmip6", - "history": "2018-06-26: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CNRM-CM6-1", + "label_extended":"CNRM-CM6-1", + "license_info":{ + "exceptions_contact":"@cerfacs.fr <- contact.cmip6", + "history":"2018-06-26: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "prescribed monthly fields computed by TACTIC_v2 scheme", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"prescribed monthly fields computed by TACTIC_v2 scheme", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "OZL_v2", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"OZL_v2", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "Surfex 8.0c", - "native_nominal_resolution": "250 km" + "land":{ + "description":"Surfex 8.0c", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "Gelato 6.1", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"Gelato 6.1", + "native_nominal_resolution":"100 km" } }, - "release_year": "2017", - "source_id": "CNRM-CM6-1" + "release_year":"2017", + "source_id":"CNRM-CM6-1" }, - "CNRM-CM6-1-HR": { - "activity_participation": [ + "CNRM-CM6-1-HR":{ + "activity_participation":[ "CMIP", "DCPP", "GMMIP", @@ -1969,61 +1969,61 @@ "OMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CNRM-CERFACS" ], - "label": "CNRM-CM6-1-HR", - "label_extended": "CNRM-CM6-1-HR", - "license_info": { - "exceptions_contact": "@cerfacs.fr <- contact.cmip6", - "history": "2019-02-21: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CNRM-CM6-1-HR", + "label_extended":"CNRM-CM6-1-HR", + "license_info":{ + "exceptions_contact":"@cerfacs.fr <- contact.cmip6", + "history":"2019-02-21: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "prescribed monthly fields computed by TACTIC_v2 scheme", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"prescribed monthly fields computed by TACTIC_v2 scheme", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "Arpege 6.3 (T359; Gaussian Reduced with 181724 grid points in total distributed over 360 latitude circles (with 720 grid points per latitude circle between 32.2degN and 32.2degS reducing to 18 grid points per latitude circle at 89.6degN and 89.6degS); 91 levels; top level 78.4 km)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"Arpege 6.3 (T359; Gaussian Reduced with 181724 grid points in total distributed over 360 latitude circles (with 720 grid points per latitude circle between 32.2degN and 32.2degS reducing to 18 grid points per latitude circle at 89.6degN and 89.6degS); 91 levels; top level 78.4 km)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "OZL_v2", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"OZL_v2", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "Surfex 8.0c", - "native_nominal_resolution": "100 km" + "land":{ + "description":"Surfex 8.0c", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "Nemo 3.6 (eORCA025, tripolar primarily 1/4deg; 1442 x 1050 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"Nemo 3.6 (eORCA025, tripolar primarily 1/4deg; 1442 x 1050 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "Gelato 6.1", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"Gelato 6.1", + "native_nominal_resolution":"25 km" } }, - "release_year": "2017", - "source_id": "CNRM-CM6-1-HR" + "release_year":"2017", + "source_id":"CNRM-CM6-1-HR" }, - "CNRM-ESM2-1": { - "activity_participation": [ + "CNRM-ESM2-1":{ + "activity_participation":[ "AerChemMIP", "C4MIP", "CDRMIP", @@ -2038,61 +2038,61 @@ "RFMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CNRM-CERFACS" ], - "label": "CNRM-ESM2-1", - "label_extended": "CNRM-ESM2-1", - "license_info": { - "exceptions_contact": "@meteo.fr <- contact.cmip", - "history": "2018-09-14: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CNRM-ESM2-1", + "label_extended":"CNRM-ESM2-1", + "license_info":{ + "exceptions_contact":"@meteo.fr <- contact.cmip", + "history":"2018-09-14: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "TACTIC_v2", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"TACTIC_v2", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "REPROBUS-C_v2", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"REPROBUS-C_v2", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "Surfex 8.0c", - "native_nominal_resolution": "250 km" + "land":{ + "description":"Surfex 8.0c", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "Pisces 2.s", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"Pisces 2.s", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "Gelato 6.1", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"Gelato 6.1", + "native_nominal_resolution":"100 km" } }, - "release_year": "2017", - "source_id": "CNRM-ESM2-1" + "release_year":"2017", + "source_id":"CNRM-ESM2-1" }, - "CanESM5": { - "activity_participation": [ + "CanESM5":{ + "activity_participation":[ "C4MIP", "CDRMIP", "CFMIP", @@ -2115,61 +2115,61 @@ "VIACSAB", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CCCma" ], - "label": "CanESM5", - "label_extended": "CanESM5", - "license_info": { - "exceptions_contact": "@ec.gc.ca <- f.cccma.info-info.ccmac.f", - "history": "2019-03-06: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CanESM5", + "label_extended":"CanESM5", + "license_info":{ + "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", + "history":"2019-03-06: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "interactive", - "native_nominal_resolution": "500 km" + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"500 km" }, - "atmos": { - "description": "CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", - "native_nominal_resolution": "500 km" + "atmos":{ + "description":"CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", + "native_nominal_resolution":"500 km" }, - "atmosChem": { - "description": "specified oxidants for aerosols", - "native_nominal_resolution": "500 km" + "atmosChem":{ + "description":"specified oxidants for aerosols", + "native_nominal_resolution":"500 km" }, - "land": { - "description": "CLASS3.6/CTEM1.2", - "native_nominal_resolution": "500 km" + "land":{ + "description":"CLASS3.6/CTEM1.2", + "native_nominal_resolution":"500 km" }, - "landIce": { - "description": "specified ice sheets", - "native_nominal_resolution": "500 km" + "landIce":{ + "description":"specified ice sheets", + "native_nominal_resolution":"500 km" }, - "ocean": { - "description": "NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "LIM2", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"LIM2", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "CanESM5" + "release_year":"2019", + "source_id":"CanESM5" }, - "CanESM5-1": { - "activity_participation": [ + "CanESM5-1":{ + "activity_participation":[ "C4MIP", "CDRMIP", "CFMIP", @@ -2192,482 +2192,482 @@ "VIACSAB", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CCCma" ], - "label": "CanESM5.1", - "label_extended": "CanESM5.1", - "license_info": { - "exceptions_contact": "@ec.gc.ca <- f.cccma.info-info.ccmac.f", - "history": "2022-12-02: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CanESM5.1", + "label_extended":"CanESM5.1", + "license_info":{ + "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", + "history":"2022-12-02: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "interactive", - "native_nominal_resolution": "500 km" + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"500 km" }, - "atmos": { - "description": "CanAM5.1 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", - "native_nominal_resolution": "500 km" + "atmos":{ + "description":"CanAM5.1 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", + "native_nominal_resolution":"500 km" }, - "atmosChem": { - "description": "specified oxidants for aerosols", - "native_nominal_resolution": "500 km" + "atmosChem":{ + "description":"specified oxidants for aerosols", + "native_nominal_resolution":"500 km" }, - "land": { - "description": "CLASS3.6/CTEM1.2", - "native_nominal_resolution": "500 km" + "land":{ + "description":"CLASS3.6/CTEM1.2", + "native_nominal_resolution":"500 km" }, - "landIce": { - "description": "specified ice sheets", - "native_nominal_resolution": "500 km" + "landIce":{ + "description":"specified ice sheets", + "native_nominal_resolution":"500 km" }, - "ocean": { - "description": "NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "LIM2", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"LIM2", + "native_nominal_resolution":"100 km" } }, - "release_year": "2022", - "source_id": "CanESM5-1" + "release_year":"2022", + "source_id":"CanESM5-1" }, - "CanESM5-CanOE": { - "activity_participation": [ + "CanESM5-CanOE":{ + "activity_participation":[ "C4MIP", "CDRMIP", "CMIP", "OMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CCCma" ], - "label": "CanESM5-CanOE", - "label_extended": "CanESM5-CanOE", - "license_info": { - "exceptions_contact": "@ec.gc.ca <- f.cccma.info-info.ccmac.f", - "history": "2019-04-29: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"CanESM5-CanOE", + "label_extended":"CanESM5-CanOE", + "license_info":{ + "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", + "history":"2019-04-29: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "interactive", - "native_nominal_resolution": "500 km" + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"500 km" }, - "atmos": { - "description": "CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", - "native_nominal_resolution": "500 km" + "atmos":{ + "description":"CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", + "native_nominal_resolution":"500 km" }, - "atmosChem": { - "description": "specified oxidants for aerosols", - "native_nominal_resolution": "500 km" + "atmosChem":{ + "description":"specified oxidants for aerosols", + "native_nominal_resolution":"500 km" }, - "land": { - "description": "CLASS3.6/CTEM1.2", - "native_nominal_resolution": "500 km" + "land":{ + "description":"CLASS3.6/CTEM1.2", + "native_nominal_resolution":"500 km" }, - "landIce": { - "description": "specified ice sheets", - "native_nominal_resolution": "500 km" + "landIce":{ + "description":"specified ice sheets", + "native_nominal_resolution":"500 km" }, - "ocean": { - "description": "NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "Canadian Ocean Ecosystem (CanOE) with OMIP prescribed carbon chemistry", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"Canadian Ocean Ecosystem (CanOE) with OMIP prescribed carbon chemistry", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "LIM2", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"LIM2", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "CanESM5-CanOE" + "release_year":"2019", + "source_id":"CanESM5-CanOE" }, - "E3SM-1-0": { - "activity_participation": [ + "E3SM-1-0":{ + "activity_participation":[ "CFMIP", "CMIP", "DAMIP", "PAMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "E3SM-Project", "LLNL", "UCI", "UCSB" ], - "label": "E3SM 1.0", - "label_extended": "E3SM 1.0 (Energy Exascale Earth System Model)", - "license_info": { - "exceptions_contact": "@llnl.gov <- e3sm-data-support", - "history": "2019-02-06: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"E3SM 1.0", + "label_extended":"E3SM 1.0 (Energy Exascale Earth System Model)", + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2019-02-06: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "EAM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"EAM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "ELM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; satellite phenology mode), MOSART (v1.0, 0.5 degree latitude/longitude grid)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"ELM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; satellite phenology mode), MOSART (v1.0, 0.5 degree latitude/longitude grid)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "MPAS-Seaice (v6.0, same grid as ocean)", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"MPAS-Seaice (v6.0, same grid as ocean)", + "native_nominal_resolution":"50 km" } }, - "release_year": "2018", - "source_id": "E3SM-1-0" + "release_year":"2018", + "source_id":"E3SM-1-0" }, - "E3SM-1-1": { - "activity_participation": [ + "E3SM-1-1":{ + "activity_participation":[ "C4MIP", "CMIP", "DAMIP", "LS3MIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "E3SM-Project", "RUBISCO" ], - "label": "E3SM 1.1", - "label_extended": "E3SM 1.1 (Energy Exascale Earth System Model)", - "license_info": { - "exceptions_contact": "@llnl.gov <- e3sm-data-support", - "history": "2019-10-29: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"E3SM 1.1", + "label_extended":"E3SM 1.1 (Energy Exascale Earth System Model)", + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2019-10-29: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "ELM (v1.1, same grid as atmos; active biogeochemistry using the Converging Trophic Cascade plant and soil carbon and nutrient mechanisms to represent carbon, nitrogen and phosphorus cycles), MOSART (v1.1, 0.5 degree latitude/longitude grid)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"ELM (v1.1, same grid as atmos; active biogeochemistry using the Converging Trophic Cascade plant and soil carbon and nutrient mechanisms to represent carbon, nitrogen and phosphorus cycles), MOSART (v1.1, 0.5 degree latitude/longitude grid)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)", - "native_nominal_resolution": "50 km" + "ocnBgchem":{ + "description":"BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)", + "native_nominal_resolution":"50 km" }, - "seaIce": { - "description": "MPAS-Seaice (v6.0; same grid as ocean)", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"MPAS-Seaice (v6.0; same grid as ocean)", + "native_nominal_resolution":"50 km" } }, - "release_year": "2019", - "source_id": "E3SM-1-1" + "release_year":"2019", + "source_id":"E3SM-1-1" }, - "E3SM-1-1-ECA": { - "activity_participation": [ + "E3SM-1-1-ECA":{ + "activity_participation":[ "C4MIP", "CMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "E3SM-Project" ], - "label": "E3SM 1.1 ECA", - "label_extended": "E3SM 1.1 (Energy Exascale Earth System Model) with an experimental land BGC ECA configuration", - "license_info": { - "exceptions_contact": "@llnl.gov <- e3sm-data-support", - "history": "2019-12-16: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"E3SM 1.1 ECA", + "label_extended":"E3SM 1.1 (Energy Exascale Earth System Model) with an experimental land BGC ECA configuration", + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2019-12-16: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "ELM (v1.1, same as atmos; active biogeochemistry using the Equilibrium Chemistry Approximation to represent plant and soil carbon and nutrient mechanisms especially carbon, nitrogen and phosphorus limitation), MOSART (v1.1, 0.5 degree latitude/longitude grid)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"ELM (v1.1, same as atmos; active biogeochemistry using the Equilibrium Chemistry Approximation to represent plant and soil carbon and nutrient mechanisms especially carbon, nitrogen and phosphorus limitation), MOSART (v1.1, 0.5 degree latitude/longitude grid)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)", - "native_nominal_resolution": "50 km" + "ocnBgchem":{ + "description":"BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)", + "native_nominal_resolution":"50 km" }, - "seaIce": { - "description": "MPAS-Seaice (v6.0; same grid as ocean)", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"MPAS-Seaice (v6.0; same grid as ocean)", + "native_nominal_resolution":"50 km" } }, - "release_year": "2019", - "source_id": "E3SM-1-1-ECA" + "release_year":"2019", + "source_id":"E3SM-1-1-ECA" }, - "E3SM-2-0": { - "activity_participation": [ + "E3SM-2-0":{ + "activity_participation":[ "CFMIP", "CMIP", "DAMIP", "RFMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "E3SM-Project" ], - "label": "E3SM 2.0", - "label_extended": "E3SM 2.0 (Energy Exascale Earth System Model)", - "license_info": { - "exceptions_contact": "@llnl.gov <- e3sm-data-support", - "history": "2022-08-23: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"E3SM 2.0", + "label_extended":"E3SM 2.0 (Energy Exascale Earth System Model)", + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2022-08-23: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM4 with new resuspension, marine organics, secondary organics, and dust (atmos grid)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM4 with new resuspension, marine organics, secondary organics, and dust (atmos grid)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "EAM (v2.0, cubed sphere spectral-element grid; 5400 elements, 30x30 per cube face. Dynamics: degree 3 (p=3) polynomials within each spectral element, 112 km average resolution. Physics: 2x2 finite volume cells within each spectral element, 1.5 degree (168 km) average grid spacing; 72 vertical layers; top level 60 km)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"EAM (v2.0, cubed sphere spectral-element grid; 5400 elements, 30x30 per cube face. Dynamics: degree 3 (p=3) polynomials within each spectral element, 112 km average resolution. Physics: 2x2 finite volume cells within each spectral element, 1.5 degree (168 km) average grid spacing; 72 vertical layers; top level 60 km)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos grid)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos grid)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "ELM (v1.0, satellite phenology mode, atmos grid), MOSART (v1.0, 0.5 degree latitude/longitude)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"ELM (v1.0, satellite phenology mode, atmos grid), MOSART (v1.0, 0.5 degree latitude/longitude)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MPAS-Ocean (E3SMv2.0, EC30to60E2r2 unstructured SVTs mesh with 236853 cells, 719506 edges, variable resolution 60 to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"MPAS-Ocean (E3SMv2.0, EC30to60E2r2 unstructured SVTs mesh with 236853 cells, 719506 edges, variable resolution 60 to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "MPAS-Seaice (E3SMv2.0, ocean grid; 5 ice categories; 7 ice, 5 snow layers)", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"MPAS-Seaice (E3SMv2.0, ocean grid; 5 ice categories; 7 ice, 5 snow layers)", + "native_nominal_resolution":"50 km" } }, - "release_year": "2022", - "source_id": "E3SM-2-0" + "release_year":"2022", + "source_id":"E3SM-2-0" }, - "E3SM-2-0-NARRM": { - "activity_participation": [ + "E3SM-2-0-NARRM":{ + "activity_participation":[ "CMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "E3SM-Project" ], - "label": "E3SM 2.0 NARRM", - "label_extended": "E3SM 2.0 NARRM (Energy Exascale Earth System Model version 2.0 North American Regionally Refined Model)", - "license_info": { - "exceptions_contact": "@llnl.gov <- e3sm-data-support", - "history": "2023-04-26: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"E3SM 2.0 NARRM", + "label_extended":"E3SM 2.0 NARRM (Energy Exascale Earth System Model version 2.0 North American Regionally Refined Model)", + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2023-04-26: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM4 w/ new resuspension, marine organics, secondary organics, and dust (atmos grid)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM4 w/ new resuspension, marine organics, secondary organics, and dust (atmos grid)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "EAM (v2.0, Dynamics: cubed sphere spectral-element grid, 130,088 columns; Physics: 2x2 finite volume cells within each spectral element, 57,816 columns. N. American (NA): 25 to 100 km; outside ~100 km. 72 vertical layers w/ top at 60 km)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"EAM (v2.0, Dynamics: cubed sphere spectral-element grid, 130,088 columns; Physics: 2x2 finite volume cells within each spectral element, 57,816 columns. N. American (NA): 25 to 100 km; outside ~100 km. 72 vertical layers w/ top at 60 km)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos grid)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos grid)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "ELM (v1.0, satellite phenology mode, atmos grid), MOSART (v1.0, 0.125 degree latitude/longitude)", - "native_nominal_resolution": "10 km" + "land":{ + "description":"ELM (v1.0, satellite phenology mode, atmos grid), MOSART (v1.0, 0.125 degree latitude/longitude)", + "native_nominal_resolution":"10 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MPAS-Ocean (E3SMv2.0, WC14to60E2r5 unstructured SCVTs mesh with 407420 cells, 1240672 edges, NA: ~14 km; outside: 30 to 60 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"MPAS-Ocean (E3SMv2.0, WC14to60E2r5 unstructured SCVTs mesh with 407420 cells, 1240672 edges, NA: ~14 km; outside: 30 to 60 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "MPAS-Seaice (E3SMv2.0, ocean grid, variable resolution 30 to 60 km; 5 ice categories; 7 ice, 5 snow layers)", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"MPAS-Seaice (E3SMv2.0, ocean grid, variable resolution 30 to 60 km; 5 ice categories; 7 ice, 5 snow layers)", + "native_nominal_resolution":"50 km" } }, - "release_year": "2022", - "source_id": "E3SM-2-0-NARRM" + "release_year":"2022", + "source_id":"E3SM-2-0-NARRM" }, - "E3SM-2-1": { - "activity_participation": [ + "E3SM-2-1":{ + "activity_participation":[ "CMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "E3SM-Project" ], - "label": "E3SM 2.1", - "label_extended": "E3SM 2.1 (Energy Exascale Earth System Model)", - "license_info": { - "exceptions_contact": "@llnl.gov <- e3sm-data-support", - "history": "2024-02-05: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"E3SM 2.1", + "label_extended":"E3SM 2.1 (Energy Exascale Earth System Model)", + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2024-02-05: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM4 w/ new resuspension, marine organics, secondary organics, and dust (atmos physics grid)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM4 w/ new resuspension, marine organics, secondary organics, and dust (atmos physics grid)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "EAM (E3SMv2.1, cubed sphere spectral-element; 5400 els., 30x30 per cube face. Dynamics: degree 3 (p=3) polynomials within each spectral els., 112 km ave. resolution. Physics: 2x2 finite volume cells within each spectral els., 1.5 degree (168 km) average grid spacing; 72 vertical layers w/ top at 60 km)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"EAM (E3SMv2.1, cubed sphere spectral-element; 5400 els., 30x30 per cube face. Dynamics: degree 3 (p=3) polynomials within each spectral els., 112 km ave. resolution. Physics: 2x2 finite volume cells within each spectral els., 1.5 degree (168 km) average grid spacing; 72 vertical layers w/ top at 60 km)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos physics grid)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos physics grid)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "ELM (E3SMv2.1, atmos physics grid, satellite phenology mode), MOSART (E3SMv2.1, 0.5 deg lat/lon grid)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"ELM (E3SMv2.1, atmos physics grid, satellite phenology mode), MOSART (E3SMv2.1, 0.5 deg lat/lon grid)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MPAS-Ocean (E3SMv2.1, EC30to60E2r2 unstructured SVTs mesh with 236853 cells and 719506 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"MPAS-Ocean (E3SMv2.1, EC30to60E2r2 unstructured SVTs mesh with 236853 cells and 719506 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "MPAS-Seaice (E3SMv2.1, MPAS-Ocean grid; 5 ice categories, 7 ice layers, 5 snow layers)", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"MPAS-Seaice (E3SMv2.1, MPAS-Ocean grid; 5 ice categories, 7 ice layers, 5 snow layers)", + "native_nominal_resolution":"50 km" } }, - "release_year": "2024", - "source_id": "E3SM-2-1" + "release_year":"2024", + "source_id":"E3SM-2-1" }, - "EC-Earth3": { - "activity_participation": [ + "EC-Earth3":{ + "activity_participation":[ "CMIP", "CORDEX", "DAMIP", @@ -2683,121 +2683,121 @@ "VIACSAB", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "EC-Earth-Consortium" ], - "label": "EC-Earth3", - "label_extended": "EC Earth 3.3", - "license_info": { - "exceptions_contact": "@ec-earth.org <- cmip6-data", - "history": "2019-04-05: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"EC-Earth3", + "label_extended":"EC Earth 3.3", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2019-04-05: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "LIM3", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "EC-Earth3" + "release_year":"2019", + "source_id":"EC-Earth3" }, - "EC-Earth3-AerChem": { - "activity_participation": [ + "EC-Earth3-AerChem":{ + "activity_participation":[ "AerChemMIP", "CMIP", "RFMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "EC-Earth-Consortium" ], - "label": "EC-Earth3-AerChem", - "label_extended": "EC-Earth3-AerChem", - "license_info": { - "exceptions_contact": "@ec-earth.org <- cmip6-data", - "history": "2020-06-22: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"EC-Earth3-AerChem", + "label_extended":"EC-Earth3-AerChem", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2020-06-22: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "LIM3", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "EC-Earth3-AerChem" + "release_year":"2019", + "source_id":"EC-Earth3-AerChem" }, - "EC-Earth3-CC": { - "activity_participation": [ + "EC-Earth3-CC":{ + "activity_participation":[ "C4MIP", "CDRMIP", "CMIP", @@ -2806,61 +2806,61 @@ "OMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "EC-Earth-Consortium" ], - "label": "EC-Earth3-CC", - "label_extended": "EC-Earth3-CC", - "license_info": { - "exceptions_contact": "@ec-earth.org <- cmip6-data", - "history": "2020-12-29: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"EC-Earth3-CC", + "label_extended":"EC-Earth3-CC", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2020-12-29: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", - "native_nominal_resolution": "100 km" + "land":{ + "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "PISCES v2", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"PISCES v2", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "LIM3", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "EC-Earth3-CC" + "release_year":"2019", + "source_id":"EC-Earth3-CC" }, - "EC-Earth3-ESM-1": { - "activity_participation": [ + "EC-Earth3-ESM-1":{ + "activity_participation":[ "C4MIP", "CDRMIP", "CMIP", @@ -2869,178 +2869,178 @@ "OMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "EC-Earth-Consortium" ], - "label": "EC-Earth3-ESM-1", - "label_extended": "EC-Earth3-ESM-1", - "license_info": { - "exceptions_contact": "@ec-earth.org <- cmip6-data", - "history": "2024-09-25: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"EC-Earth3-ESM-1", + "label_extended":"EC-Earth3-ESM-1", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2024-09-25: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa) and co2box v1.0 (CO2 box model; global grid)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa) and co2box v1.0 (CO2 box model; global grid)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4.1.2 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4.1.2 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "PISM v1.2 (5 km x 5 km for Greenland, 31 levels)", - "native_nominal_resolution": "5 km" + "landIce":{ + "description":"PISM v1.2 (5 km x 5 km for Greenland, 31 levels)", + "native_nominal_resolution":"5 km" }, - "ocean": { - "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m) and MWE v1.0 (Melt Water Emulator; same grid as ocean for Antarctic surroundings)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m) and MWE v1.0 (Melt Water Emulator; same grid as ocean for Antarctic surroundings)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "PISCES v2 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"PISCES v2 (same grid as ocean)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "LIM3 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"LIM3 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2024", - "source_id": "EC-Earth3-ESM-1" + "release_year":"2024", + "source_id":"EC-Earth3-ESM-1" }, - "EC-Earth3-HR": { - "activity_participation": [ + "EC-Earth3-HR":{ + "activity_participation":[ "CMIP", "DCPP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "EC-Earth-Consortium" ], - "label": "EC-Earth3-HR", - "label_extended": "EC-Earth3-HR", - "license_info": { - "exceptions_contact": "@ec-earth.org <- cmip6-data", - "history": "2022-06-27: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"EC-Earth3-HR", + "label_extended":"EC-Earth3-HR", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2022-06-27: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution": "50 km" + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA025 tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"NEMO3.6 (ORCA025 tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "LIM3", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"25 km" } }, - "release_year": "2019", - "source_id": "EC-Earth3-HR" + "release_year":"2019", + "source_id":"EC-Earth3-HR" }, - "EC-Earth3-LR": { - "activity_participation": [ + "EC-Earth3-LR":{ + "activity_participation":[ "CMIP", "PMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "EC-Earth-Consortium" ], - "label": "EC-Earth3-LR", - "label_extended": "EC-Earth3-LR", - "license_info": { - "exceptions_contact": "@ec-earth.org <- cmip6-data", - "history": "2019-01-03: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"EC-Earth3-LR", + "label_extended":"EC-Earth3-LR", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2019-01-03: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution": "250 km" + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "LIM3", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "EC-Earth3-LR" + "release_year":"2019", + "source_id":"EC-Earth3-LR" }, - "EC-Earth3-Veg": { - "activity_participation": [ + "EC-Earth3-Veg":{ + "activity_participation":[ "CDRMIP", "CMIP", "CORDEX", @@ -3049,522 +3049,522 @@ "PMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "EC-Earth-Consortium" ], - "label": "EC-Earth3-Veg", - "label_extended": "EC-Earth3-Veg", - "license_info": { - "exceptions_contact": "@ec-earth.org <- cmip6-data", - "history": "2019-04-10: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"EC-Earth3-Veg", + "label_extended":"EC-Earth3-Veg", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2019-04-10: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", - "native_nominal_resolution": "100 km" + "land":{ + "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "LIM3", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "EC-Earth3-Veg" + "release_year":"2019", + "source_id":"EC-Earth3-Veg" }, - "EC-Earth3-Veg-LR": { - "activity_participation": [ + "EC-Earth3-Veg-LR":{ + "activity_participation":[ "CMIP", "PMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "EC-Earth-Consortium" ], - "label": "EC-Earth3-Veg-LR", - "label_extended": "EC-Earth3-Veg-LR", - "license_info": { - "exceptions_contact": "@ec-earth.org <- cmip6-data", - "history": "2020-02-13: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"EC-Earth3-Veg-LR", + "label_extended":"EC-Earth3-Veg-LR", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2020-02-13: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", - "native_nominal_resolution": "250 km" + "land":{ + "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "LIM3", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "EC-Earth3-Veg-LR" + "release_year":"2019", + "source_id":"EC-Earth3-Veg-LR" }, - "EC-Earth3P": { - "activity_participation": [ + "EC-Earth3P":{ + "activity_participation":[ "CMIP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "EC-Earth-Consortium" ], - "label": "EC-Earth3P", - "label_extended": "EC-Earth 3.2 in PRIMAVERA", - "license_info": { - "exceptions_contact": "@ec-earth.org <- cmip6-data", - "history": "2017-09-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"EC-Earth3P", + "label_extended":"EC-Earth 3.2 in PRIMAVERA", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2017-09-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "LIM3", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"100 km" } }, - "release_year": "2017", - "source_id": "EC-Earth3P" + "release_year":"2017", + "source_id":"EC-Earth3P" }, - "EC-Earth3P-HR": { - "activity_participation": [ + "EC-Earth3P-HR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "EC-Earth-Consortium" ], - "label": "EC-Earth3P-HR", - "label_extended": "EC-Earth3P-HR in PRIMAVERA", - "license_info": { - "exceptions_contact": "@ec-earth.org <- cmip6-data", - "history": "2017-08-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"EC-Earth3P-HR", + "label_extended":"EC-Earth3P-HR in PRIMAVERA", + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2017-08-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution": "50 km" + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA025; tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"NEMO3.6 (ORCA025; tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "LIM3", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"25 km" } }, - "release_year": "2017", - "source_id": "EC-Earth3P-HR" + "release_year":"2017", + "source_id":"EC-Earth3P-HR" }, - "EC-Earth3P-VHR": { - "activity_participation": [ + "EC-Earth3P-VHR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "EC-Earth-Consortium" ], - "label": "EC-Earth3P-VHR", - "label_extended": "EC-Earth3P-VHR in PRIMAVERA", - "license_info": { - "exceptions_contact": "@bsc.es <- pierre-antoine.bretonniere", - "history": "2020-10-07: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"EC-Earth3P-VHR", + "label_extended":"EC-Earth3P-VHR in PRIMAVERA", + "license_info":{ + "exceptions_contact":"@bsc.es <- pierre-antoine.bretonniere", + "history":"2020-10-07: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "IFS cy36r4 (TL1279, linearly reduced Gaussian grid equivalent to 2560 x 1280 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution": "25 km" + "atmos":{ + "description":"IFS cy36r4 (TL1279, linearly reduced Gaussian grid equivalent to 2560 x 1280 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"25 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution": "25 km" + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "native_nominal_resolution":"25 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.6 (ORCA012 tripolar primarily 0.08 degrees; 4322 x 3059 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "10 km" + "ocean":{ + "description":"NEMO3.6 (ORCA012 tripolar primarily 0.08 degrees; 4322 x 3059 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"10 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "LIM3", - "native_nominal_resolution": "10 km" + "seaIce":{ + "description":"LIM3", + "native_nominal_resolution":"10 km" } }, - "release_year": "2017", - "source_id": "EC-Earth3P-VHR" + "release_year":"2017", + "source_id":"EC-Earth3P-VHR" }, - "ECMWF-IFS-HR": { - "activity_participation": [ + "ECMWF-IFS-HR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "ECMWF" ], - "label": "ECMWF-IFS-HR", - "label_extended": "ECMWF-IFS-HR (25 km atmosphere and 25 km ocean)", - "license_info": { - "exceptions_contact": "@ecmwf.int <- christopher.roberts", - "history": "2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"ECMWF-IFS-HR", + "label_extended":"ECMWF-IFS-HR (25 km atmosphere and 25 km ocean)", + "license_info":{ + "exceptions_contact":"@ecmwf.int <- christopher.roberts", + "history":"2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "IFS (IFS CY43R1, Tco399, cubic octahedral reduced Gaussian grid equivalent to 1600 x 800 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution": "25 km" + "atmos":{ + "description":"IFS (IFS CY43R1, Tco399, cubic octahedral reduced Gaussian grid equivalent to 1600 x 800 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"25 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "HTESSEL (as implemented in IFS CY43R1)", - "native_nominal_resolution": "25 km" + "land":{ + "description":"HTESSEL (as implemented in IFS CY43R1)", + "native_nominal_resolution":"25 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", + "native_nominal_resolution":"25 km" } }, - "release_year": "2017", - "source_id": "ECMWF-IFS-HR" + "release_year":"2017", + "source_id":"ECMWF-IFS-HR" }, - "ECMWF-IFS-LR": { - "activity_participation": [ + "ECMWF-IFS-LR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "ECMWF" ], - "label": "ECMWF-IFS-LR", - "label_extended": "ECMWF-IFS-LR (50 km atmosphere and 100 km ocean)", - "license_info": { - "exceptions_contact": "@ecmwf.int <- christopher.roberts", - "history": "2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"ECMWF-IFS-LR", + "label_extended":"ECMWF-IFS-LR (50 km atmosphere and 100 km ocean)", + "license_info":{ + "exceptions_contact":"@ecmwf.int <- christopher.roberts", + "history":"2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "HTESSEL (as implemented in IFS CY43R1)", - "native_nominal_resolution": "50 km" + "land":{ + "description":"HTESSEL (as implemented in IFS CY43R1)", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.4 (NEMO v3.4; ORCA1 tripolar grid; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO3.4 (NEMO v3.4; ORCA1 tripolar grid; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "LIM2 (LIM v2; ORCA1 tripolar grid; 362 x 292 longitude/latitude)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"LIM2 (LIM v2; ORCA1 tripolar grid; 362 x 292 longitude/latitude)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2017", - "source_id": "ECMWF-IFS-LR" + "release_year":"2017", + "source_id":"ECMWF-IFS-LR" }, - "ECMWF-IFS-MR": { - "activity_participation": [ + "ECMWF-IFS-MR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "ECMWF" ], - "label": "ECMWF-IFS-MR", - "label_extended": "ECMWF-IFS-MR (50 km atmosphere and 25 km ocean)", - "license_info": { - "exceptions_contact": "@ecmwf.int <- christopher.roberts", - "history": "2018-11-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"ECMWF-IFS-MR", + "label_extended":"ECMWF-IFS-MR (50 km atmosphere and 25 km ocean)", + "license_info":{ + "exceptions_contact":"@ecmwf.int <- christopher.roberts", + "history":"2018-11-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "HTESSEL (as implemented in IFS CY43R1)", - "native_nominal_resolution": "50 km" + "land":{ + "description":"HTESSEL (as implemented in IFS CY43R1)", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", + "native_nominal_resolution":"25 km" } }, - "release_year": "2017", - "source_id": "ECMWF-IFS-MR" + "release_year":"2017", + "source_id":"ECMWF-IFS-MR" }, - "FGOALS-f3-H": { - "activity_participation": [ + "FGOALS-f3-H":{ + "activity_participation":[ "CMIP", "HighResMIP", "OMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CAS" ], - "label": "FGOALS-f3-H", - "label_extended": "FGOALS-f3-H", - "license_info": { - "exceptions_contact": "@mail.iap.ac.cn <- linpf", - "history": "2019-08-16: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"FGOALS-f3-H", + "label_extended":"FGOALS-f3-H", + "license_info":{ + "exceptions_contact":"@mail.iap.ac.cn <- linpf", + "history":"2019-08-16: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "FAMIL2.2 (Cubed-sphere, c384; 1440 x 720 longitude/latitude; 32 levels; top level 2.16 hPa)", - "native_nominal_resolution": "25 km" + "atmos":{ + "description":"FAMIL2.2 (Cubed-sphere, c384; 1440 x 720 longitude/latitude; 32 levels; top level 2.16 hPa)", + "native_nominal_resolution":"25 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CLM4.0", - "native_nominal_resolution": "25 km" + "land":{ + "description":"CLM4.0", + "native_nominal_resolution":"25 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "LICOM3.0 (LICOM3.0, tripolar primarily 0.1deg; 3600 x 2302 longitude/latitude; 55 levels; top grid cell 0-5 m)", - "native_nominal_resolution": "10 km" + "ocean":{ + "description":"LICOM3.0 (LICOM3.0, tripolar primarily 0.1deg; 3600 x 2302 longitude/latitude; 55 levels; top grid cell 0-5 m)", + "native_nominal_resolution":"10 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE4.0", - "native_nominal_resolution": "10 km" + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"10 km" } }, - "release_year": "2017", - "source_id": "FGOALS-f3-H" + "release_year":"2017", + "source_id":"FGOALS-f3-H" }, - "FGOALS-f3-L": { - "activity_participation": [ + "FGOALS-f3-L":{ + "activity_participation":[ "CMIP", "DCPP", "GMMIP", @@ -3575,61 +3575,61 @@ "SIMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CAS" ], - "label": "FGOALS-f3-L", - "label_extended": "FGOALS-f3-L", - "license_info": { - "exceptions_contact": "@mail.iap.ac.cn <- linpf", - "history": "2018-11-08: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"FGOALS-f3-L", + "label_extended":"FGOALS-f3-L", + "license_info":{ + "exceptions_contact":"@mail.iap.ac.cn <- linpf", + "history":"2018-11-08: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "FAMIL2.2 (Cubed-sphere, c96; 360 x 180 longitude/latitude; 32 levels; top level 2.16 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"FAMIL2.2 (Cubed-sphere, c96; 360 x 180 longitude/latitude; 32 levels; top level 2.16 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CLM4.0", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM4.0", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE4.0", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"100 km" } }, - "release_year": "2017", - "source_id": "FGOALS-f3-L" + "release_year":"2017", + "source_id":"FGOALS-f3-L" }, - "FGOALS-g3": { - "activity_participation": [ + "FGOALS-g3":{ + "activity_participation":[ "CMIP", "CORDEX", "DAMIP", @@ -3642,61 +3642,61 @@ "SIMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CAS" ], - "label": "FGOALS-g3", - "label_extended": "FGOALS-g3", - "license_info": { - "exceptions_contact": "@mail.iap.ac.cn <- linpf", - "history": "2019-08-18: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"FGOALS-g3", + "label_extended":"FGOALS-g3", + "license_info":{ + "exceptions_contact":"@mail.iap.ac.cn <- linpf", + "history":"2019-08-18: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "GAMIL3 (180 x 80 longitude/latitude; 26 levels; top level 2.19hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"GAMIL3 (180 x 80 longitude/latitude; 26 levels; top level 2.19hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CAS-LSM", - "native_nominal_resolution": "250 km" + "land":{ + "description":"CAS-LSM", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE4.0", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"100 km" } }, - "release_year": "2017", - "source_id": "FGOALS-g3" + "release_year":"2017", + "source_id":"FGOALS-g3" }, - "FIO-ESM-2-0": { - "activity_participation": [ + "FIO-ESM-2-0":{ + "activity_participation":[ "CMIP", "DCPP", "GMMIP", @@ -3704,118 +3704,118 @@ "ScenarioMIP", "SIMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "FIO-QLNM" ], - "label": "FIO-ESM 2.0", - "label_extended": "FIO-ESM 2.0", - "license_info": { - "exceptions_contact": "@fio.org.cn <- songroy", - "history": "2019-09-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"FIO-ESM 2.0", + "label_extended":"FIO-ESM 2.0", + "license_info":{ + "exceptions_contact":"@fio.org.cn <- songroy", + "history":"2019-09-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "Prescribed monthly fields", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"Prescribed monthly fields", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "CAM4 (0.9x1.25 finite volume grid; 192 x 288 longitude/latitude; 26 levels; top level ~2 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"CAM4 (0.9x1.25 finite volume grid; 192 x 288 longitude/latitude; 26 levels; top level ~2 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CLM4.0 (same grid at atmos)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM4.0 (same grid at atmos)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "POP2-W (POP2 coupled with MASNUM surface wave model, Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"POP2-W (POP2 coupled with MASNUM surface wave model, Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE4.0 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4.0 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2018", - "source_id": "FIO-ESM-2-0" + "release_year":"2018", + "source_id":"FIO-ESM-2-0" }, - "GFDL-AM4": { - "activity_participation": [ + "GFDL-AM4":{ + "activity_participation":[ "CMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NOAA-GFDL" ], - "label": "GFDL-AM4", - "label_extended": "GFDL-AM4", - "license_info": { - "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", - "history": "2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"GFDL-AM4", + "label_extended":"GFDL-AM4", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "interactive", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "GFDL-AM4.0 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"GFDL-AM4.0 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "fast chemistry, aerosol only", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"fast chemistry, aerosol only", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "GFDL-LM4.0", - "native_nominal_resolution": "100 km" + "land":{ + "description":"GFDL-LM4.0", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "GFDL-LM4.0", - "native_nominal_resolution": "100 km" + "landIce":{ + "description":"GFDL-LM4.0", + "native_nominal_resolution":"100 km" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2018", - "source_id": "GFDL-AM4" + "release_year":"2018", + "source_id":"GFDL-AM4" }, - "GFDL-CM4": { - "activity_participation": [ + "GFDL-CM4":{ + "activity_participation":[ "CFMIP", "CMIP", "DAMIP", @@ -3826,175 +3826,175 @@ "RFMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NOAA-GFDL" ], - "label": "GFDL-CM4", - "label_extended": "GFDL-CM4", - "license_info": { - "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", - "history": "2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"GFDL-CM4", + "label_extended":"GFDL-CM4", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "interactive", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "GFDL-AM4.0.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"GFDL-AM4.0.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "fast chemistry, aerosol only", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"fast chemistry, aerosol only", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "GFDL-LM4.0.1 (1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 20 levels; bottom level 10m); land-Veg:unnamed (dynamic vegetation, dynamic land use); land-Hydro:unnamed (soil water and ice, multi-layer snow, rivers and lakes)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"GFDL-LM4.0.1 (1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 20 levels; bottom level 10m); land-Veg:unnamed (dynamic vegetation, dynamic land use); land-Hydro:unnamed (soil water and ice, multi-layer snow, rivers and lakes)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "GFDL-LM4.0.1", - "native_nominal_resolution": "100 km" + "landIce":{ + "description":"GFDL-LM4.0.1", + "native_nominal_resolution":"100 km" }, - "ocean": { - "description": "GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "GFDL-BLINGv2", - "native_nominal_resolution": "25 km" + "ocnBgchem":{ + "description":"GFDL-BLINGv2", + "native_nominal_resolution":"25 km" }, - "seaIce": { - "description": "GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)", + "native_nominal_resolution":"25 km" } }, - "release_year": "2018", - "source_id": "GFDL-CM4" + "release_year":"2018", + "source_id":"GFDL-CM4" }, - "GFDL-CM4C192": { - "activity_participation": [ + "GFDL-CM4C192":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NOAA-GFDL" ], - "label": "GFDL-CM4C192", - "label_extended": "GFDL-CM4C192", - "license_info": { - "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", - "history": "2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"GFDL-CM4C192", + "label_extended":"GFDL-CM4C192", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "interactive", - "native_nominal_resolution": "50 km" + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"50 km" }, - "atmos": { - "description": "GFDL-AM4C192 (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 720 x 360 longitude/latitude; 33 levels; top level 1 hPa)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"GFDL-AM4C192 (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 720 x 360 longitude/latitude; 33 levels; top level 1 hPa)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "fast chemistry, aerosol only", - "native_nominal_resolution": "50 km" + "atmosChem":{ + "description":"fast chemistry, aerosol only", + "native_nominal_resolution":"50 km" }, - "land": { - "description": "GFDL-LM4.0.1", - "native_nominal_resolution": "50 km" + "land":{ + "description":"GFDL-LM4.0.1", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "GFDL-LM4.0.1", - "native_nominal_resolution": "50 km" + "landIce":{ + "description":"GFDL-LM4.0.1", + "native_nominal_resolution":"50 km" }, - "ocean": { - "description": "GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)", + "native_nominal_resolution":"25 km" } }, - "release_year": "2018", - "source_id": "GFDL-CM4C192" + "release_year":"2018", + "source_id":"GFDL-CM4C192" }, - "GFDL-ESM2M": { - "activity_participation": [ + "GFDL-ESM2M":{ + "activity_participation":[ "FAFMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NOAA-GFDL" ], - "label": "GFDL-ESM2M", - "label_extended": "GFDL-ESM2M", - "license_info": { - "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", - "history": "2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"GFDL-ESM2M", + "label_extended":"GFDL-ESM2M", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "prescribed", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"prescribed", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "GFDL-AM2 (144 x 90 longitude/latitude; 24 levels; top level 1 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"GFDL-AM2 (144 x 90 longitude/latitude; 24 levels; top level 1 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "prescribed", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"prescribed", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "GFDL-LM3.0", - "native_nominal_resolution": "250 km" + "land":{ + "description":"GFDL-LM3.0", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "GFDL-LM3.0", - "native_nominal_resolution": "250 km" + "landIce":{ + "description":"GFDL-LM3.0", + "native_nominal_resolution":"250 km" }, - "ocean": { - "description": "GFDL-MOM4p1 (tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"GFDL-MOM4p1 (tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "GFDL-TOPAZ2", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"GFDL-TOPAZ2", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "GFDL-SIM2 (GFDL-SIS, tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 3 layers; 5 thickness categories)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"GFDL-SIM2 (GFDL-SIS, tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 3 layers; 5 thickness categories)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2012", - "source_id": "GFDL-ESM2M" + "release_year":"2012", + "source_id":"GFDL-ESM2M" }, - "GFDL-ESM4": { - "activity_participation": [ + "GFDL-ESM4":{ + "activity_participation":[ "AerChemMIP", "C4MIP", "CDRMIP", @@ -4006,232 +4006,232 @@ "RFMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NOAA-GFDL" ], - "label": "GFDL-ESM4", - "label_extended": "GFDL-ESM4", - "license_info": { - "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", - "history": "2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"GFDL-ESM4", + "label_extended":"GFDL-ESM4", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "interactive", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"interactive", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "GFDL-AM4.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 49 levels; top level 1 Pa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"GFDL-AM4.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 49 levels; top level 1 Pa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "GFDL-ATMCHEM4.1 (full atmospheric chemistry)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"GFDL-ATMCHEM4.1 (full atmospheric chemistry)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "GFDL-LM4.1", - "native_nominal_resolution": "100 km" + "land":{ + "description":"GFDL-LM4.1", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "GFDL-LM4.1", - "native_nominal_resolution": "100 km" + "landIce":{ + "description":"GFDL-LM4.1", + "native_nominal_resolution":"100 km" }, - "ocean": { - "description": "GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "GFDL-COBALTv2", - "native_nominal_resolution": "50 km" + "ocnBgchem":{ + "description":"GFDL-COBALTv2", + "native_nominal_resolution":"50 km" }, - "seaIce": { - "description": "GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)", + "native_nominal_resolution":"50 km" } }, - "release_year": "2018", - "source_id": "GFDL-ESM4" + "release_year":"2018", + "source_id":"GFDL-ESM4" }, - "GFDL-GRTCODE": { - "activity_participation": [ + "GFDL-GRTCODE":{ + "activity_participation":[ "RFMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NOAA-GFDL" ], - "label": "GFDL-GRTCODE", - "label_extended": "GFDL GPU radiative transfer code with two stream solver (March 2019)", - "license_info": { - "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", - "history": "2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"GFDL-GRTCODE", + "label_extended":"GFDL GPU radiative transfer code with two stream solver (March 2019)", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "none", - "native_nominal_resolution": "none" + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "none", - "native_nominal_resolution": "none" + "land":{ + "description":"none", + "native_nominal_resolution":"none" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2019", - "source_id": "GFDL-GRTCODE" + "release_year":"2019", + "source_id":"GFDL-GRTCODE" }, - "GFDL-OM4p5B": { - "activity_participation": [ + "GFDL-OM4p5B":{ + "activity_participation":[ "OMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NOAA-GFDL" ], - "label": "GFDL-OM4p5B", - "label_extended": "GFDL-OM4p5B", - "license_info": { - "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", - "history": "2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"GFDL-OM4p5B", + "label_extended":"GFDL-OM4p5B", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "none", - "native_nominal_resolution": "none" + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "none", - "native_nominal_resolution": "none" + "land":{ + "description":"none", + "native_nominal_resolution":"none" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "GFDL-BLINGv2", - "native_nominal_resolution": "50 km" + "ocnBgchem":{ + "description":"GFDL-BLINGv2", + "native_nominal_resolution":"50 km" }, - "seaIce": { - "description": "GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)", + "native_nominal_resolution":"50 km" } }, - "release_year": "2018", - "source_id": "GFDL-OM4p5B" + "release_year":"2018", + "source_id":"GFDL-OM4p5B" }, - "GFDL-RFM-DISORT": { - "activity_participation": [ + "GFDL-RFM-DISORT":{ + "activity_participation":[ "RFMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NOAA-GFDL" ], - "label": "GFDL-RFM-DISORT", - "label_extended": "GFDL Reference Forward Model Line-by-Line with DISORT solver (March 2019)", - "license_info": { - "exceptions_contact": "@noaa.gov <- gfdl.climate.model.info", - "history": "2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"GFDL-RFM-DISORT", + "label_extended":"GFDL Reference Forward Model Line-by-Line with DISORT solver (March 2019)", + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "none", - "native_nominal_resolution": "none" + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "none", - "native_nominal_resolution": "none" + "land":{ + "description":"none", + "native_nominal_resolution":"none" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2019", - "source_id": "GFDL-RFM-DISORT" + "release_year":"2019", + "source_id":"GFDL-RFM-DISORT" }, - "GISS-E2-1-G": { - "activity_participation": [ + "GISS-E2-1-G":{ + "activity_participation":[ "AerChemMIP", "C4MIP", "CFMIP", @@ -4252,120 +4252,120 @@ "VIACSAB", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NASA-GISS" ], - "label": "GISS-E2.1G", - "label_extended": "GISS-E2.1G", - "license_info": { - "exceptions_contact": "@lists.nasa.gov <- cmip-giss-l", - "history": "2018-08-21: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id": "CC0 1.0", - "license": "Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info": "https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url": "https://creativecommons.org/publicdomain/zero/1.0/" + "label":"GISS-E2.1G", + "label_extended":"GISS-E2.1G", + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2018-08-21: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" }, - "model_component": { - "aerosol": { - "description": "Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "GISS LSM", - "native_nominal_resolution": "250 km" + "land":{ + "description":"GISS LSM", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "GISS SI", - "native_nominal_resolution": "250 km" + "seaIce":{ + "description":"GISS SI", + "native_nominal_resolution":"250 km" } }, - "release_year": "2019", - "source_id": "GISS-E2-1-G" + "release_year":"2019", + "source_id":"GISS-E2-1-G" }, - "GISS-E2-1-G-CC": { - "activity_participation": [ + "GISS-E2-1-G-CC":{ + "activity_participation":[ "C4MIP", "CMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NASA-GISS" ], - "label": "GISS-E2-1-G-CC", - "label_extended": "GISS-E2-1-G-CC", - "license_info": { - "exceptions_contact": "@lists.nasa.gov <- cmip-giss-l", - "history": "2019-03-25: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id": "CC0 1.0", - "license": "Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info": "https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url": "https://creativecommons.org/publicdomain/zero/1.0/" + "label":"GISS-E2-1-G-CC", + "label_extended":"GISS-E2-1-G-CC", + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2019-03-25: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" }, - "model_component": { - "aerosol": { - "description": "varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "GISS-E2.1 (2 x 2.5 degrees; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"GISS-E2.1 (2 x 2.5 degrees; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "GISS LSM", - "native_nominal_resolution": "250 km" + "land":{ + "description":"GISS LSM", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "Fixed", - "native_nominal_resolution": "250 km" + "landIce":{ + "description":"Fixed", + "native_nominal_resolution":"250 km" }, - "ocean": { - "description": "GISS Ocean (1 deg; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"GISS Ocean (1 deg; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "NOBM (NASA Ocean Biogeochemistry Model; same grid as ocean)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"NOBM (NASA Ocean Biogeochemistry Model; same grid as ocean)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "GISS SI (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"GISS SI (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "GISS-E2-1-G-CC" + "release_year":"2019", + "source_id":"GISS-E2-1-G-CC" }, - "GISS-E2-1-H": { - "activity_participation": [ + "GISS-E2-1-H":{ + "activity_participation":[ "AerChemMIP", "CFMIP", "CMIP", @@ -4374,61 +4374,61 @@ "SIMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NASA-GISS" ], - "label": "GISS-E2.1H", - "label_extended": "GISS-E2.1H", - "license_info": { - "exceptions_contact": "@lists.nasa.gov <- cmip-giss-l", - "history": "2018-08-24: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id": "CC0 1.0", - "license": "Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info": "https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url": "https://creativecommons.org/publicdomain/zero/1.0/" + "label":"GISS-E2.1H", + "label_extended":"GISS-E2.1H", + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2018-08-24: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" }, - "model_component": { - "aerosol": { - "description": "Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "GISS LSM", - "native_nominal_resolution": "250 km" + "land":{ + "description":"GISS LSM", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 33 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 33 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "GISS SI", - "native_nominal_resolution": "250 km" + "seaIce":{ + "description":"GISS SI", + "native_nominal_resolution":"250 km" } }, - "release_year": "2019", - "source_id": "GISS-E2-1-H" + "release_year":"2019", + "source_id":"GISS-E2-1-H" }, - "GISS-E2-2-G": { - "activity_participation": [ + "GISS-E2-2-G":{ + "activity_participation":[ "AerChemMIP", "CFMIP", "CMIP", @@ -4448,121 +4448,121 @@ "VIACSAB", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NASA-GISS" ], - "label": "GISS-E2-2-G", - "label_extended": "GISS-E2-2-G", - "license_info": { - "exceptions_contact": "@lists.nasa.gov <- cmip-giss-l", - "history": "2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id": "CC0 1.0", - "license": "Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info": "https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url": "https://creativecommons.org/publicdomain/zero/1.0/" + "label":"GISS-E2-2-G", + "label_extended":"GISS-E2-2-G", + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" }, - "model_component": { - "aerosol": { - "description": "varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "GISS-E2.2 (High-top, 2 x 2.5 degrees; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"GISS-E2.2 (High-top, 2 x 2.5 degrees; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "GISS LSM", - "native_nominal_resolution": "250 km" + "land":{ + "description":"GISS LSM", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "Fixed", - "native_nominal_resolution": "250 km" + "landIce":{ + "description":"Fixed", + "native_nominal_resolution":"250 km" }, - "ocean": { - "description": "GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "GISS SI", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"GISS SI", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "GISS-E2-2-G" + "release_year":"2019", + "source_id":"GISS-E2-2-G" }, - "GISS-E2-2-H": { - "activity_participation": [ + "GISS-E2-2-H":{ + "activity_participation":[ "CFMIP", "CMIP", "SIMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NASA-GISS" ], - "label": "GISS-E2.2H", - "label_extended": "GISS-E2.2H", - "license_info": { - "exceptions_contact": "@lists.nasa.gov <- cmip-giss-l", - "history": "2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id": "CC0 1.0", - "license": "Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info": "https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url": "https://creativecommons.org/publicdomain/zero/1.0/" + "label":"GISS-E2.2H", + "label_extended":"GISS-E2.2H", + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" }, - "model_component": { - "aerosol": { - "description": "Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "GISS-E2.2 (High Top, 2.5x2 degree; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"GISS-E2.2 (High Top, 2.5x2 degree; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "GISS LSM", - "native_nominal_resolution": "250 km" + "land":{ + "description":"GISS LSM", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 33 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 33 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "GISS SI (same grid as atmos)", - "native_nominal_resolution": "250 km" + "seaIce":{ + "description":"GISS SI (same grid as atmos)", + "native_nominal_resolution":"250 km" } }, - "release_year": "2021", - "source_id": "GISS-E2-2-H" + "release_year":"2021", + "source_id":"GISS-E2-2-H" }, - "GISS-E3-G": { - "activity_participation": [ + "GISS-E3-G":{ + "activity_participation":[ "AerChemMIP", "C4MIP", "CFMIP", @@ -4583,179 +4583,179 @@ "VIACSAB", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NASA-GISS" ], - "label": "GISS-E3-G", - "label_extended": "GISS-E3-G", - "license_info": { - "exceptions_contact": "@lists.nasa.gov <- cmip-giss-l", - "history": "2019-12-30: initially published under CC BY-NC-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id": "CC0 1.0", - "license": "Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info": "https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url": "https://creativecommons.org/publicdomain/zero/1.0/" + "label":"GISS-E3-G", + "label_extended":"GISS-E3-G", + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2019-12-30: initially published under CC BY-NC-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" }, - "model_component": { - "aerosol": { - "description": "Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "GISS-E3 (Cubed sphere, C90; 90 x 90 x 6 gridboxes/cubeface, grid resolution aligns with longitude/latitude along central lines for each cubeface; 102 levels; top level 0.002 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"GISS-E3 (Cubed sphere, C90; 90 x 90 x 6 gridboxes/cubeface, grid resolution aligns with longitude/latitude along central lines for each cubeface; 102 levels; top level 0.002 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "GISS LSM", - "native_nominal_resolution": "100 km" + "land":{ + "description":"GISS LSM", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "GISS Ocean (1 degree; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"GISS Ocean (1 degree; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "GISS SI", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"GISS SI", + "native_nominal_resolution":"100 km" } }, - "release_year": "2020", - "source_id": "GISS-E3-G" + "release_year":"2020", + "source_id":"GISS-E3-G" }, - "HadGEM3-GC31-HH": { - "activity_participation": [ + "HadGEM3-GC31-HH":{ + "activity_participation":[ "CMIP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MOHC", "NERC" ], - "label": "HadGEM3-GC31-HH", - "label_extended": "HadGEM3-GC3.1-N512ORCA12", - "license_info": { - "exceptions_contact": "@metoffice.gov.uk <- cmip6.hadgem3", - "history": "2018-09-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"HadGEM3-GC31-HH", + "label_extended":"HadGEM3-GC3.1-N512ORCA12", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2018-09-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "UKCA-GLOMAP-mode", - "native_nominal_resolution": "50 km" + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"50 km" }, - "atmos": { - "description": "MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JULES-HadGEM3-GL7.1", - "native_nominal_resolution": "50 km" + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "10 km" + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"10 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", - "native_nominal_resolution": "10 km" + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", + "native_nominal_resolution":"10 km" } }, - "release_year": "2016", - "source_id": "HadGEM3-GC31-HH" + "release_year":"2016", + "source_id":"HadGEM3-GC31-HH" }, - "HadGEM3-GC31-HM": { - "activity_participation": [ + "HadGEM3-GC31-HM":{ + "activity_participation":[ "CMIP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MOHC", "NERC" ], - "label": "HadGEM3-GC31-HM", - "label_extended": "HadGEM3-GC3.1-N512ORCA025", - "license_info": { - "exceptions_contact": "@metoffice.gov.uk <- cmip6.hadgem3", - "history": "2017-08-31: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"HadGEM3-GC31-HM", + "label_extended":"HadGEM3-GC3.1-N512ORCA025", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-08-31: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "UKCA-GLOMAP-mode", - "native_nominal_resolution": "50 km" + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"50 km" }, - "atmos": { - "description": "MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JULES-HadGEM3-GL7.1", - "native_nominal_resolution": "50 km" + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", + "native_nominal_resolution":"25 km" } }, - "release_year": "2016", - "source_id": "HadGEM3-GC31-HM" + "release_year":"2016", + "source_id":"HadGEM3-GC31-HM" }, - "HadGEM3-GC31-LL": { - "activity_participation": [ + "HadGEM3-GC31-LL":{ + "activity_participation":[ "CFMIP", "CMIP", "DAMIP", @@ -4767,178 +4767,178 @@ "RFMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MOHC", "NERC" ], - "label": "HadGEM3-GC31-LL", - "label_extended": "HadGEM3-GC3.1-N96ORCA1", - "license_info": { - "exceptions_contact": "@metoffice.gov.uk <- cmip6.hadgem3", - "history": "2017-09-21: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"HadGEM3-GC31-LL", + "label_extended":"HadGEM3-GC3.1-N96ORCA1", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-09-21: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "UKCA-GLOMAP-mode", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JULES-HadGEM3-GL7.1", - "native_nominal_resolution": "250 km" + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2016", - "source_id": "HadGEM3-GC31-LL" + "release_year":"2016", + "source_id":"HadGEM3-GC31-LL" }, - "HadGEM3-GC31-LM": { - "activity_participation": [ + "HadGEM3-GC31-LM":{ + "activity_participation":[ "CMIP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MOHC" ], - "label": "HadGEM3-GC31-LM", - "label_extended": "HadGEM3-GC3.1-N96ORCA025", - "license_info": { - "exceptions_contact": "@metoffice.gov.uk <- cmip6.hadgem3", - "history": "2017-09-06: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"HadGEM3-GC31-LM", + "label_extended":"HadGEM3-GC3.1-N96ORCA025", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-09-06: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "UKCA-GLOMAP-mode", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JULES-HadGEM3-GL7.1", - "native_nominal_resolution": "250 km" + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", + "native_nominal_resolution":"25 km" } }, - "release_year": "2016", - "source_id": "HadGEM3-GC31-LM" + "release_year":"2016", + "source_id":"HadGEM3-GC31-LM" }, - "HadGEM3-GC31-MH": { - "activity_participation": [ + "HadGEM3-GC31-MH":{ + "activity_participation":[ "CMIP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MOHC" ], - "label": "HadGEM3-GC31-MH", - "label_extended": "HadGEM3-GC3.1-N216ORCA12", - "license_info": { - "exceptions_contact": "@metoffice.gov.uk <- cmip6.hadgem3", - "history": "2017-12-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"HadGEM3-GC31-MH", + "label_extended":"HadGEM3-GC3.1-N216ORCA12", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-12-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "UKCA-GLOMAP-mode", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JULES-HadGEM3-GL7.1", - "native_nominal_resolution": "100 km" + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "10 km" + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"10 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", - "native_nominal_resolution": "10 km" + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", + "native_nominal_resolution":"10 km" } }, - "release_year": "2016", - "source_id": "HadGEM3-GC31-MH" + "release_year":"2016", + "source_id":"HadGEM3-GC31-MH" }, - "HadGEM3-GC31-MM": { - "activity_participation": [ + "HadGEM3-GC31-MM":{ + "activity_participation":[ "CMIP", "DCPP", "GMMIP", @@ -4948,869 +4948,869 @@ "PAMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MOHC" ], - "label": "HadGEM3-GC31-MM", - "label_extended": "HadGEM3-GC3.1-N216ORCA025", - "license_info": { - "exceptions_contact": "@metoffice.gov.uk <- cmip6.hadgem3", - "history": "2017-08-18: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"HadGEM3-GC31-MM", + "label_extended":"HadGEM3-GC3.1-N216ORCA025", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-08-18: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "UKCA-GLOMAP-mode", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JULES-HadGEM3-GL7.1", - "native_nominal_resolution": "100 km" + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", + "native_nominal_resolution":"25 km" } }, - "release_year": "2016", - "source_id": "HadGEM3-GC31-MM" + "release_year":"2016", + "source_id":"HadGEM3-GC31-MM" }, - "HiRAM-SIT-HR": { - "activity_participation": [ + "HiRAM-SIT-HR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "AS-RCEC" ], - "label": "HiRAM-SIT-HR", - "label_extended": "HiRAM Coupling 1-D SIT (25 km atmosphere and 25 km ocean)", - "license_info": { - "exceptions_contact": "@gate.sinica.edu.tw <- cytu", - "history": "2020-12-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"HiRAM-SIT-HR", + "label_extended":"HiRAM Coupling 1-D SIT (25 km atmosphere and 25 km ocean)", + "license_info":{ + "exceptions_contact":"@gate.sinica.edu.tw <- cytu", + "history":"2020-12-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "GFDL-HiRAM (Cubed-sphere (c384) - 0.25 degree nominal horizontal resolution; 1536 x 768 longitude/latitude; 32 levels; top level 1 hPa)", - "native_nominal_resolution": "25 km" + "atmos":{ + "description":"GFDL-HiRAM (Cubed-sphere (c384) - 0.25 degree nominal horizontal resolution; 1536 x 768 longitude/latitude; 32 levels; top level 1 hPa)", + "native_nominal_resolution":"25 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "GFDL-LM3 (same grid as atmos)", - "native_nominal_resolution": "25 km" + "land":{ + "description":"GFDL-LM3 (same grid as atmos)", + "native_nominal_resolution":"25 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2018", - "source_id": "HiRAM-SIT-HR" + "release_year":"2018", + "source_id":"HiRAM-SIT-HR" }, - "HiRAM-SIT-LR": { - "activity_participation": [ + "HiRAM-SIT-LR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "AS-RCEC" ], - "label": "HiRAM-SIT-LR", - "label_extended": "HiRAM Coupling 1-D SIT (50 km atmosphere and 25 km ocean)", - "license_info": { - "exceptions_contact": "@gate.sinica.edu.tw <- cytu", - "history": "2020-12-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"HiRAM-SIT-LR", + "label_extended":"HiRAM Coupling 1-D SIT (50 km atmosphere and 25 km ocean)", + "license_info":{ + "exceptions_contact":"@gate.sinica.edu.tw <- cytu", + "history":"2020-12-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "GFDL-HiRAM (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 768 x 384 longitude/latitude; 32 levels; top level 1 hPa)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"GFDL-HiRAM (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 768 x 384 longitude/latitude; 32 levels; top level 1 hPa)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "GFDL-LM3 (same grid as atmos)", - "native_nominal_resolution": "50 km" + "land":{ + "description":"GFDL-LM3 (same grid as atmos)", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)", - "native_nominal_resolution": "25 km" + "ocean":{ + "description":"SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)", + "native_nominal_resolution":"25 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2018", - "source_id": "HiRAM-SIT-LR" + "release_year":"2018", + "source_id":"HiRAM-SIT-LR" }, - "ICON-ESM-LR": { - "activity_participation": [ + "ICON-ESM-LR":{ + "activity_participation":[ "CMIP", "OMIP", "SIMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MPI-M" ], - "label": "ICON-ESM-LR", - "label_extended": "ICON-ESM-LR", - "license_info": { - "exceptions_contact": "@dkrz.de <- cmip6-mpi-esm", - "history": "2021-02-15: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"ICON-ESM-LR", + "label_extended":"ICON-ESM-LR", + "license_info":{ + "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", + "history":"2021-02-15: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none, prescribed MACv2-SP", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "ICON-A (icosahedral/triangles; 160 km; 47 levels; top level 80 km)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"ICON-A (icosahedral/triangles; 160 km; 47 levels; top level 80 km)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JSBACH4.20", - "native_nominal_resolution": "250 km" + "land":{ + "description":"JSBACH4.20", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none/prescribed", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none/prescribed", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "ICON-O (icosahedral/triangles; 40 km; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"ICON-O (icosahedral/triangles; 40 km; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "HAMOCC", - "native_nominal_resolution": "50 km" + "ocnBgchem":{ + "description":"HAMOCC", + "native_nominal_resolution":"50 km" }, - "seaIce": { - "description": "unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution":"50 km" } }, - "release_year": "2017", - "source_id": "ICON-ESM-LR" + "release_year":"2017", + "source_id":"ICON-ESM-LR" }, - "IITM-ESM": { - "activity_participation": [ + "IITM-ESM":{ + "activity_participation":[ "CMIP", "GMMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "CCCR-IITM" ], - "label": "IITM-ESM", - "label_extended": "IITM-ESM", - "license_info": { - "exceptions_contact": "@tropmet.res.in <- iitm-esm", - "history": "2019-07-19: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"IITM-ESM", + "label_extended":"IITM-ESM", + "license_info":{ + "exceptions_contact":"@tropmet.res.in <- iitm-esm", + "history":"2019-07-19: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "prescribed MAC-v2", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"prescribed MAC-v2", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "IITM-GFSv1 (T62L64, Linearly Reduced Gaussian Grid; 192 x 94 longitude/latitude; 64 levels; top level 0.2 mb)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"IITM-GFSv1 (T62L64, Linearly Reduced Gaussian Grid; 192 x 94 longitude/latitude; 64 levels; top level 0.2 mb)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "NOAH LSMv2.7.1", - "native_nominal_resolution": "250 km" + "land":{ + "description":"NOAH LSMv2.7.1", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MOM4p1 (tripolar, primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"MOM4p1 (tripolar, primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "TOPAZv2.0", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"TOPAZv2.0", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "SISv1.0", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"SISv1.0", + "native_nominal_resolution":"100 km" } }, - "release_year": "2015", - "source_id": "IITM-ESM" + "release_year":"2015", + "source_id":"IITM-ESM" }, - "INM-CM4-8": { - "activity_participation": [ + "INM-CM4-8":{ + "activity_participation":[ "CMIP", "PMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "INM" ], - "label": "INM-CM4-8", - "label_extended": "INM-CM4-8", - "license_info": { - "exceptions_contact": "@gmail.com <- volodinev", - "history": "2019-05-28: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"INM-CM4-8", + "label_extended":"INM-CM4-8", + "license_info":{ + "exceptions_contact":"@gmail.com <- volodinev", + "history":"2019-05-28: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "INM-AER1", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"INM-AER1", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "INM-AM4-8 (2x1.5; 180 x 120 longitude/latitude; 21 levels; top level sigma = 0.01)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"INM-AM4-8 (2x1.5; 180 x 120 longitude/latitude; 21 levels; top level sigma = 0.01)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "INM-LND1", - "native_nominal_resolution": "100 km" + "land":{ + "description":"INM-LND1", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "INM-OM5 (North Pole shifted to 60N, 90E; 360 x 318 longitude/latitude; 40 levels; sigma vertical coordinate)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"INM-OM5 (North Pole shifted to 60N, 90E; 360 x 318 longitude/latitude; 40 levels; sigma vertical coordinate)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "INM-ICE1", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"INM-ICE1", + "native_nominal_resolution":"100 km" } }, - "release_year": "2016", - "source_id": "INM-CM4-8" + "release_year":"2016", + "source_id":"INM-CM4-8" }, - "INM-CM5-0": { - "activity_participation": [ + "INM-CM5-0":{ + "activity_participation":[ "CMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "INM" ], - "label": "INM-CM5-0", - "label_extended": "INM-CM5-0", - "license_info": { - "exceptions_contact": "@gmail.com <- volodinev", - "history": "2019-06-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"INM-CM5-0", + "label_extended":"INM-CM5-0", + "license_info":{ + "exceptions_contact":"@gmail.com <- volodinev", + "history":"2019-06-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "INM-AER1", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"INM-AER1", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "INM-AM5-0 (2x1.5; 180 x 120 longitude/latitude; 73 levels; top level sigma = 0.0002)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"INM-AM5-0 (2x1.5; 180 x 120 longitude/latitude; 73 levels; top level sigma = 0.0002)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "INM-LND1", - "native_nominal_resolution": "100 km" + "land":{ + "description":"INM-LND1", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "INM-OM5 (North Pole shifted to 60N, 90E. 0.5x0.25; 720 x 720 longitude/latitude; 40 levels; vertical sigma coordinate)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"INM-OM5 (North Pole shifted to 60N, 90E. 0.5x0.25; 720 x 720 longitude/latitude; 40 levels; vertical sigma coordinate)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "INM-ICE1", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"INM-ICE1", + "native_nominal_resolution":"50 km" } }, - "release_year": "2016", - "source_id": "INM-CM5-0" + "release_year":"2016", + "source_id":"INM-CM5-0" }, - "INM-CM5-H": { - "activity_participation": [ + "INM-CM5-H":{ + "activity_participation":[ "CMIP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "INM" ], - "label": "INM-CM5-H", - "label_extended": "INM-CM5-H", - "license_info": { - "exceptions_contact": "@gmail.com <- volodinev", - "history": "2019-08-12: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"INM-CM5-H", + "label_extended":"INM-CM5-H", + "license_info":{ + "exceptions_contact":"@gmail.com <- volodinev", + "history":"2019-08-12: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "INM-AER1", - "native_nominal_resolution": "50 km" + "model_component":{ + "aerosol":{ + "description":"INM-AER1", + "native_nominal_resolution":"50 km" }, - "atmos": { - "description": "INM-AM5-H (0.67x0.5; 540 x 360 longitude/latitude; 73 levels; top level sigma = 0.0002)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"INM-AM5-H (0.67x0.5; 540 x 360 longitude/latitude; 73 levels; top level sigma = 0.0002)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "INM-LND1", - "native_nominal_resolution": "50 km" + "land":{ + "description":"INM-LND1", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "INM-OM5-H (North Pole shifted to 60N, 90E. 0.167x0.125; 2160x1440 longitude/latitude; 40 levels; vertical sigma coordinate)", - "native_nominal_resolution": "10 km" + "ocean":{ + "description":"INM-OM5-H (North Pole shifted to 60N, 90E. 0.167x0.125; 2160x1440 longitude/latitude; 40 levels; vertical sigma coordinate)", + "native_nominal_resolution":"10 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "INM-ICE1", - "native_nominal_resolution": "10 km" + "seaIce":{ + "description":"INM-ICE1", + "native_nominal_resolution":"10 km" } }, - "release_year": "2016", - "source_id": "INM-CM5-H" + "release_year":"2016", + "source_id":"INM-CM5-H" }, - "IPSL-CM5A2-INCA": { - "activity_participation": [ + "IPSL-CM5A2-INCA":{ + "activity_participation":[ "AerChemMIP", "LUMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "IPSL" ], - "label": "IPSL-CM5A2-INCA", - "label_extended": "IPSL-CM5A2-INCA", - "license_info": { - "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", - "history": "2020-07-29: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"IPSL-CM5A2-INCA", + "label_extended":"IPSL-CM5A2-INCA", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2020-07-29: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "INCA v6 NMHC-AER-S", - "native_nominal_resolution": "500 km" + "model_component":{ + "aerosol":{ + "description":"INCA v6 NMHC-AER-S", + "native_nominal_resolution":"500 km" }, - "atmos": { - "description": "LMDZ (APv5; 96 x 96 longitude/latitude; 39 levels; top level 80000 m)", - "native_nominal_resolution": "500 km" + "atmos":{ + "description":"LMDZ (APv5; 96 x 96 longitude/latitude; 39 levels; top level 80000 m)", + "native_nominal_resolution":"500 km" }, - "atmosChem": { - "description": "INCA v6 NMHC-AER-S", - "native_nominal_resolution": "500 km" + "atmosChem":{ + "description":"INCA v6 NMHC-AER-S", + "native_nominal_resolution":"500 km" }, - "land": { - "description": "ORCHIDEE (IPSLCM5A2.1, Water/Carbon/Energy mode)", - "native_nominal_resolution": "500 km" + "land":{ + "description":"ORCHIDEE (IPSLCM5A2.1, Water/Carbon/Energy mode)", + "native_nominal_resolution":"500 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO-OPA (v3.6, ORCA2 tripolar primarily 2deg; 182 x 149 longitude/latitude; 31 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "250 km" + "ocean":{ + "description":"NEMO-OPA (v3.6, ORCA2 tripolar primarily 2deg; 182 x 149 longitude/latitude; 31 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"250 km" }, - "ocnBgchem": { - "description": "NEMO-PISCES", - "native_nominal_resolution": "250 km" + "ocnBgchem":{ + "description":"NEMO-PISCES", + "native_nominal_resolution":"250 km" }, - "seaIce": { - "description": "NEMO-LIM2", - "native_nominal_resolution": "250 km" + "seaIce":{ + "description":"NEMO-LIM2", + "native_nominal_resolution":"250 km" } }, - "release_year": "2019", - "source_id": "IPSL-CM5A2-INCA" + "release_year":"2019", + "source_id":"IPSL-CM5A2-INCA" }, - "IPSL-CM6A-ATM-HR": { - "activity_participation": [ + "IPSL-CM6A-ATM-HR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "IPSL" ], - "label": "IPSL-CM6A-ATM-HR", - "label_extended": "IPSL-CM6A-ATM-HR", - "license_info": { - "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", - "history": "2019-01-22: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"IPSL-CM6A-ATM-HR", + "label_extended":"IPSL-CM6A-ATM-HR", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2019-01-22: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "LMDZ (NPv6, N256; 512 x 360 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"LMDZ (NPv6, N256; 512 x 360 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "ORCHIDEE (v2.0, Water/Carbon/Energy mode)", - "native_nominal_resolution": "50 km" + "land":{ + "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2018", - "source_id": "IPSL-CM6A-ATM-HR" + "release_year":"2018", + "source_id":"IPSL-CM6A-ATM-HR" }, - "IPSL-CM6A-ATM-ICO-HR": { - "activity_participation": [ + "IPSL-CM6A-ATM-ICO-HR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "IPSL" ], - "label": "IPSL-CM6A-ATM-ICO-HR", - "label_extended": "IPSL-CM6A-ATM-ICO-HR", - "license_info": { - "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", - "history": "2022-07-21: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"IPSL-CM6A-ATM-ICO-HR", + "label_extended":"IPSL-CM6A-ATM-ICO-HR", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2022-07-21: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "DYNAMICO-LMDZ (NPv6; 256000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"DYNAMICO-LMDZ (NPv6; 256000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "ORCHIDEE (v2.2, Water/Carbon/Energy mode)", - "native_nominal_resolution": "50 km" + "land":{ + "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_ominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_ominal_resolution":"none" } }, - "release_year": "2021", - "source_id": "IPSL-CM6A-ATM-ICO-HR" + "release_year":"2021", + "source_id":"IPSL-CM6A-ATM-ICO-HR" }, - "IPSL-CM6A-ATM-ICO-LR": { - "activity_participation": [ + "IPSL-CM6A-ATM-ICO-LR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "IPSL" ], - "label": "IPSL-CM6A-ATM-ICO-LR", - "label_extended": "IPSL-CM6A-ATM-ICO-LR", - "license_info": { - "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", - "history": "2022-07-21: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"IPSL-CM6A-ATM-ICO-LR", + "label_extended":"IPSL-CM6A-ATM-ICO-LR", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2022-07-21: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "DYNAMICO-LMDZ (NPv6; 16000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"DYNAMICO-LMDZ (NPv6; 16000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "ORCHIDEE (v2.2, Water/Carbon/Energy mode)", - "native_nominal_resolution": "250 km" + "land":{ + "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_ominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_ominal_resolution":"none" } }, - "release_year": "2021", - "source_id": "IPSL-CM6A-ATM-ICO-LR" + "release_year":"2021", + "source_id":"IPSL-CM6A-ATM-ICO-LR" }, - "IPSL-CM6A-ATM-ICO-MR": { - "activity_participation": [ + "IPSL-CM6A-ATM-ICO-MR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "IPSL" ], - "label": "IPSL-CM6A-ATM-ICO-MR", - "label_extended": "IPSL-CM6A-ATM-ICO-MR", - "license_info": { - "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", - "history": "2022-07-20: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"IPSL-CM6A-ATM-ICO-MR", + "label_extended":"IPSL-CM6A-ATM-ICO-MR", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2022-07-20: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "DYNAMICO-LMDZ (NPv6; 64000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"DYNAMICO-LMDZ (NPv6; 64000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "ORCHIDEE (v2.2, Water/Carbon/Energy mode)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_ominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_ominal_resolution":"none" } }, - "release_year": "2021", - "source_id": "IPSL-CM6A-ATM-ICO-MR" + "release_year":"2021", + "source_id":"IPSL-CM6A-ATM-ICO-MR" }, - "IPSL-CM6A-ATM-ICO-VHR": { - "activity_participation": [ + "IPSL-CM6A-ATM-ICO-VHR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "IPSL" ], - "label": "IPSL-CM6A-ATM-ICO-VHR", - "label_extended": "IPSL-CM6A-ATM-ICO-VHR", - "license_info": { - "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", - "history": "2022-07-21: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"IPSL-CM6A-ATM-ICO-VHR", + "label_extended":"IPSL-CM6A-ATM-ICO-VHR", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2022-07-21: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "DYNAMICO-LMDZ (NPv6; 1024000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", - "native_nominal_resolution": "25 km" + "atmos":{ + "description":"DYNAMICO-LMDZ (NPv6; 1024000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", + "native_nominal_resolution":"25 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "ORCHIDEE (v2.2, Water/Carbon/Energy mode)", - "native_nominal_resolution": "25 km" + "land":{ + "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", + "native_nominal_resolution":"25 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_ominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_ominal_resolution":"none" } }, - "release_year": "2021", - "source_id": "IPSL-CM6A-ATM-ICO-VHR" + "release_year":"2021", + "source_id":"IPSL-CM6A-ATM-ICO-VHR" }, - "IPSL-CM6A-ATM-LR-REPROBUS": { - "activity_participation": [ + "IPSL-CM6A-ATM-LR-REPROBUS":{ + "activity_participation":[ "AerChemMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "IPSL" ], - "label": "IPSL-CM6A-ATM-LR-REPROBUS", - "label_extended": "IPSL-CM6A-ATM-LR-REPROBUS", - "license_info": { - "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", - "history": "2024-06-18: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"IPSL-CM6A-ATM-LR-REPROBUS", + "label_extended":"IPSL-CM6A-ATM-LR-REPROBUS", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2024-06-18: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "REPROBUS v6 (same grid as atmos)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"REPROBUS v6 (same grid as atmos)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "none", - "native_nominal_resolution": "none" + "land":{ + "description":"none", + "native_nominal_resolution":"none" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2021", - "source_id": "IPSL-CM6A-ATM-LR-REPROBUS" + "release_year":"2021", + "source_id":"IPSL-CM6A-ATM-LR-REPROBUS" }, - "IPSL-CM6A-LR": { - "activity_participation": [ + "IPSL-CM6A-LR":{ + "activity_participation":[ "AerChemMIP", "C4MIP", "CDRMIP", @@ -5831,412 +5831,412 @@ "ScenarioMIP", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "IPSL" ], - "label": "IPSL-CM6A-LR", - "label_extended": "IPSL-CM6A-LR", - "license_info": { - "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", - "history": "2018-03-14: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"IPSL-CM6A-LR", + "label_extended":"IPSL-CM6A-LR", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2018-03-14: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "LMDZ (NPv6, N96; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"LMDZ (NPv6, N96; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "ORCHIDEE (v2.0, Water/Carbon/Energy mode)", - "native_nominal_resolution": "250 km" + "land":{ + "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "NEMO-PISCES", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"NEMO-PISCES", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "NEMO-LIM3", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"NEMO-LIM3", + "native_nominal_resolution":"100 km" } }, - "release_year": "2017", - "source_id": "IPSL-CM6A-LR" + "release_year":"2017", + "source_id":"IPSL-CM6A-LR" }, - "IPSL-CM6A-LR-INCA": { - "activity_participation": [ + "IPSL-CM6A-LR-INCA":{ + "activity_participation":[ "AerChemMIP", "RFMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "IPSL" ], - "label": "IPSL-CM6A-LR-INCA", - "label_extended": "IPSL-CM6A-LR-INCA", - "license_info": { - "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", - "history": "2020-07-17: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"IPSL-CM6A-LR-INCA", + "label_extended":"IPSL-CM6A-LR-INCA", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2020-07-17: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "INCA v6 AER", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"INCA v6 AER", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "ORCHIDEE (v2.0, Water/Carbon/Energy mode)", - "native_nominal_resolution": "250 km" + "land":{ + "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "NEMO-PISCES", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"NEMO-PISCES", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "NEMO-LIM3", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"NEMO-LIM3", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "IPSL-CM6A-LR-INCA" + "release_year":"2019", + "source_id":"IPSL-CM6A-LR-INCA" }, - "IPSL-CM6A-MR1": { - "activity_participation": [ + "IPSL-CM6A-MR1":{ + "activity_participation":[ "CMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "IPSL" ], - "label": "IPSL-CM6A-MR1", - "label_extended": "IPSL-CM6A-MR1", - "license_info": { - "exceptions_contact": "@listes.ipsl.fr <- ipsl-cmip6", - "history": "2024-03-26: initially published under CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"IPSL-CM6A-MR1", + "label_extended":"IPSL-CM6A-MR1", + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2024-03-26: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "LMDZ (NPv6; 256 x 256 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"LMDZ (NPv6; 256 x 256 longitude/latitude; 79 levels; top level 80000 m)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "ORCHIDEE (v2.2, Water/Carbon/Energy mode; same grid as atmos)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode; same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "NEMO-PISCES (same grid as ocean)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"NEMO-PISCES (same grid as ocean)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "NEMO-LIM3 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"NEMO-LIM3 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2021", - "source_id": "IPSL-CM6A-MR1" + "release_year":"2021", + "source_id":"IPSL-CM6A-MR1" }, - "KACE-1-0-G": { - "activity_participation": [ + "KACE-1-0-G":{ + "activity_participation":[ "CMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NIMS-KMA" ], - "label": "KACE1.0-G", - "label_extended": "KACE1.0-GLOMAP", - "license_info": { - "exceptions_contact": "@korea.kr <- sunghm122", - "history": "2019-08-13: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"KACE1.0-G", + "label_extended":"KACE1.0-GLOMAP", + "license_info":{ + "exceptions_contact":"@korea.kr <- sunghm122", + "history":"2019-08-13: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "UKCA-GLOMAP-mode", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JULES-HadGEM3-GL7.1", - "native_nominal_resolution": "250 km" + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MOM4p1 (tripolar primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"MOM4p1 (tripolar primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE-HadGEM3-GSI8 (tripolar primarily 1deg; 360 x 200 longitude/latitude)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (tripolar primarily 1deg; 360 x 200 longitude/latitude)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2018", - "source_id": "KACE-1-0-G" + "release_year":"2018", + "source_id":"KACE-1-0-G" }, - "KIOST-ESM": { - "activity_participation": [ + "KIOST-ESM":{ + "activity_participation":[ "C4MIP", "CMIP", "DynVarMIP", "PMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "KIOST" ], - "label": "KIOST-ESM", - "label_extended": "KIOST Earth System Model v2", - "license_info": { - "exceptions_contact": "@pknu.ac.kr <- yhokim", - "history": "2019-11-04: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"KIOST-ESM", + "label_extended":"KIOST Earth System Model v2", + "license_info":{ + "exceptions_contact":"@pknu.ac.kr <- yhokim", + "history":"2019-11-04: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "GFDL-AM2.0 (cubed sphere (C48); 192 x 96 longitude/latitude; 32 vertical levels; top level 2 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"GFDL-AM2.0 (cubed sphere (C48); 192 x 96 longitude/latitude; 32 vertical levels; top level 2 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "Simple carbon aerosol model (emission type)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"Simple carbon aerosol model (emission type)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "NCAR-CLM4", - "native_nominal_resolution": "250 km" + "land":{ + "description":"NCAR-CLM4", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "NCAR-CLM4", - "native_nominal_resolution": "250 km" + "landIce":{ + "description":"NCAR-CLM4", + "native_nominal_resolution":"250 km" }, - "ocean": { - "description": "GFDL-MOM5.0 (tripolar - nominal 1.0 deg; 360 x 200 longitude/latitude; 52 levels; top grid cell 0-2 m; NK mixed layer scheme)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"GFDL-MOM5.0 (tripolar - nominal 1.0 deg; 360 x 200 longitude/latitude; 52 levels; top grid cell 0-2 m; NK mixed layer scheme)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "TOPAZ2", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"TOPAZ2", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "GFDL-SIS", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"GFDL-SIS", + "native_nominal_resolution":"100 km" } }, - "release_year": "2018", - "source_id": "KIOST-ESM" + "release_year":"2018", + "source_id":"KIOST-ESM" }, - "LBLRTM-12-8": { - "activity_participation": [ + "LBLRTM-12-8":{ + "activity_participation":[ "RFMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "AER" ], - "label": "LBLRTM 12.8", - "label_extended": "Line-By-Line Radiative Transfer Model v12.8, aer_v_3.6, MT_CKD_3.2", - "license_info": { - "exceptions_contact": "@aer.com <- aer_lblrtm", - "history": "2019-05-14: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"LBLRTM 12.8", + "label_extended":"Line-By-Line Radiative Transfer Model v12.8, aer_v_3.6, MT_CKD_3.2", + "license_info":{ + "exceptions_contact":"@aer.com <- aer_lblrtm", + "history":"2019-05-14: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "none", - "native_nominal_resolution": "none" + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "none", - "native_nominal_resolution": "none" + "land":{ + "description":"none", + "native_nominal_resolution":"none" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2017", - "source_id": "LBLRTM-12-8" + "release_year":"2017", + "source_id":"LBLRTM-12-8" }, - "MCM-UA-1-0": { - "activity_participation": [ + "MCM-UA-1-0":{ + "activity_participation":[ "CMIP", "FAFMIP", "PMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "UA" ], - "label": "MCM-UA-1-0", - "label_extended": "Manabe Climate Model v1.0 - University of Arizona", - "license_info": { - "exceptions_contact": "@email.arizona.edu <- GEOS-CMIP", - "history": "2019-07-31: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"MCM-UA-1-0", + "label_extended":"Manabe Climate Model v1.0 - University of Arizona", + "license_info":{ + "exceptions_contact":"@email.arizona.edu <- GEOS-CMIP", + "history":"2019-07-31: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "Modifies surface albedoes (Haywood et al. 1997, doi: 10.1175/1520-0442(1997)010<1562:GCMCOT>2.0.CO;2)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"Modifies surface albedoes (Haywood et al. 1997, doi: 10.1175/1520-0442(1997)010<1562:GCMCOT>2.0.CO;2)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "R30L14 (3.75 X 2.5 degree (long-lat) configuration; 96 x 80 longitude/latitude; 14 levels; top level 0.015 sigma, 15 mb)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"R30L14 (3.75 X 2.5 degree (long-lat) configuration; 96 x 80 longitude/latitude; 14 levels; top level 0.015 sigma, 15 mb)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "Standard Manabe bucket hydrology scheme (Manabe 1969, doi: 10.1175/1520-0493(1969)097<0739:CATOC>2.3.CO;2)", - "native_nominal_resolution": "250 km" + "land":{ + "description":"Standard Manabe bucket hydrology scheme (Manabe 1969, doi: 10.1175/1520-0493(1969)097<0739:CATOC>2.3.CO;2)", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "Specified location - invariant in time, has high albedo and latent heat capacity", - "native_nominal_resolution": "250 km" + "landIce":{ + "description":"Specified location - invariant in time, has high albedo and latent heat capacity", + "native_nominal_resolution":"250 km" }, - "ocean": { - "description": "MOM1.0 (MOM1, 1.875 X 2.5 deg; 192 x 80 longitude/latitude; 18 levels; top grid cell 0-40 m)", - "native_nominal_resolution": "250 km" + "ocean":{ + "description":"MOM1.0 (MOM1, 1.875 X 2.5 deg; 192 x 80 longitude/latitude; 18 levels; top grid cell 0-40 m)", + "native_nominal_resolution":"250 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "Thermodynamic ice model (free drift dynamics)", - "native_nominal_resolution": "250 km" + "seaIce":{ + "description":"Thermodynamic ice model (free drift dynamics)", + "native_nominal_resolution":"250 km" } }, - "release_year": "1991", - "source_id": "MCM-UA-1-0" + "release_year":"1991", + "source_id":"MCM-UA-1-0" }, - "MIROC-ES2H": { - "activity_participation": [ + "MIROC-ES2H":{ + "activity_participation":[ "AerChemMIP", "C4MIP", "CMIP", @@ -6245,119 +6245,119 @@ "ScenarioMIP", "VIACSAB" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MIROC" ], - "label": "MIROC-ES2H", - "label_extended": "MIROC-ES2H", - "license_info": { - "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", - "history": "2021-01-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"MIROC-ES2H", + "label_extended":"MIROC-ES2H", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2021-01-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "SPRINTARS6.0", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"SPRINTARS6.0", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution": "500 km" + "atmosChem":{ + "description":"CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution":"500 km" }, - "land": { - "description": "MATSIRO6.0+VISIT-e ver.1.0", - "native_nominal_resolution": "250 km" + "land":{ + "description":"MATSIRO6.0+VISIT-e ver.1.0", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "COCO4.9", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"COCO4.9", + "native_nominal_resolution":"100 km" } }, - "release_year": "2018", - "source_id": "MIROC-ES2H" + "release_year":"2018", + "source_id":"MIROC-ES2H" }, - "MIROC-ES2H-NB": { - "activity_participation": [ + "MIROC-ES2H-NB":{ + "activity_participation":[ "AerChemMIP", "CMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MIROC" ], - "label": "MIROC-ES2H-NB", - "label_extended": "MIROC-ES2H with No BiogenicCycle", - "license_info": { - "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", - "history": "2020-04-28: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"MIROC-ES2H-NB", + "label_extended":"MIROC-ES2H with No BiogenicCycle", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2020-04-28: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "SPRINTARS6.0", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"SPRINTARS6.0", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution": "500 km" + "atmosChem":{ + "description":"CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution":"500 km" }, - "land": { - "description": "MATSIRO6", - "native_nominal_resolution": "250 km" + "land":{ + "description":"MATSIRO6", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "COCO4.9", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"COCO4.9", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "MIROC-ES2H-NB" + "release_year":"2019", + "source_id":"MIROC-ES2H-NB" }, - "MIROC-ES2L": { - "activity_participation": [ + "MIROC-ES2L":{ + "activity_participation":[ "C4MIP", "CDRMIP", "CMIP", @@ -6371,61 +6371,61 @@ "VIACSAB", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MIROC" ], - "label": "MIROC-ES2L", - "label_extended": "MIROC-ES2L", - "license_info": { - "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", - "history": "2019-08-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"MIROC-ES2L", + "label_extended":"MIROC-ES2L", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2019-08-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "SPRINTARS6.0", - "native_nominal_resolution": "500 km" + "model_component":{ + "aerosol":{ + "description":"SPRINTARS6.0", + "native_nominal_resolution":"500 km" }, - "atmos": { - "description": "CCSR AGCM (T42; 128 x 64 longitude/latitude; 40 levels; top level 3 hPa)", - "native_nominal_resolution": "500 km" + "atmos":{ + "description":"CCSR AGCM (T42; 128 x 64 longitude/latitude; 40 levels; top level 3 hPa)", + "native_nominal_resolution":"500 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "MATSIRO6.0+VISIT-e ver.1.0", - "native_nominal_resolution": "500 km" + "land":{ + "description":"MATSIRO6.0+VISIT-e ver.1.0", + "native_nominal_resolution":"500 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "COCO4.9", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"COCO4.9", + "native_nominal_resolution":"100 km" } }, - "release_year": "2018", - "source_id": "MIROC-ES2L" + "release_year":"2018", + "source_id":"MIROC-ES2L" }, - "MIROC6": { - "activity_participation": [ + "MIROC6":{ + "activity_participation":[ "AerChemMIP", "CFMIP", "CMIP", @@ -6443,121 +6443,121 @@ "ScenarioMIP", "VIACSAB" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MIROC" ], - "label": "MIROC6", - "label_extended": "MIROC6", - "license_info": { - "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", - "history": "2018-12-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"MIROC6", + "label_extended":"MIROC6", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2018-12-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "SPRINTARS6.0", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"SPRINTARS6.0", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "MATSIRO6.0", - "native_nominal_resolution": "250 km" + "land":{ + "description":"MATSIRO6.0", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "COCO4.9", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"COCO4.9", + "native_nominal_resolution":"100 km" } }, - "release_year": "2017", - "source_id": "MIROC6" + "release_year":"2017", + "source_id":"MIROC6" }, - "MPI-ESM-1-2-HAM": { - "activity_participation": [ + "MPI-ESM-1-2-HAM":{ + "activity_participation":[ "AerChemMIP", "CMIP", "RFMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "HAMMOZ-Consortium" ], - "label": "MPI-ESM1.2-HAM", - "label_extended": "MPI-ESM1.2-HAM", - "license_info": { - "exceptions_contact": "@sympa.ethz.ch <- aerchemmip_echam-ham", - "history": "2019-06-27: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"MPI-ESM1.2-HAM", + "label_extended":"MPI-ESM1.2-HAM", + "license_info":{ + "exceptions_contact":"@sympa.ethz.ch <- aerchemmip_echam-ham", + "history":"2019-06-27: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "HAM2.3", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"HAM2.3", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "sulfur chemistry (unnamed)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"sulfur chemistry (unnamed)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "JSBACH 3.20", - "native_nominal_resolution": "250 km" + "land":{ + "description":"JSBACH 3.20", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution": "250 km" + "ocean":{ + "description":"MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution":"250 km" }, - "ocnBgchem": { - "description": "HAMOCC6", - "native_nominal_resolution": "250 km" + "ocnBgchem":{ + "description":"HAMOCC6", + "native_nominal_resolution":"250 km" }, - "seaIce": { - "description": "unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution": "250 km" + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution":"250 km" } }, - "release_year": "2017", - "source_id": "MPI-ESM-1-2-HAM" + "release_year":"2017", + "source_id":"MPI-ESM-1-2-HAM" }, - "MPI-ESM1-2-HR": { - "activity_participation": [ + "MPI-ESM1-2-HR":{ + "activity_participation":[ "CMIP", "CORDEX", "DCPP", @@ -6570,63 +6570,63 @@ "ScenarioMIP", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MPI-M", "DWD", "DKRZ" ], - "label": "MPI-ESM1.2-HR", - "label_extended": "MPI-ESM1.2-HR", - "license_info": { - "exceptions_contact": "@dkrz.de <- cmip6-mpi-esm", - "history": "2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"MPI-ESM1.2-HR", + "label_extended":"MPI-ESM1.2-HR", + "license_info":{ + "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", + "history":"2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none, prescribed MACv2-SP", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "ECHAM6.3 (spectral T127; 384 x 192 longitude/latitude; 95 levels; top level 0.01 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"ECHAM6.3 (spectral T127; 384 x 192 longitude/latitude; 95 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JSBACH3.20", - "native_nominal_resolution": "100 km" + "land":{ + "description":"JSBACH3.20", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none/prescribed", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none/prescribed", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "HAMOCC6", - "native_nominal_resolution": "50 km" + "ocnBgchem":{ + "description":"HAMOCC6", + "native_nominal_resolution":"50 km" }, - "seaIce": { - "description": "unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution":"50 km" } }, - "release_year": "2017", - "source_id": "MPI-ESM1-2-HR" + "release_year":"2017", + "source_id":"MPI-ESM1-2-HR" }, - "MPI-ESM1-2-LR": { - "activity_participation": [ + "MPI-ESM1-2-LR":{ + "activity_participation":[ "C4MIP", "CDRMIP", "CFMIP", @@ -6647,238 +6647,238 @@ "ScenarioMIP", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MPI-M", "AWI", "DKRZ", "DWD" ], - "label": "MPI-ESM1.2-LR", - "label_extended": "MPI-ESM1.2-LR", - "license_info": { - "exceptions_contact": "@dkrz.de <- cmip6-mpi-esm", - "history": "2019-07-10: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"MPI-ESM1.2-LR", + "label_extended":"MPI-ESM1.2-LR", + "license_info":{ + "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", + "history":"2019-07-10: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none, prescribed MACv2-SP", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JSBACH3.20", - "native_nominal_resolution": "250 km" + "land":{ + "description":"JSBACH3.20", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none/prescribed", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none/prescribed", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution": "250 km" + "ocean":{ + "description":"MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution":"250 km" }, - "ocnBgchem": { - "description": "HAMOCC6", - "native_nominal_resolution": "250 km" + "ocnBgchem":{ + "description":"HAMOCC6", + "native_nominal_resolution":"250 km" }, - "seaIce": { - "description": "unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution": "250 km" + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution":"250 km" } }, - "release_year": "2017", - "source_id": "MPI-ESM1-2-LR" + "release_year":"2017", + "source_id":"MPI-ESM1-2-LR" }, - "MPI-ESM1-2-XR": { - "activity_participation": [ + "MPI-ESM1-2-XR":{ + "activity_participation":[ "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MPI-M" ], - "label": "MPI-ESM1.2-XR", - "label_extended": "MPI-ESM1.2-XR", - "license_info": { - "exceptions_contact": "@dkrz.de <- cmip6-mpi-esm", - "history": "2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"MPI-ESM1.2-XR", + "label_extended":"MPI-ESM1.2-XR", + "license_info":{ + "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", + "history":"2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none, prescribed MACv2-SP", - "native_nominal_resolution": "50 km" + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "native_nominal_resolution":"50 km" }, - "atmos": { - "description": "ECHAM6.3 (spectral T255; 768 x 384 longitude/latitude; 95 levels; top level 0.01 hPa)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"ECHAM6.3 (spectral T255; 768 x 384 longitude/latitude; 95 levels; top level 0.01 hPa)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JSBACH3.20", - "native_nominal_resolution": "50 km" + "land":{ + "description":"JSBACH3.20", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none/prescribed", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none/prescribed", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution": "50 km" + "ocean":{ + "description":"MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "native_nominal_resolution":"50 km" }, - "ocnBgchem": { - "description": "HAMOCC6", - "native_nominal_resolution": "50 km" + "ocnBgchem":{ + "description":"HAMOCC6", + "native_nominal_resolution":"50 km" }, - "seaIce": { - "description": "unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "native_nominal_resolution":"50 km" } }, - "release_year": "2017", - "source_id": "MPI-ESM1-2-XR" + "release_year":"2017", + "source_id":"MPI-ESM1-2-XR" }, - "MRI-AGCM3-2-H": { - "activity_participation": [ + "MRI-AGCM3-2-H":{ + "activity_participation":[ "DynVarMIP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MRI" ], - "label": "MRI-AGCM3-2-H", - "label_extended": "MRI-AGCM3-2-H", - "license_info": { - "exceptions_contact": "@mri-jma.go.jp <- rmizuta", - "history": "2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"MRI-AGCM3-2-H", + "label_extended":"MRI-AGCM3-2-H", + "license_info":{ + "exceptions_contact":"@mri-jma.go.jp <- rmizuta", + "history":"2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "Prescribed from MRI-ESM2.0", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"Prescribed from MRI-ESM2.0", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "MRI-AGCM3.2H (TL319; 640 x 320 longitude/latitude; 64 levels; top level 0.01 hPa)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"MRI-AGCM3.2H (TL319; 640 x 320 longitude/latitude; 64 levels; top level 0.01 hPa)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "SIB0109", - "native_nominal_resolution": "50 km" + "land":{ + "description":"SIB0109", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2017", - "source_id": "MRI-AGCM3-2-H" + "release_year":"2017", + "source_id":"MRI-AGCM3-2-H" }, - "MRI-AGCM3-2-S": { - "activity_participation": [ + "MRI-AGCM3-2-S":{ + "activity_participation":[ "CMIP", "DynVarMIP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MRI" ], - "label": "MRI-AGCM3-2-S", - "label_extended": "MRI-AGCM3-2-S", - "license_info": { - "exceptions_contact": "@mri-jma.go.jp <- rmizuta", - "history": "2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"MRI-AGCM3-2-S", + "label_extended":"MRI-AGCM3-2-S", + "license_info":{ + "exceptions_contact":"@mri-jma.go.jp <- rmizuta", + "history":"2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "Prescribed from MRI-ESM2.0", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"Prescribed from MRI-ESM2.0", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "MRI-AGCM3.2S (TL959; 1920 x 960 longitude/latitude; 64 levels; top level 0.01 hPa)", - "native_nominal_resolution": "25 km" + "atmos":{ + "description":"MRI-AGCM3.2S (TL959; 1920 x 960 longitude/latitude; 64 levels; top level 0.01 hPa)", + "native_nominal_resolution":"25 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "SIB0109", - "native_nominal_resolution": "25 km" + "land":{ + "description":"SIB0109", + "native_nominal_resolution":"25 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2017", - "source_id": "MRI-AGCM3-2-S" + "release_year":"2017", + "source_id":"MRI-AGCM3-2-S" }, - "MRI-ESM2-0": { - "activity_participation": [ + "MRI-ESM2-0":{ + "activity_participation":[ "AerChemMIP", "C4MIP", "CFMIP", @@ -6898,61 +6898,61 @@ "ScenarioMIP", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MRI" ], - "label": "MRI-ESM2.0", - "label_extended": "MRI-ESM2.0", - "license_info": { - "exceptions_contact": "@mri-jma.go.jp <- mdeushi", - "history": "2019-02-22: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"MRI-ESM2.0", + "label_extended":"MRI-ESM2.0", + "license_info":{ + "exceptions_contact":"@mri-jma.go.jp <- mdeushi", + "history":"2019-02-22: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MASINGAR mk2r4 (TL95; 192 x 96 longitude/latitude; 80 levels; top level 0.01 hPa)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"MASINGAR mk2r4 (TL95; 192 x 96 longitude/latitude; 80 levels; top level 0.01 hPa)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "MRI-AGCM3.5 (TL159; 320 x 160 longitude/latitude; 80 levels; top level 0.01 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"MRI-AGCM3.5 (TL159; 320 x 160 longitude/latitude; 80 levels; top level 0.01 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "MRI-CCM2.1 (T42; 128 x 64 longitude/latitude; 80 levels; top level 0.01 hPa)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"MRI-CCM2.1 (T42; 128 x 64 longitude/latitude; 80 levels; top level 0.01 hPa)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "HAL 1.0", - "native_nominal_resolution": "100 km" + "land":{ + "description":"HAL 1.0", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MRI.COM4.4 (tripolar primarily 0.5 deg latitude/1 deg longitude with meridional refinement down to 0.3 deg within 10 degrees north and south of the equator; 360 x 364 longitude/latitude; 61 levels; top grid cell 0-2 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"MRI.COM4.4 (tripolar primarily 0.5 deg latitude/1 deg longitude with meridional refinement down to 0.3 deg within 10 degrees north and south of the equator; 360 x 364 longitude/latitude; 61 levels; top grid cell 0-2 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "MRI.COM4.4", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"MRI.COM4.4", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "MRI.COM4.4", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"MRI.COM4.4", + "native_nominal_resolution":"100 km" } }, - "release_year": "2017", - "source_id": "MRI-ESM2-0" + "release_year":"2017", + "source_id":"MRI-ESM2-0" }, - "NESM3": { - "activity_participation": [ + "NESM3":{ + "activity_participation":[ "CMIP", "DAMIP", "DCPP", @@ -6962,354 +6962,354 @@ "ScenarioMIP", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NUIST" ], - "label": "NESM v3", - "label_extended": "NUIST ESM v3", - "license_info": { - "exceptions_contact": "@nuist.edu.cn <- esmc", - "history": "2019-06-25: initially published under CC BY-SA 4.0; 2022-10-05: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"NESM v3", + "label_extended":"NUIST ESM v3", + "license_info":{ + "exceptions_contact":"@nuist.edu.cn <- esmc", + "history":"2019-06-25: initially published under CC BY-SA 4.0; 2022-10-05: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "ECHAM v6.3 (T63; 192 x 96 longitude/latitude; 47 levels; top level 1 Pa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"ECHAM v6.3 (T63; 192 x 96 longitude/latitude; 47 levels; top level 1 Pa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JSBACH v3.1", - "native_nominal_resolution": "2.5 km" + "land":{ + "description":"JSBACH v3.1", + "native_nominal_resolution":"2.5 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO v3.4 (NEMO v3.4, tripolar primarily 1deg; 384 x 362 longitude/latitude; 46 levels; top grid cell 0-6 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO v3.4 (NEMO v3.4, tripolar primarily 1deg; 384 x 362 longitude/latitude; 46 levels; top grid cell 0-6 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE4.1", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4.1", + "native_nominal_resolution":"100 km" } }, - "release_year": "2016", - "source_id": "NESM3" + "release_year":"2016", + "source_id":"NESM3" }, - "NICAM16-7S": { - "activity_participation": [ + "NICAM16-7S":{ + "activity_participation":[ "CMIP", "DynVarMIP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MIROC" ], - "label": "NICAM16-7S", - "label_extended": "NICAM.16 gl07-L38 with NSW6", - "license_info": { - "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", - "history": "2019-03-18: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"NICAM16-7S", + "label_extended":"NICAM.16 gl07-L38 with NSW6", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2019-03-18: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "Prescribed MACv2-SP", - "native_nominal_resolution": "50 km" + "model_component":{ + "aerosol":{ + "description":"Prescribed MACv2-SP", + "native_nominal_resolution":"50 km" }, - "atmos": { - "description": "NICAM.16 (56km icosahedral grid; 163,842 grid cells (=10*4^7+2); 38 levels; top level 40 km)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"NICAM.16 (56km icosahedral grid; 163,842 grid cells (=10*4^7+2); 38 levels; top level 40 km)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "MATSIRO6 (w/o MOSAIC)", - "native_nominal_resolution": "50 km" + "land":{ + "description":"MATSIRO6 (w/o MOSAIC)", + "native_nominal_resolution":"50 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "Fixed", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"Fixed", + "native_nominal_resolution":"50 km" } }, - "release_year": "2017", - "source_id": "NICAM16-7S" + "release_year":"2017", + "source_id":"NICAM16-7S" }, - "NICAM16-8S": { - "activity_participation": [ + "NICAM16-8S":{ + "activity_participation":[ "CMIP", "DynVarMIP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MIROC" ], - "label": "NICAM16-8S", - "label_extended": "NICAM.16 gl08-L38 with NSW6", - "license_info": { - "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", - "history": "2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"NICAM16-8S", + "label_extended":"NICAM.16 gl08-L38 with NSW6", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "Prescribed MACv2-SP", - "native_nominal_resolution": "25 km" + "model_component":{ + "aerosol":{ + "description":"Prescribed MACv2-SP", + "native_nominal_resolution":"25 km" }, - "atmos": { - "description": "NICAM.16 (28km icosahedral grid; 655,362 grid cells (=10*4^8+2); 38 levels; top level 40 km)", - "native_nominal_resolution": "50 km" + "atmos":{ + "description":"NICAM.16 (28km icosahedral grid; 655,362 grid cells (=10*4^8+2); 38 levels; top level 40 km)", + "native_nominal_resolution":"50 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "MATSIRO6 (w/o MOSAIC)", - "native_nominal_resolution": "25 km" + "land":{ + "description":"MATSIRO6 (w/o MOSAIC)", + "native_nominal_resolution":"25 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "Fixed", - "native_nominal_resolution": "25 km" + "seaIce":{ + "description":"Fixed", + "native_nominal_resolution":"25 km" } }, - "release_year": "2017", - "source_id": "NICAM16-8S" + "release_year":"2017", + "source_id":"NICAM16-8S" }, - "NICAM16-9S": { - "activity_participation": [ + "NICAM16-9S":{ + "activity_participation":[ "CMIP", "DynVarMIP", "HighResMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MIROC" ], - "label": "NICAM16-9S", - "label_extended": "NICAM.16 gl09-L38 with NSW6", - "license_info": { - "exceptions_contact": "@jamstec.go.jp <- miroc-cmip6", - "history": "2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"NICAM16-9S", + "label_extended":"NICAM.16 gl09-L38 with NSW6", + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "Prescribed MACv2-SP", - "native_nominal_resolution": "10 km" + "model_component":{ + "aerosol":{ + "description":"Prescribed MACv2-SP", + "native_nominal_resolution":"10 km" }, - "atmos": { - "description": "NICAM.16 (14km icosahedral grid; 2,621,442 grid cells (=10*4^9+2); 38 levels; top level 40 km)", - "native_nominal_resolution": "25 km" + "atmos":{ + "description":"NICAM.16 (14km icosahedral grid; 2,621,442 grid cells (=10*4^9+2); 38 levels; top level 40 km)", + "native_nominal_resolution":"25 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "MATSIRO6 (w/o MOSAIC)", - "native_nominal_resolution": "10 km" + "land":{ + "description":"MATSIRO6 (w/o MOSAIC)", + "native_nominal_resolution":"10 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "Fixed", - "native_nominal_resolution": "10 km" + "seaIce":{ + "description":"Fixed", + "native_nominal_resolution":"10 km" } }, - "release_year": "2017", - "source_id": "NICAM16-9S" + "release_year":"2017", + "source_id":"NICAM16-9S" }, - "NorCPM1": { - "activity_participation": [ + "NorCPM1":{ + "activity_participation":[ "CMIP", "DCPP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NCC" ], - "label": "NorCPM1", - "label_extended": "Norwegian Climate Prediction Model version 1", - "license_info": { - "exceptions_contact": "@uib.no <- norcpm", - "history": "2019-09-14: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"NorCPM1", + "label_extended":"Norwegian Climate Prediction Model version 1", + "license_info":{ + "exceptions_contact":"@uib.no <- norcpm", + "history":"2019-09-14: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "OsloAero4.1 (same grid as atmos)", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"OsloAero4.1 (same grid as atmos)", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "CAM-OSLO4.1 (2 degree resolution; 144 x 96 longitude/latitude; 26 levels; top level ~2 hPa)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"CAM-OSLO4.1 (2 degree resolution; 144 x 96 longitude/latitude; 26 levels; top level ~2 hPa)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "OsloChemSimp4.1 (same grid as atmos)", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"OsloChemSimp4.1 (same grid as atmos)", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "CLM4 (same grid as atmos)", - "native_nominal_resolution": "250 km" + "land":{ + "description":"CLM4 (same grid as atmos)", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "MICOM1.1 (1 degree resolution; 320 x 384 longitude/latitude; 53 levels; top grid cell 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"MICOM1.1 (1 degree resolution; 320 x 384 longitude/latitude; 53 levels; top grid cell 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "HAMOCC5.1 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"HAMOCC5.1 (same grid as ocean)", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE4 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "NorCPM1" + "release_year":"2019", + "source_id":"NorCPM1" }, - "NorESM1-F": { - "activity_participation": [ + "NorESM1-F":{ + "activity_participation":[ "CMIP", "PMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NCC" ], - "label": "NorESM1-F", - "label_extended": "NorESM1-F (a fast version of NorESM that is designed for paleo and multi-ensemble simulations)", - "license_info": { - "exceptions_contact": "@met.no <- noresm-ncc", - "history": "2019-09-20: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"NorESM1-F", + "label_extended":"NorESM1-F (a fast version of NorESM that is designed for paleo and multi-ensemble simulations)", + "license_info":{ + "exceptions_contact":"@met.no <- noresm-ncc", + "history":"2019-09-20: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "CAM4 (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"CAM4 (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CLM4", - "native_nominal_resolution": "250 km" + "land":{ + "description":"CLM4", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "CISM", - "native_nominal_resolution": "250 km" + "landIce":{ + "description":"CISM", + "native_nominal_resolution":"250 km" }, - "ocean": { - "description": "MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "HAMOCC5.1", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"HAMOCC5.1", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE4", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4", + "native_nominal_resolution":"100 km" } }, - "release_year": "2018", - "source_id": "NorESM1-F" + "release_year":"2018", + "source_id":"NorESM1-F" }, - "NorESM2-LM": { - "activity_participation": [ + "NorESM2-LM":{ + "activity_participation":[ "AerChemMIP", "C4MIP", "CDRMIP", @@ -7325,61 +7325,61 @@ "ScenarioMIP", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NCC" ], - "label": "NorESM2-LM", - "label_extended": "NorESM2-LM (low atmosphere-medium ocean resolution, GHG concentration driven)", - "license_info": { - "exceptions_contact": "@met.no <- noresm-ncc", - "history": "2019-08-15: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"NorESM2-LM", + "label_extended":"NorESM2-LM (low atmosphere-medium ocean resolution, GHG concentration driven)", + "license_info":{ + "exceptions_contact":"@met.no <- noresm-ncc", + "history":"2019-08-15: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "OsloAero", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"OsloAero", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "OsloChemSimp", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"OsloChemSimp", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "CLM", - "native_nominal_resolution": "250 km" + "land":{ + "description":"CLM", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "CISM", - "native_nominal_resolution": "250 km" + "landIce":{ + "description":"CISM", + "native_nominal_resolution":"250 km" }, - "ocean": { - "description": "MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "HAMOCC", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"HAMOCC", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE", + "native_nominal_resolution":"100 km" } }, - "release_year": "2017", - "source_id": "NorESM2-LM" + "release_year":"2017", + "source_id":"NorESM2-LM" }, - "NorESM2-MM": { - "activity_participation": [ + "NorESM2-MM":{ + "activity_participation":[ "AerChemMIP", "CFMIP", "CMIP", @@ -7388,339 +7388,339 @@ "RFMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NCC" ], - "label": "NorESM2-MM", - "label_extended": "NorESM2-MM (medium atmosphere-medium ocean resolution, GHG concentration driven)", - "license_info": { - "exceptions_contact": "@met.no <- noresm-ncc", - "history": "2019-11-08: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"NorESM2-MM", + "label_extended":"NorESM2-MM (medium atmosphere-medium ocean resolution, GHG concentration driven)", + "license_info":{ + "exceptions_contact":"@met.no <- noresm-ncc", + "history":"2019-11-08: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "OsloAero", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"OsloAero", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "CAM-OSLO (1 degree resolution; 288 x 192; 32 levels; top level 3 mb)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"CAM-OSLO (1 degree resolution; 288 x 192; 32 levels; top level 3 mb)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "OsloChemSimp", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"OsloChemSimp", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "CLM", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "CISM", - "native_nominal_resolution": "100 km" + "landIce":{ + "description":"CISM", + "native_nominal_resolution":"100 km" }, - "ocean": { - "description": "MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "HAMOCC", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"HAMOCC", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE", + "native_nominal_resolution":"100 km" } }, - "release_year": "2017", - "source_id": "NorESM2-MM" + "release_year":"2017", + "source_id":"NorESM2-MM" }, - "PCMDI-test-1-0": { - "activity_participation": [ + "PCMDI-test-1-0":{ + "activity_participation":[ "CMIP" ], - "cohort": [ + "cohort":[ "Registered" ], - "institution_id": [ + "institution_id":[ "PCMDI" ], - "label": "PCMDI-test 1.0", - "label_extended": "PCMDI-test 1.0 (This entry is free text for users to contribute verbose information)", - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "label":"PCMDI-test 1.0", + "label_extended":"PCMDI-test 1.0 (This entry is free text for users to contribute verbose information)", + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "Earth1.0-gettingHotter (360 x 180 longitude/latitude; 50 levels; top level 0.1 mb)", - "native_nominal_resolution": "1x1 degree" + "atmos":{ + "description":"Earth1.0-gettingHotter (360 x 180 longitude/latitude; 50 levels; top level 0.1 mb)", + "native_nominal_resolution":"1x1 degree" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "Earth1.0", - "native_nominal_resolution": "1x1 degree" + "land":{ + "description":"Earth1.0", + "native_nominal_resolution":"1x1 degree" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "BlueMarble1.0-warming (360 x 180 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "1x1 degree" + "ocean":{ + "description":"BlueMarble1.0-warming (360 x 180 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"1x1 degree" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "Declining1.0-warming (360 x 180 longitude/latitude)", - "native_nominal_resolution": "1x1 degree" + "seaIce":{ + "description":"Declining1.0-warming (360 x 180 longitude/latitude)", + "native_nominal_resolution":"1x1 degree" } }, - "release_year": "1989", - "source_id": "PCMDI-test-1-0" + "release_year":"1989", + "source_id":"PCMDI-test-1-0" }, - "RRTMG-LW-4-91": { - "activity_participation": [ + "RRTMG-LW-4-91":{ + "activity_participation":[ "RFMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "AER" ], - "label": "RRTMG-LW 4.91", - "label_extended": "RRTM for GCMs v4.91, longwave", - "license_info": { - "exceptions_contact": "@aer.com <- aer_rrtmg", - "history": "2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"RRTMG-LW 4.91", + "label_extended":"RRTM for GCMs v4.91, longwave", + "license_info":{ + "exceptions_contact":"@aer.com <- aer_rrtmg", + "history":"2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "none", - "native_nominal_resolution": "none" + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "none", - "native_nominal_resolution": "none" + "land":{ + "description":"none", + "native_nominal_resolution":"none" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2017", - "source_id": "RRTMG-LW-4-91" + "release_year":"2017", + "source_id":"RRTMG-LW-4-91" }, - "RRTMG-SW-4-02": { - "activity_participation": [ + "RRTMG-SW-4-02":{ + "activity_participation":[ "RFMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "AER" ], - "label": "RRTMG-SW 4.02", - "label_extended": "RRTM for GCMs v4.02, shortwave", - "license_info": { - "exceptions_contact": "@aer.com <- aer_rrtmg", - "history": "2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"RRTMG-SW 4.02", + "label_extended":"RRTM for GCMs v4.02, shortwave", + "license_info":{ + "exceptions_contact":"@aer.com <- aer_rrtmg", + "history":"2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "none", - "native_nominal_resolution": "none" + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "none", - "native_nominal_resolution": "none" + "land":{ + "description":"none", + "native_nominal_resolution":"none" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2017", - "source_id": "RRTMG-SW-4-02" + "release_year":"2017", + "source_id":"RRTMG-SW-4-02" }, - "RTE-RRTMGP-181204": { - "activity_participation": [ + "RTE-RRTMGP-181204":{ + "activity_participation":[ "RFMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "RTE-RRTMGP-Consortium" ], - "label": "RTE+RRTMGP (2018-12-04 full-resolution)", - "label_extended": "Radiative Transfer for Energetics using RRTM for GCM applications - Parallel (2018-12-04 full-resolution)", - "license_info": { - "exceptions_contact": "@aer.com <- aer_rrtmgp", - "history": "2019-10-07: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"RTE+RRTMGP (2018-12-04 full-resolution)", + "label_extended":"Radiative Transfer for Energetics using RRTM for GCM applications - Parallel (2018-12-04 full-resolution)", + "license_info":{ + "exceptions_contact":"@aer.com <- aer_rrtmgp", + "history":"2019-10-07: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "none", - "native_nominal_resolution": "none" + "model_component":{ + "aerosol":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmos": { - "description": "none", - "native_nominal_resolution": "none" + "atmos":{ + "description":"none", + "native_nominal_resolution":"none" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "none", - "native_nominal_resolution": "none" + "land":{ + "description":"none", + "native_nominal_resolution":"none" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "none", - "native_nominal_resolution": "none" + "ocean":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "none", - "native_nominal_resolution": "none" + "seaIce":{ + "description":"none", + "native_nominal_resolution":"none" } }, - "release_year": "2019", - "source_id": "RTE-RRTMGP-181204" + "release_year":"2019", + "source_id":"RTE-RRTMGP-181204" }, - "SAM0-UNICON": { - "activity_participation": [ + "SAM0-UNICON":{ + "activity_participation":[ "CMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "SNU" ], - "label": "SAM0-UNICON", - "label_extended": "SAM0-UNICON (SNU Atmosphere Model version 0 with Unified Convection Scheme)", - "license_info": { - "exceptions_contact": "@snu.ac.kr <- sungsup", - "history": "2019-03-23: initially published under CC BY-SA 4.0; 2022-10-12: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"SAM0-UNICON", + "label_extended":"SAM0-UNICON (SNU Atmosphere Model version 0 with Unified Convection Scheme)", + "license_info":{ + "exceptions_contact":"@snu.ac.kr <- sungsup", + "history":"2019-03-23: initially published under CC BY-SA 4.0; 2022-10-12: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "MAM3", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"MAM3", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "CAM5.3 with UNICON (1deg; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"CAM5.3 with UNICON (1deg; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "CLM4.0", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM4.0", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "POP2 (Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"POP2 (Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE4.0", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4.0", + "native_nominal_resolution":"100 km" } }, - "release_year": "2017", - "source_id": "SAM0-UNICON" + "release_year":"2017", + "source_id":"SAM0-UNICON" }, - "TaiESM1": { - "activity_participation": [ + "TaiESM1":{ + "activity_participation":[ "AerChemMIP", "CFMIP", "CMIP", @@ -7731,177 +7731,177 @@ "RFMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "AS-RCEC" ], - "label": "TaiESM 1.0", - "label_extended": "Taiwan Earth System Model 1.0", - "license_info": { - "exceptions_contact": "@gate.sinica.edu.tw <- leelupin", - "history": "2019-12-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"TaiESM 1.0", + "label_extended":"Taiwan Earth System Model 1.0", + "license_info":{ + "exceptions_contact":"@gate.sinica.edu.tw <- leelupin", + "history":"2019-12-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "SNAP (same grid as atmos)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"SNAP (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "SNAP (same grid as atmos)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"SNAP (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "CLM4.0 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM4.0 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE4", - "native_nominal_resolution": "50 km" + "seaIce":{ + "description":"CICE4", + "native_nominal_resolution":"50 km" } }, - "release_year": "2018", - "source_id": "TaiESM1" + "release_year":"2018", + "source_id":"TaiESM1" }, - "TaiESM1-TIMCOM": { - "activity_participation": [ + "TaiESM1-TIMCOM":{ + "activity_participation":[ "CMIP", "OMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NTU" ], - "label": "TaiESM1-TIMCOM", - "label_extended": "Taiwan Earth System Model 1.0 using TIMCOM ocean model", - "license_info": { - "exceptions_contact": "@ntu.edu.tw <- tsengyh", - "history": "2020-09-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"TaiESM1-TIMCOM", + "label_extended":"Taiwan Earth System Model 1.0 using TIMCOM ocean model", + "license_info":{ + "exceptions_contact":"@ntu.edu.tw <- tsengyh", + "history":"2020-09-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "SNAP (same grid as atmos)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"SNAP (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "SNAP (same grid as atmos)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"SNAP (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "CLM4.0 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM4.0 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "TIMCOM (TIMCOMv1.7, primarily 1deg; 360 x 288 longitude/latitude; 45 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"TIMCOM (TIMCOMv1.7, primarily 1deg; 360 x 288 longitude/latitude; 45 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE4", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4", + "native_nominal_resolution":"100 km" } }, - "release_year": "2020", - "source_id": "TaiESM1-TIMCOM" + "release_year":"2020", + "source_id":"TaiESM1-TIMCOM" }, - "TaiESM1-TIMCOM2": { - "activity_participation": [ + "TaiESM1-TIMCOM2":{ + "activity_participation":[ "CMIP", "OMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "NTU" ], - "label": "TaiESM1-TIMCOM2", - "label_extended": "Taiwan Earth System Model 1.0 using TIMCOM ocean model 2.0", - "license_info": { - "exceptions_contact": "@ntu.edu.tw <- tsengyh", - "history": "2021-12-13: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"TaiESM1-TIMCOM2", + "label_extended":"Taiwan Earth System Model 1.0 using TIMCOM ocean model 2.0", + "license_info":{ + "exceptions_contact":"@ntu.edu.tw <- tsengyh", + "history":"2021-12-13: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "SNAP (same grid as atmos)", - "native_nominal_resolution": "100 km" + "model_component":{ + "aerosol":{ + "description":"SNAP (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "atmos": { - "description": "TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", - "native_nominal_resolution": "100 km" + "atmos":{ + "description":"TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", + "native_nominal_resolution":"100 km" }, - "atmosChem": { - "description": "SNAP (same grid as atmos)", - "native_nominal_resolution": "100 km" + "atmosChem":{ + "description":"SNAP (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "land": { - "description": "CLM4.0 (same grid as atmos)", - "native_nominal_resolution": "100 km" + "land":{ + "description":"CLM4.0 (same grid as atmos)", + "native_nominal_resolution":"100 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "TIMCOM (TIMCOMv2.2, primarily 1deg; 320 x 288 longitude/latitude; 55 levels; top grid cell 0-10 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"TIMCOM (TIMCOMv2.2, primarily 1deg; 320 x 288 longitude/latitude; 55 levels; top grid cell 0-10 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE4 (same grid as ocean)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE4 (same grid as ocean)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2021", - "source_id": "TaiESM1-TIMCOM2" + "release_year":"2021", + "source_id":"TaiESM1-TIMCOM2" }, - "UKESM1-0-LL": { - "activity_participation": [ + "UKESM1-0-LL":{ + "activity_participation":[ "AerChemMIP", "C4MIP", "CDRMIP", @@ -7916,190 +7916,190 @@ "ScenarioMIP", "VolMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MOHC", "NERC", "NIMS-KMA", "NIWA" ], - "label": "UKESM1.0-LL", - "label_extended": "UKESM1.0-N96ORCA1", - "license_info": { - "exceptions_contact": "@metoffice.gov.uk <- cmip6.ukesm1", - "history": "2019-04-04: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"UKESM1.0-LL", + "label_extended":"UKESM1.0-N96ORCA1", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", + "history":"2019-04-04: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "UKCA-GLOMAP-mode", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "UKCA-StratTrop", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"UKCA-StratTrop", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "JULES-ES-1.0", - "native_nominal_resolution": "250 km" + "land":{ + "description":"JULES-ES-1.0", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "MEDUSA2", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"MEDUSA2", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2018", - "source_id": "UKESM1-0-LL" + "release_year":"2018", + "source_id":"UKESM1-0-LL" }, - "UKESM1-1-LL": { - "activity_participation": [ + "UKESM1-1-LL":{ + "activity_participation":[ "CMIP", "ScenarioMIP" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MOHC", "NERC", "NIMS-KMA", "NIWA" ], - "label": "UKESM1.1-LL", - "label_extended": "UKESM1.1-N96ORCA1", - "license_info": { - "exceptions_contact": "@metoffice.gov.uk <- cmip6.ukesm1", - "history": "2022-05-04: initially published under CC BY-SA 4.0; 2022-05-04: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"UKESM1.1-LL", + "label_extended":"UKESM1.1-N96ORCA1", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", + "history":"2022-05-04: initially published under CC BY-SA 4.0; 2022-05-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "UKCA-GLOMAP-mode", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "UKCA-StratTrop", - "native_nominal_resolution": "250 km" + "atmosChem":{ + "description":"UKCA-StratTrop", + "native_nominal_resolution":"250 km" }, - "land": { - "description": "JULES-ES-1.0", - "native_nominal_resolution": "250 km" + "land":{ + "description":"JULES-ES-1.0", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "none", - "native_nominal_resolution": "none" + "landIce":{ + "description":"none", + "native_nominal_resolution":"none" }, - "ocean": { - "description": "NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "MEDUSA2", - "native_nominal_resolution": "100 km" + "ocnBgchem":{ + "description":"MEDUSA2", + "native_nominal_resolution":"100 km" }, - "seaIce": { - "description": "CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2021", - "source_id": "UKESM1-1-LL" + "release_year":"2021", + "source_id":"UKESM1-1-LL" }, - "UKESM1-ice-LL": { - "activity_participation": [ + "UKESM1-ice-LL":{ + "activity_participation":[ "ISMIP6" ], - "cohort": [ + "cohort":[ "Published" ], - "institution_id": [ + "institution_id":[ "MOHC", "NERC" ], - "label": "UKESM1.ice-LL", - "label_extended": "UKESM1.ice-N96ORCA1", - "license_info": { - "exceptions_contact": "@metoffice.gov.uk <- cmip6.ukesm1", - "history": "2022-02-11: initially published under CC BY-SA 4.0; 2022-02-11: relaxed to CC BY 4.0", - "id": "CC BY 4.0", - "license": "Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info": "https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url": "https://creativecommons.org/licenses/by/4.0/" + "label":"UKESM1.ice-LL", + "label_extended":"UKESM1.ice-N96ORCA1", + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", + "history":"2022-02-11: initially published under CC BY-SA 4.0; 2022-02-11: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" }, - "model_component": { - "aerosol": { - "description": "UKCA-GLOMAP-mode", - "native_nominal_resolution": "250 km" + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "native_nominal_resolution":"250 km" }, - "atmos": { - "description": "MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution": "250 km" + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "native_nominal_resolution":"250 km" }, - "atmosChem": { - "description": "none", - "native_nominal_resolution": "none" + "atmosChem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "land": { - "description": "JULES-ISMIP6-1.0", - "native_nominal_resolution": "250 km" + "land":{ + "description":"JULES-ISMIP6-1.0", + "native_nominal_resolution":"250 km" }, - "landIce": { - "description": "BISICLES-UKESM-ISMIP6-1.0", - "native_nominal_resolution": "5 km" + "landIce":{ + "description":"BISICLES-UKESM-ISMIP6-1.0", + "native_nominal_resolution":"5 km" }, - "ocean": { - "description": "NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution": "100 km" + "ocean":{ + "description":"NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "native_nominal_resolution":"100 km" }, - "ocnBgchem": { - "description": "none", - "native_nominal_resolution": "none" + "ocnBgchem":{ + "description":"none", + "native_nominal_resolution":"none" }, - "seaIce": { - "description": "CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", - "native_nominal_resolution": "100 km" + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "native_nominal_resolution":"100 km" } }, - "release_year": "2019", - "source_id": "UKESM1-ice-LL" + "release_year":"2019", + "source_id":"UKESM1-ice-LL" } }, - "version_metadata": { - "CV_collection_modified": "Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version": "6.2.58.79", - "author": "Paul J. Durack ", - "institution_id": "PCMDI", - "previous_commit": "1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "source_id_CV_modified": "Fri Apr 11 10:41:49 2025 -0700", - "source_id_CV_note": "Revised IPSL-CM6A-ATM-LR-REPROBUS source_id entry", - "specs_doc": "v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + "version_metadata":{ + "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", + "CV_collection_version":"6.2.58.79", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", + "source_id_CV_modified":"Fri Apr 11 10:41:49 2025 -0700", + "source_id_CV_note":"Revised IPSL-CM6A-ATM-LR-REPROBUS source_id entry", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" } }