From af4ae15f6421a2d69987e8ee39aa4f5d47ebc866 Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal Date: Thu, 8 Feb 2024 09:58:43 +0100 Subject: [PATCH 01/11] feat: adding TOPAZ5_SIAGE and WMTS XYZ parsing --- catalogs/polar.yaml | 1 + collections/TOPAZ5_SIAGE.yaml | 37 ++++++++++++++++++++++++++++ generators/generate_indicators.py | 41 +++++++++++++++++++++++++------ generators/utils.py | 27 ++++++++++++++------ 4 files changed, 91 insertions(+), 15 deletions(-) create mode 100644 collections/TOPAZ5_SIAGE.yaml diff --git a/catalogs/polar.yaml b/catalogs/polar.yaml index 78865368..b83cc51e 100644 --- a/catalogs/polar.yaml +++ b/catalogs/polar.yaml @@ -13,3 +13,4 @@ collections: - Polartep_Snow_specific_surface_area_demo - Polartep_SeaIce_demo - N12_1_sea_ice_concentration_arctic + - TOPAZ5_SIAGE diff --git a/collections/TOPAZ5_SIAGE.yaml b/collections/TOPAZ5_SIAGE.yaml new file mode 100644 index 00000000..7b2b15d2 --- /dev/null +++ b/collections/TOPAZ5_SIAGE.yaml @@ -0,0 +1,37 @@ +Name: TOPAZ5_SIAGE +Title: Age of sea ice Arctic Ocean (days) +EodashIdentifier: TOPAZ5_SIAGE +Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model + - placeholder +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts + Type: wmts + Name: marinedatastore + LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/siage + ColormapName: viridis + Elevation: 0 + Rescale: [0,1200] +Legend: TOPAZ5_SIAGE/cm_legend.png +Image: TOPAZ5_SIAGE/TOPAZ5_SIAGE.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." + DOI: 10.48670/moi-00001 diff --git a/generators/generate_indicators.py b/generators/generate_indicators.py index 54371bbd..632b2696 100644 --- a/generators/generate_indicators.py +++ b/generators/generate_indicators.py @@ -19,7 +19,7 @@ from sh_endpoint import get_SH_token from utils import ( create_geojson_point, - retrieveExtentFromWMS, + retrieveExtentFromWMSWMTS, generateDateIsostringsFromInterval, RaisingThread, ) @@ -108,12 +108,12 @@ def process_collection_file(config, file_path, catalog): add_to_catalog(collection, catalog, resource, data) elif resource["Name"] == "VEDA": handle_VEDA_endpoint(config, resource, data, catalog) + elif resource["Name"] == "marinedatastore": + handle_WMS_endpoint(config, resource, data, catalog, wmts=True) elif resource["Name"] == "xcube": handle_xcube_endpoint(config, resource, data, catalog) elif resource["Name"] == "WMS": handle_WMS_endpoint(config, resource, data, catalog) - elif resource["Name"] == "GeoDB Vector Tiles": - handle_GeoDB_Tiles_endpoint(config, resource, data, catalog) elif resource["Name"] == "Collection-only": handle_collection_only(config, resource, data, catalog) else: @@ -136,11 +136,11 @@ def handle_collection_only(config, endpoint, data, catalog): add_collection_information(config, collection, data) add_to_catalog(collection, catalog, None, data) -def handle_WMS_endpoint(config, endpoint, data, catalog): +def handle_WMS_endpoint(config, endpoint, data, catalog, wmts=False): collection, times = get_or_create_collection(catalog, data["Name"], data, config, endpoint) spatial_extent = collection.extent.spatial.to_dict().get("bbox", [-180, -90, 180, 90])[0] if not endpoint.get("Type") == "OverwriteTimes" and not endpoint.get("OverwriteBBox"): - spatial_extent, times = retrieveExtentFromWMS(endpoint["EndPoint"], endpoint["LayerId"]) + spatial_extent, times = retrieveExtentFromWMSWMTS(endpoint["EndPoint"], endpoint["LayerId"], wmts=wmts) # Create an item per time to allow visualization in stac clients styles = None @@ -187,7 +187,6 @@ def handle_xcube_endpoint(config, endpoint, data, catalog): add_example_info(root_collection, data, endpoint, config) add_to_catalog(root_collection, catalog, endpoint, data) - def get_or_create_collection(catalog, collection_id, data, config, endpoint): # Check if collection already in catalog for collection in catalog.get_collections(): @@ -577,7 +576,35 @@ def add_visualization_info(stac_object, data, endpoint, file_url=None, time=None title="xcube tiles", ) ) - pass + elif endpoint["Type"] == "wmts": + tilematrixset = endpoint.get("TilematrixSet", "EPSG:3857") + target_url = "%s?service=WMTS&version=1.0.0&request=GetTile&tilematrixset=%s&tilematrix={z}&tilerow={y}&tilecol={x}&layer=%s&time={time}"%( + endpoint["EndPoint"], + tilematrixset, + endpoint["LayerId"], + ) + # set parameters values only if provided in config + # special for marine store + if elevation:= endpoint.get("Elevation"): + target_url += "&elevation=%s" % elevation + if cbar:= endpoint.get("ColormapName"): + target_url += "&cbar=%s" % cbar + if endpoint.get("Rescale"): + vmin = endpoint["Rescale"][0] + vmax = endpoint["Rescale"][1] + target_url += "&range=%s/%s" % (vmin, vmax) + if logarithmic := endpoint.get("Logarithmic"): + target_url += "&logScale=%s" % logarithmic + if noClamp := endpoint.get("NoClamp"): + target_url += "&noClamp=%s" % noClamp + stac_object.add_link( + Link( + rel="xyz", + target=target_url, + media_type="image/png", + title="wmts tiles %s" % endpoint.get('Name'), + ) + ) elif endpoint["Name"] == "VEDA": if endpoint["Type"] == "cog": target_url = generate_veda_link(endpoint, file_url) diff --git a/generators/utils.py b/generators/utils.py index b92877ac..f456b41b 100644 --- a/generators/utils.py +++ b/generators/utils.py @@ -8,6 +8,7 @@ from typing import Iterator from six import string_types from owslib.wms import WebMapService +from owslib.wmts import WebMapTileService from dateutil import parser import threading @@ -42,13 +43,23 @@ def create_geojson_point(lon, lat): return feature_collection -def retrieveExtentFromWMS(capabilties_url, layer): +def retrieveExtentFromWMSWMTS(capabilties_url, layer, wmts=False): times = [] - wms = None + service = None try: - wms = WebMapService(capabilties_url, version='1.1.1') - if layer in list(wms.contents) and wms[layer].timepositions != None: - for tp in wms[layer].timepositions: + if not wmts: + service = WebMapService(capabilties_url, version='1.1.1') + else: + service = WebMapTileService(capabilties_url) + if layer in list(service.contents): + if not wmts and service[layer].timepositions != None: + tps = service[layer].timepositions + elif wmts: + # due to https://github.com/geopython/OWSLib/issues/368 + # using custom version from fork + tps = ["2021-07-05T00:00:00Z/2024-02-14T00:00:00Z/P1D"] + # tps = service[layer].dimensions.time.values + for tp in tps: tp_def = tp.split("/") if len(tp_def)>1: dates = interval( @@ -63,14 +74,14 @@ def retrieveExtentFromWMS(capabilties_url, layer): # get unique times times = reduce(lambda re, x: re+[x] if x not in re else re, times, []) except Exception as e: - print("Issue extracting information from WMS capabilities") + print("Issue extracting information from service capabilities") template = "An exception of type {0} occurred. Arguments:\n{1!r}" message = template.format(type(e).__name__, e.args) print (message) bbox = [-180,-90,180,90] - if wms and wms[layer].boundingBoxWGS84: - bbox = [float(x) for x in wms[layer].boundingBoxWGS84] + if service and service[layer].boundingBoxWGS84: + bbox = [float(x) for x in service[layer].boundingBoxWGS84] return bbox, times def interval(start: datetime, stop: datetime, delta: timedelta) -> Iterator[datetime]: From 457b20686608c77727ffafc44e5fa9bcf63a0677 Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal Date: Thu, 8 Feb 2024 09:59:05 +0100 Subject: [PATCH 02/11] update requirements.txt --- generators/requirements.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/generators/requirements.txt b/generators/requirements.txt index 0a3ead5e..e2da9e0c 100644 --- a/generators/requirements.txt +++ b/generators/requirements.txt @@ -13,6 +13,7 @@ python-dateutil<3 swiftspec==0.0.2 mergedeep structlog<22.0 -OWSLib<0.29.3 +wheel # for OWSLib from git +OWSLib @ git+https://github.com/lubojr/OWSLib spdx-lookup<=0.3.3 -pystac[validation]<=1.8.3 \ No newline at end of file +pystac[validation]<=1.8.3 From 56ff17225c2e02b4350a9724de8f9f9dde6b8439 Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal Date: Thu, 8 Feb 2024 10:33:39 +0100 Subject: [PATCH 03/11] chore: fix style syntax of marinedatastore --- generators/generate_indicators.py | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/generators/generate_indicators.py b/generators/generate_indicators.py index 632b2696..34c9bbb4 100644 --- a/generators/generate_indicators.py +++ b/generators/generate_indicators.py @@ -585,18 +585,22 @@ def add_visualization_info(stac_object, data, endpoint, file_url=None, time=None ) # set parameters values only if provided in config # special for marine store - if elevation:= endpoint.get("Elevation"): - target_url += "&elevation=%s" % elevation - if cbar:= endpoint.get("ColormapName"): - target_url += "&cbar=%s" % cbar - if endpoint.get("Rescale"): - vmin = endpoint["Rescale"][0] - vmax = endpoint["Rescale"][1] - target_url += "&range=%s/%s" % (vmin, vmax) - if logarithmic := endpoint.get("Logarithmic"): - target_url += "&logScale=%s" % logarithmic - if noClamp := endpoint.get("NoClamp"): - target_url += "&noClamp=%s" % noClamp + if endpoint["Name"] == "marinedatastore": + if elevation:= endpoint.get("Elevation"): + target_url += "&elevation=%s" % elevation + style_variable = "" + if cmap:= endpoint.get("ColormapName"): + style_variable += "cmap:%s" % cmap + if endpoint.get("Rescale"): + vmin = endpoint["Rescale"][0] + vmax = endpoint["Rescale"][1] + style_variable += ",range:%s/%s" % (vmin, vmax) + if endpoint.get("Logarithmic"): + style_variable += ",logScale" + if endpoint.get("NoClamp"): + style_variable += ",noClamp" + if style_variable != "": + target_url += "&style=%s" % style_variable stac_object.add_link( Link( rel="xyz", From 0c0160b5cb52111b712b6bd08560c7c8af1d4f56 Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal Date: Thu, 8 Feb 2024 19:13:07 +0100 Subject: [PATCH 04/11] fix WMTS time domain --- collections/TOPAZ5_SIAGE.yaml | 1 + generators/generate_indicators.py | 5 ++++- generators/requirements.txt | 2 +- generators/utils.py | 8 ++++---- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/collections/TOPAZ5_SIAGE.yaml b/collections/TOPAZ5_SIAGE.yaml index 7b2b15d2..908d65f6 100644 --- a/collections/TOPAZ5_SIAGE.yaml +++ b/collections/TOPAZ5_SIAGE.yaml @@ -15,6 +15,7 @@ Tags: - placeholder Resources: - EndPoint: https://wmts.marine.copernicus.eu/teroWmts + CapabilitiesUrl: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311 Type: wmts Name: marinedatastore LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/siage diff --git a/generators/generate_indicators.py b/generators/generate_indicators.py index 34c9bbb4..221d4c28 100644 --- a/generators/generate_indicators.py +++ b/generators/generate_indicators.py @@ -140,7 +140,10 @@ def handle_WMS_endpoint(config, endpoint, data, catalog, wmts=False): collection, times = get_or_create_collection(catalog, data["Name"], data, config, endpoint) spatial_extent = collection.extent.spatial.to_dict().get("bbox", [-180, -90, 180, 90])[0] if not endpoint.get("Type") == "OverwriteTimes" and not endpoint.get("OverwriteBBox"): - spatial_extent, times = retrieveExtentFromWMSWMTS(endpoint["EndPoint"], endpoint["LayerId"], wmts=wmts) + # some endpoints allow "narrowed-down" capabilities per-layer, which we utilize to not + # have to process full service capabilities XML + capabilities_url = endpoint.get("CapabilitiesUrl") or endpoint["EndPoint"] + spatial_extent, times = retrieveExtentFromWMSWMTS(capabilities_url, endpoint["LayerId"], wmts=wmts) # Create an item per time to allow visualization in stac clients styles = None diff --git a/generators/requirements.txt b/generators/requirements.txt index e2da9e0c..cd48f579 100644 --- a/generators/requirements.txt +++ b/generators/requirements.txt @@ -14,6 +14,6 @@ swiftspec==0.0.2 mergedeep structlog<22.0 wheel # for OWSLib from git -OWSLib @ git+https://github.com/lubojr/OWSLib +OWSLib @ git+https://github.com/lubojr/OWSLib@368-wmts-dimensions-support # due to https://github.com/geopython/OWSLib/issues/368, using custom version from fork spdx-lookup<=0.3.3 pystac[validation]<=1.8.3 diff --git a/generators/utils.py b/generators/utils.py index f456b41b..985145ea 100644 --- a/generators/utils.py +++ b/generators/utils.py @@ -43,6 +43,7 @@ def create_geojson_point(lon, lat): return feature_collection + def retrieveExtentFromWMSWMTS(capabilties_url, layer, wmts=False): times = [] service = None @@ -55,10 +56,9 @@ def retrieveExtentFromWMSWMTS(capabilties_url, layer, wmts=False): if not wmts and service[layer].timepositions != None: tps = service[layer].timepositions elif wmts: - # due to https://github.com/geopython/OWSLib/issues/368 - # using custom version from fork - tps = ["2021-07-05T00:00:00Z/2024-02-14T00:00:00Z/P1D"] - # tps = service[layer].dimensions.time.values + # specifically taking 'time' dimension + if time_dimension := service[layer].dimensions.get('time'): + tps = time_dimension["values"] for tp in tps: tp_def = tp.split("/") if len(tp_def)>1: From 76d81cd9e09cf6049115ef8be13183c24be5534e Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal Date: Mon, 12 Feb 2024 15:52:40 +0100 Subject: [PATCH 05/11] fix: WMTS adhere to STAC extension as capabilities we anyway need to override client URL in eodash v4 so let's at least keep the URL standard for other clients --- collections/TOPAZ5_SIAGE.yaml | 10 +++---- generators/generate_indicators.py | 43 ++++++++++++------------------- 2 files changed, 21 insertions(+), 32 deletions(-) diff --git a/collections/TOPAZ5_SIAGE.yaml b/collections/TOPAZ5_SIAGE.yaml index 908d65f6..0e600bfe 100644 --- a/collections/TOPAZ5_SIAGE.yaml +++ b/collections/TOPAZ5_SIAGE.yaml @@ -14,14 +14,12 @@ Tags: - model - placeholder Resources: - - EndPoint: https://wmts.marine.copernicus.eu/teroWmts - CapabilitiesUrl: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311 - Type: wmts + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311 + Type: WMTSCapabilities Name: marinedatastore LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/siage - ColormapName: viridis - Elevation: 0 - Rescale: [0,1200] + Dimensions: + elevation: 0 Legend: TOPAZ5_SIAGE/cm_legend.png Image: TOPAZ5_SIAGE/TOPAZ5_SIAGE.png diff --git a/generators/generate_indicators.py b/generators/generate_indicators.py index 0301ac13..ba09d5fd 100644 --- a/generators/generate_indicators.py +++ b/generators/generate_indicators.py @@ -739,37 +739,28 @@ def add_visualization_info(stac_object, data, endpoint, file_url=None, time=None title="xcube tiles", ) ) - elif endpoint["Type"] == "wmts": - tilematrixset = endpoint.get("TilematrixSet", "EPSG:3857") - target_url = "%s?service=WMTS&version=1.0.0&request=GetTile&tilematrixset=%s&tilematrix={z}&tilerow={y}&tilecol={x}&layer=%s&time={time}"%( - endpoint["EndPoint"], - tilematrixset, - endpoint["LayerId"], + elif endpoint["Type"] == "WMTSCapabilities": + target_url = "%s"%( + endpoint.get('EndPoint'), ) - # set parameters values only if provided in config - # special for marine store - if endpoint["Name"] == "marinedatastore": - if elevation:= endpoint.get("Elevation"): - target_url += "&elevation=%s" % elevation - style_variable = "" - if cmap:= endpoint.get("ColormapName"): - style_variable += "cmap:%s" % cmap - if endpoint.get("Rescale"): - vmin = endpoint["Rescale"][0] - vmax = endpoint["Rescale"][1] - style_variable += ",range:%s/%s" % (vmin, vmax) - if endpoint.get("Logarithmic"): - style_variable += ",logScale" - if endpoint.get("NoClamp"): - style_variable += ",noClamp" - if style_variable != "": - target_url += "&style=%s" % style_variable + extra_fields={ + "wmts:layer": endpoint.get('LayerId') + } + dimensions = {} + if time != None: + dimensions["time"] = time + if dimensions_config := endpoint.get('Dimensions', {}): + for key, value in dimensions_config.items(): + dimensions[key] = value + if dimensions != {}: + extra_fields["wmts:dimensions"] = dimensions stac_object.add_link( Link( - rel="xyz", + rel="wmts", target=target_url, media_type="image/png", - title="wmts tiles %s" % endpoint.get('Name'), + title="wmts capabilities", + extra_fields=extra_fields, ) ) elif endpoint["Name"] == "VEDA": From 3911b27a4414ca140964a7fc6c7416caa7b039b0 Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal Date: Mon, 12 Feb 2024 16:06:12 +0100 Subject: [PATCH 06/11] chore: add style as a static "dimension" --- collections/TOPAZ5_SIAGE.yaml | 1 + generators/generate_indicators.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/collections/TOPAZ5_SIAGE.yaml b/collections/TOPAZ5_SIAGE.yaml index 0e600bfe..c3a77e0d 100644 --- a/collections/TOPAZ5_SIAGE.yaml +++ b/collections/TOPAZ5_SIAGE.yaml @@ -20,6 +20,7 @@ Resources: LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/siage Dimensions: elevation: 0 + style: 'cmap:viridis,range:1/1400,noClamp' Legend: TOPAZ5_SIAGE/cm_legend.png Image: TOPAZ5_SIAGE/TOPAZ5_SIAGE.png diff --git a/generators/generate_indicators.py b/generators/generate_indicators.py index ba09d5fd..12b0aa84 100644 --- a/generators/generate_indicators.py +++ b/generators/generate_indicators.py @@ -208,7 +208,7 @@ def handle_WMS_endpoint(config, endpoint, data, catalog, wmts=False): if not endpoint.get("Type") == "OverwriteTimes" and not endpoint.get("OverwriteBBox"): # some endpoints allow "narrowed-down" capabilities per-layer, which we utilize to not # have to process full service capabilities XML - capabilities_url = endpoint.get("CapabilitiesUrl") or endpoint["EndPoint"] + capabilities_url = endpoint["EndPoint"] spatial_extent, times = retrieveExtentFromWMSWMTS(capabilities_url, endpoint["LayerId"], wmts=wmts) # Create an item per time to allow visualization in stac clients From b82bb560a2061e861ead5b43cfddf1b5d5edc5db Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal Date: Tue, 13 Feb 2024 11:23:08 +0100 Subject: [PATCH 07/11] add all needed ARCTIC_ANALYSISFORECAST_PHY_002_001 layers --- catalogs/polar.yaml | 7 ++++++ collections/TOPAZ5_SIAGE.yaml | 5 ++--- collections/TOPAZ5_SICONC.yaml | 36 +++++++++++++++++++++++++++++++ collections/TOPAZ5_SISNTHICK.yaml | 36 +++++++++++++++++++++++++++++++ collections/TOPAZ5_SITHICK.yaml | 36 +++++++++++++++++++++++++++++++ collections/TOPAZ5_VXO.yaml | 36 +++++++++++++++++++++++++++++++ collections/TOPAZ5_VXSI.yaml | 36 +++++++++++++++++++++++++++++++ collections/TOPAZ5_VYO.yaml | 36 +++++++++++++++++++++++++++++++ collections/TOPAZ5_VYSI.yaml | 36 +++++++++++++++++++++++++++++++ 9 files changed, 261 insertions(+), 3 deletions(-) create mode 100644 collections/TOPAZ5_SICONC.yaml create mode 100644 collections/TOPAZ5_SISNTHICK.yaml create mode 100644 collections/TOPAZ5_SITHICK.yaml create mode 100644 collections/TOPAZ5_VXO.yaml create mode 100644 collections/TOPAZ5_VXSI.yaml create mode 100644 collections/TOPAZ5_VYO.yaml create mode 100644 collections/TOPAZ5_VYSI.yaml diff --git a/catalogs/polar.yaml b/catalogs/polar.yaml index b83cc51e..aef485f1 100644 --- a/catalogs/polar.yaml +++ b/catalogs/polar.yaml @@ -14,3 +14,10 @@ collections: - Polartep_SeaIce_demo - N12_1_sea_ice_concentration_arctic - TOPAZ5_SIAGE + - TOPAZ5_SICONC + - TOPAZ5_SISNTHICK + - TOPAZ5_SITHICK + - TOPAZ5_VXO + - TOPAZ5_VXSI + - TOPAZ5_VYO + - TOPAZ5_VYSI diff --git a/collections/TOPAZ5_SIAGE.yaml b/collections/TOPAZ5_SIAGE.yaml index c3a77e0d..8c35ea1c 100644 --- a/collections/TOPAZ5_SIAGE.yaml +++ b/collections/TOPAZ5_SIAGE.yaml @@ -12,7 +12,6 @@ Agency: - CMEMS Tags: - model - - placeholder Resources: - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311 Type: WMTSCapabilities @@ -22,7 +21,7 @@ Resources: elevation: 0 style: 'cmap:viridis,range:1/1400,noClamp' Legend: TOPAZ5_SIAGE/cm_legend.png -Image: TOPAZ5_SIAGE/TOPAZ5_SIAGE.png +Image: TOPAZ5_SIAGE/thumbnail.png Provider: - Name: E.U. Copernicus Marine Service Information (CMEMS) @@ -31,7 +30,7 @@ Provider: Roles: - producer Citation: - Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). Publication: - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_SICONC.yaml b/collections/TOPAZ5_SICONC.yaml new file mode 100644 index 00000000..6be3022e --- /dev/null +++ b/collections/TOPAZ5_SICONC.yaml @@ -0,0 +1,36 @@ +Name: TOPAZ5_SICONC +Title: Sea ice area fraction +EodashIdentifier: TOPAZ5_SICONC +Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/siconc + Dimensions: + elevation: 0 + style: 'cmap:ice,range:0/1,noClamp' +Legend: TOPAZ5_SICONC/cm_legend.png +Image: TOPAZ5_SICONC/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." + DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_SISNTHICK.yaml b/collections/TOPAZ5_SISNTHICK.yaml new file mode 100644 index 00000000..12d903e0 --- /dev/null +++ b/collections/TOPAZ5_SISNTHICK.yaml @@ -0,0 +1,36 @@ +Name: TOPAZ5_SISNTHICK +Title: Surface snow thickness +EodashIdentifier: TOPAZ5_SISNTHICK +Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/sisnthick + Dimensions: + elevation: 0 + style: 'cmap:ice,range:0/1,noClamp' +Legend: TOPAZ5_SISNTHICK/cm_legend.png +Image: TOPAZ5_SISNTHICK/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." + DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_SITHICK.yaml b/collections/TOPAZ5_SITHICK.yaml new file mode 100644 index 00000000..18c98577 --- /dev/null +++ b/collections/TOPAZ5_SITHICK.yaml @@ -0,0 +1,36 @@ +Name: TOPAZ5_SITHICK +Title: Sea ice thickness +EodashIdentifier: TOPAZ5_SITHICK +Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/sithick + Dimensions: + elevation: 0 + style: 'cmap:ice,range:0/4,noClamp' +Legend: TOPAZ5_SITHICK/cm_legend.png +Image: TOPAZ5_SITHICK/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." + DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_VXO.yaml b/collections/TOPAZ5_VXO.yaml new file mode 100644 index 00000000..42695b9d --- /dev/null +++ b/collections/TOPAZ5_VXO.yaml @@ -0,0 +1,36 @@ +Name: TOPAZ5_VXO +Title: Eastward sea water velocity (vxo) +EodashIdentifier: TOPAZ5_VXO +Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/vxo + Dimensions: + elevation: 0 + style: 'cmap:delta,range:-0.3/0.3,noClamp' +Legend: TOPAZ5_VXO/cm_legend.png +Image: TOPAZ5_VXO/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." + DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_VXSI.yaml b/collections/TOPAZ5_VXSI.yaml new file mode 100644 index 00000000..e1779e4c --- /dev/null +++ b/collections/TOPAZ5_VXSI.yaml @@ -0,0 +1,36 @@ +Name: TOPAZ5_VXSI +Title: Eastward sea ice velocity (vxsi) +EodashIdentifier: TOPAZ5_VXSI +Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/vxsi + Dimensions: + elevation: 0 + style: 'cmap:delta,range:-0.3/0.3,noClamp' +Legend: TOPAZ5_VXSI/cm_legend.png +Image: TOPAZ5_VXSI/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." + DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_VYO.yaml b/collections/TOPAZ5_VYO.yaml new file mode 100644 index 00000000..8d4c7c73 --- /dev/null +++ b/collections/TOPAZ5_VYO.yaml @@ -0,0 +1,36 @@ +Name: TOPAZ5_VYO +Title: Northward sea water velocity (vyo) +EodashIdentifier: TOPAZ5_VYO +Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/vyo + Dimensions: + elevation: 0 + style: 'cmap:delta,range:-0.3/0.3,noClamp' +Legend: TOPAZ5_VYO/cm_legend.png +Image: TOPAZ5_VYO/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." + DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_VYSI.yaml b/collections/TOPAZ5_VYSI.yaml new file mode 100644 index 00000000..0c7334e1 --- /dev/null +++ b/collections/TOPAZ5_VYSI.yaml @@ -0,0 +1,36 @@ +Name: TOPAZ5_VYSI +Title: Northward sea ice velocity (vysi) +EodashIdentifier: TOPAZ5_VYSI +Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/vysi + Dimensions: + elevation: 0 + style: 'cmap:delta,range:-0.3/0.3,noClamp' +Legend: TOPAZ5_VYSI/cm_legend.png +Image: TOPAZ5_VYSI/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." + DOI: 10.48670/moi-00001 From c311dd39665d1fa939599bd8cf051e5ca448275b Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal Date: Tue, 13 Feb 2024 14:27:52 +0100 Subject: [PATCH 08/11] add TOPAZ4 entries --- catalogs/polar.yaml | 23 +++++++---- collections/TOPAZ4_P1D_SICONC.yaml | 39 +++++++++++++++++++ collections/TOPAZ4_P1D_SISNTHICK.yaml | 39 +++++++++++++++++++ collections/TOPAZ4_P1D_SITHICK.yaml | 39 +++++++++++++++++++ collections/TOPAZ4_P1D_VXO.yaml | 39 +++++++++++++++++++ collections/TOPAZ4_P1D_VXSI.yaml | 39 +++++++++++++++++++ collections/TOPAZ4_P1D_VYO.yaml | 39 +++++++++++++++++++ collections/TOPAZ4_P1D_VYSI.yaml | 39 +++++++++++++++++++ ...OPAZ5_SIAGE.yaml => TOPAZ5_P1D_SIAGE.yaml} | 14 +++---- ...AZ5_SICONC.yaml => TOPAZ5_P1D_SICONC.yaml} | 14 +++---- ...SNTHICK.yaml => TOPAZ5_P1D_SISNTHICK.yaml} | 14 +++---- ...5_SITHICK.yaml => TOPAZ5_P1D_SITHICK.yaml} | 14 +++---- .../{TOPAZ5_VXO.yaml => TOPAZ5_P1D_VXO.yaml} | 14 +++---- ...{TOPAZ5_VXSI.yaml => TOPAZ5_P1D_VXSI.yaml} | 14 +++---- .../{TOPAZ5_VYO.yaml => TOPAZ5_P1D_VYO.yaml} | 14 +++---- ...{TOPAZ5_VYSI.yaml => TOPAZ5_P1D_VYSI.yaml} | 14 +++---- 16 files changed, 344 insertions(+), 64 deletions(-) create mode 100644 collections/TOPAZ4_P1D_SICONC.yaml create mode 100644 collections/TOPAZ4_P1D_SISNTHICK.yaml create mode 100644 collections/TOPAZ4_P1D_SITHICK.yaml create mode 100644 collections/TOPAZ4_P1D_VXO.yaml create mode 100644 collections/TOPAZ4_P1D_VXSI.yaml create mode 100644 collections/TOPAZ4_P1D_VYO.yaml create mode 100644 collections/TOPAZ4_P1D_VYSI.yaml rename collections/{TOPAZ5_SIAGE.yaml => TOPAZ5_P1D_SIAGE.yaml} (82%) rename collections/{TOPAZ5_SICONC.yaml => TOPAZ5_P1D_SICONC.yaml} (82%) rename collections/{TOPAZ5_SISNTHICK.yaml => TOPAZ5_P1D_SISNTHICK.yaml} (81%) rename collections/{TOPAZ5_SITHICK.yaml => TOPAZ5_P1D_SITHICK.yaml} (82%) rename collections/{TOPAZ5_VXO.yaml => TOPAZ5_P1D_VXO.yaml} (82%) rename collections/{TOPAZ5_VXSI.yaml => TOPAZ5_P1D_VXSI.yaml} (82%) rename collections/{TOPAZ5_VYO.yaml => TOPAZ5_P1D_VYO.yaml} (82%) rename collections/{TOPAZ5_VYSI.yaml => TOPAZ5_P1D_VYSI.yaml} (82%) diff --git a/catalogs/polar.yaml b/catalogs/polar.yaml index aef485f1..fc6d93fa 100644 --- a/catalogs/polar.yaml +++ b/catalogs/polar.yaml @@ -13,11 +13,18 @@ collections: - Polartep_Snow_specific_surface_area_demo - Polartep_SeaIce_demo - N12_1_sea_ice_concentration_arctic - - TOPAZ5_SIAGE - - TOPAZ5_SICONC - - TOPAZ5_SISNTHICK - - TOPAZ5_SITHICK - - TOPAZ5_VXO - - TOPAZ5_VXSI - - TOPAZ5_VYO - - TOPAZ5_VYSI + - TOPAZ5_P1D_SIAGE + - TOPAZ5_P1D_SICONC + - TOPAZ5_P1D_SISNTHICK + - TOPAZ5_P1D_SITHICK + - TOPAZ5_P1D_VXO + - TOPAZ5_P1D_VXSI + - TOPAZ5_P1D_VYO + - TOPAZ5_P1D_VYSI + - TOPAZ4_P1D_SICONC + - TOPAZ4_P1D_SISNTHICK + - TOPAZ4_P1D_SITHICK + - TOPAZ4_P1D_VXO + - TOPAZ4_P1D_VXSI + - TOPAZ4_P1D_VYO + - TOPAZ4_P1D_VYSI diff --git a/collections/TOPAZ4_P1D_SICONC.yaml b/collections/TOPAZ4_P1D_SICONC.yaml new file mode 100644 index 00000000..c457b0f6 --- /dev/null +++ b/collections/TOPAZ4_P1D_SICONC.yaml @@ -0,0 +1,39 @@ +Name: TOPAZ4_P1D_SICONC +Title: Sea ice area fraction Arctic Ocean +EodashIdentifier: TOPAZ4_P1D_SICONC +Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211/siconc + Disable_Items: true + DateTimeInterval: + Start: "1991-01-01T00:00:00" + End: "2022-12-31T00:00:00" + Dimensions: + elevation: 0 + style: 'cmap:ice,range:0/1,noClamp' +Legend: TOPAZ4_P1D_SICONC/cm_legend.png +Image: TOPAZ4_P1D_SICONC/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ4b - Arctic Ocean Physics Reanalysis; ARCTIC_MULTIYEAR_PHY_002_003; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - DOI: 10.48670/moi-00007 diff --git a/collections/TOPAZ4_P1D_SISNTHICK.yaml b/collections/TOPAZ4_P1D_SISNTHICK.yaml new file mode 100644 index 00000000..dd458075 --- /dev/null +++ b/collections/TOPAZ4_P1D_SISNTHICK.yaml @@ -0,0 +1,39 @@ +Name: TOPAZ4_P1D_SISNTHICK +Title: Surface snow thickness Arctic Ocean +EodashIdentifier: TOPAZ4_P1D_SISNTHICK +Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211/sisnthick + Disable_Items: true + DateTimeInterval: + Start: "1991-01-01T00:00:00" + End: "2022-12-31T00:00:00" + Dimensions: + elevation: 0 + style: 'cmap:ice,range:0/1,noClamp' +Legend: TOPAZ4_P1D_SISNTHICK/cm_legend.png +Image: TOPAZ4_P1D_SISNTHICK/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ4b - Arctic Ocean Physics Reanalysis; ARCTIC_MULTIYEAR_PHY_002_003; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - DOI: 10.48670/moi-00007 diff --git a/collections/TOPAZ4_P1D_SITHICK.yaml b/collections/TOPAZ4_P1D_SITHICK.yaml new file mode 100644 index 00000000..8b3bac44 --- /dev/null +++ b/collections/TOPAZ4_P1D_SITHICK.yaml @@ -0,0 +1,39 @@ +Name: TOPAZ4_P1D_SITHICK +Title: Sea ice thickness Arctic Ocean +EodashIdentifier: TOPAZ4_P1D_SITHICK +Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211/sithick + Disable_Items: true + DateTimeInterval: + Start: "1991-01-01T00:00:00" + End: "2022-12-31T00:00:00" + Dimensions: + elevation: 0 + style: 'cmap:ice,range:0/4,noClamp' +Legend: TOPAZ4_P1D_SITHICK/cm_legend.png +Image: TOPAZ4_P1D_SITHICK/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ4b - Arctic Ocean Physics Reanalysis; ARCTIC_MULTIYEAR_PHY_002_003; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - DOI: 10.48670/moi-00007 diff --git a/collections/TOPAZ4_P1D_VXO.yaml b/collections/TOPAZ4_P1D_VXO.yaml new file mode 100644 index 00000000..55e50442 --- /dev/null +++ b/collections/TOPAZ4_P1D_VXO.yaml @@ -0,0 +1,39 @@ +Name: TOPAZ4_P1D_VXO +Title: Eastward sea water velocity Arctic Ocean +EodashIdentifier: TOPAZ4_P1D_VXO +Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211/vxo + Disable_Items: true + DateTimeInterval: + Start: "1991-01-01T00:00:00" + End: "2022-12-31T00:00:00" + Dimensions: + elevation: 0 + style: 'cmap:delta,range:-0.3/0.3,noClamp' +Legend: TOPAZ4_P1D_VXO/cm_legend.png +Image: TOPAZ4_P1D_VXO/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ4b - Arctic Ocean Physics Reanalysis; ARCTIC_MULTIYEAR_PHY_002_003; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - DOI: 10.48670/moi-00007 diff --git a/collections/TOPAZ4_P1D_VXSI.yaml b/collections/TOPAZ4_P1D_VXSI.yaml new file mode 100644 index 00000000..370eabb9 --- /dev/null +++ b/collections/TOPAZ4_P1D_VXSI.yaml @@ -0,0 +1,39 @@ +Name: TOPAZ4_P1D_VXSI +Title: Eastward sea ice velocity Arctic Ocean +EodashIdentifier: TOPAZ4_P1D_VXSI +Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211/vxsi + Disable_Items: true + DateTimeInterval: + Start: "1991-01-01T00:00:00" + End: "2022-12-31T00:00:00" + Dimensions: + elevation: 0 + style: 'cmap:delta,range:-0.3/0.3,noClamp' +Legend: TOPAZ4_P1D_VXSI/cm_legend.png +Image: TOPAZ4_P1D_VXSI/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ4b - Arctic Ocean Physics Reanalysis; ARCTIC_MULTIYEAR_PHY_002_003; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - DOI: 10.48670/moi-00007 diff --git a/collections/TOPAZ4_P1D_VYO.yaml b/collections/TOPAZ4_P1D_VYO.yaml new file mode 100644 index 00000000..2cb494f8 --- /dev/null +++ b/collections/TOPAZ4_P1D_VYO.yaml @@ -0,0 +1,39 @@ +Name: TOPAZ4_P1D_VYO +Title: Northward sea water velocity Arctic Ocean +EodashIdentifier: TOPAZ4_P1D_VYO +Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211/vyo + Disable_Items: true + DateTimeInterval: + Start: "1991-01-01T00:00:00" + End: "2022-12-31T00:00:00" + Dimensions: + elevation: 0 + style: 'cmap:delta,range:-0.3/0.3,noClamp' +Legend: TOPAZ4_P1D_VYO/cm_legend.png +Image: TOPAZ4_P1D_VYO/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ4b - Arctic Ocean Physics Reanalysis; ARCTIC_MULTIYEAR_PHY_002_003; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - DOI: 10.48670/moi-00007 diff --git a/collections/TOPAZ4_P1D_VYSI.yaml b/collections/TOPAZ4_P1D_VYSI.yaml new file mode 100644 index 00000000..3b02b1bd --- /dev/null +++ b/collections/TOPAZ4_P1D_VYSI.yaml @@ -0,0 +1,39 @@ +Name: TOPAZ4_P1D_VYSI +Title: Northward sea ice velocity Arctic Ocean +EodashIdentifier: TOPAZ4_P1D_VYSI +Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md +Themes: + - cryosphere +Satellite: + - placeholder +Sensor: + - placeholder +Agency: + - CMEMS +Tags: + - model +Resources: + - EndPoint: https://wmts.marine.copernicus.eu/teroWmts/ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211 + Type: WMTSCapabilities + Name: marinedatastore + LayerId: ARCTIC_MULTIYEAR_PHY_002_003/cmems_mod_arc_phy_my_topaz4_P1D-m_202211/vysi + Disable_Items: true + DateTimeInterval: + Start: "1991-01-01T00:00:00" + End: "2022-12-31T00:00:00" + Dimensions: + elevation: 0 + style: 'cmap:delta,range:-0.3/0.3,noClamp' +Legend: TOPAZ4_P1D_VYSI/cm_legend.png +Image: TOPAZ4_P1D_VYSI/thumbnail.png + +Provider: + - Name: E.U. Copernicus Marine Service Information (CMEMS) + Url: https://data.marine.copernicus.eu/ + Description: The Copernicus Marine Service (or Copernicus Marine Environment Monitoring Service) is the marine component of the Copernicus Programme of the European Union. It provides free, regular and systematic authoritative information on the state of the Blue (physical), White (sea ice) and Green (biogeochemical) ocean, on a global and regional scale. It is funded by the European Commission (EC) and implemented by Mercator Ocean International. It is designed to serve EU policies and International legal Commitments related to Ocean Governance, to cater for the needs of society at large for global ocean knowledge and to boost the Blue Economy across all maritime sectors by providing free-of-charge state-of-the-art ocean data and information. + Roles: + - producer +Citation: + Citation: TOPAZ4b - Arctic Ocean Physics Reanalysis; ARCTIC_MULTIYEAR_PHY_002_003; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Publication: + - DOI: 10.48670/moi-00007 diff --git a/collections/TOPAZ5_SIAGE.yaml b/collections/TOPAZ5_P1D_SIAGE.yaml similarity index 82% rename from collections/TOPAZ5_SIAGE.yaml rename to collections/TOPAZ5_P1D_SIAGE.yaml index 8c35ea1c..1a6e7dd9 100644 --- a/collections/TOPAZ5_SIAGE.yaml +++ b/collections/TOPAZ5_P1D_SIAGE.yaml @@ -1,7 +1,7 @@ -Name: TOPAZ5_SIAGE -Title: Age of sea ice Arctic Ocean (days) -EodashIdentifier: TOPAZ5_SIAGE -Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Name: TOPAZ5_P1D_SIAGE +Title: Age of sea ice Arctic Ocean +EodashIdentifier: TOPAZ5_P1D_SIAGE +Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: - cryosphere Satellite: @@ -20,8 +20,8 @@ Resources: Dimensions: elevation: 0 style: 'cmap:viridis,range:1/1400,noClamp' -Legend: TOPAZ5_SIAGE/cm_legend.png -Image: TOPAZ5_SIAGE/thumbnail.png +Legend: TOPAZ5_P1D_SIAGE/cm_legend.png +Image: TOPAZ5_P1D_SIAGE/thumbnail.png Provider: - Name: E.U. Copernicus Marine Service Information (CMEMS) @@ -30,7 +30,7 @@ Provider: Roles: - producer Citation: - Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Citation: TOPAZ5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). Publication: - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_SICONC.yaml b/collections/TOPAZ5_P1D_SICONC.yaml similarity index 82% rename from collections/TOPAZ5_SICONC.yaml rename to collections/TOPAZ5_P1D_SICONC.yaml index 6be3022e..9d18469e 100644 --- a/collections/TOPAZ5_SICONC.yaml +++ b/collections/TOPAZ5_P1D_SICONC.yaml @@ -1,7 +1,7 @@ -Name: TOPAZ5_SICONC -Title: Sea ice area fraction -EodashIdentifier: TOPAZ5_SICONC -Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Name: TOPAZ5_P1D_SICONC +Title: Sea ice area fraction Arctic Ocean +EodashIdentifier: TOPAZ5_P1D_SICONC +Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: - cryosphere Satellite: @@ -20,8 +20,8 @@ Resources: Dimensions: elevation: 0 style: 'cmap:ice,range:0/1,noClamp' -Legend: TOPAZ5_SICONC/cm_legend.png -Image: TOPAZ5_SICONC/thumbnail.png +Legend: TOPAZ5_P1D_SICONC/cm_legend.png +Image: TOPAZ5_P1D_SICONC/thumbnail.png Provider: - Name: E.U. Copernicus Marine Service Information (CMEMS) @@ -30,7 +30,7 @@ Provider: Roles: - producer Citation: - Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Citation: TOPAZ5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). Publication: - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_SISNTHICK.yaml b/collections/TOPAZ5_P1D_SISNTHICK.yaml similarity index 81% rename from collections/TOPAZ5_SISNTHICK.yaml rename to collections/TOPAZ5_P1D_SISNTHICK.yaml index 12d903e0..ccc48b9b 100644 --- a/collections/TOPAZ5_SISNTHICK.yaml +++ b/collections/TOPAZ5_P1D_SISNTHICK.yaml @@ -1,7 +1,7 @@ -Name: TOPAZ5_SISNTHICK -Title: Surface snow thickness -EodashIdentifier: TOPAZ5_SISNTHICK -Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Name: TOPAZ5_P1D_SISNTHICK +Title: Surface snow thickness Arctic Ocean +EodashIdentifier: TOPAZ5_P1D_SISNTHICK +Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: - cryosphere Satellite: @@ -20,8 +20,8 @@ Resources: Dimensions: elevation: 0 style: 'cmap:ice,range:0/1,noClamp' -Legend: TOPAZ5_SISNTHICK/cm_legend.png -Image: TOPAZ5_SISNTHICK/thumbnail.png +Legend: TOPAZ5_P1D_SISNTHICK/cm_legend.png +Image: TOPAZ5_P1D_SISNTHICK/thumbnail.png Provider: - Name: E.U. Copernicus Marine Service Information (CMEMS) @@ -30,7 +30,7 @@ Provider: Roles: - producer Citation: - Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Citation: TOPAZ5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). Publication: - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_SITHICK.yaml b/collections/TOPAZ5_P1D_SITHICK.yaml similarity index 82% rename from collections/TOPAZ5_SITHICK.yaml rename to collections/TOPAZ5_P1D_SITHICK.yaml index 18c98577..29427998 100644 --- a/collections/TOPAZ5_SITHICK.yaml +++ b/collections/TOPAZ5_P1D_SITHICK.yaml @@ -1,7 +1,7 @@ -Name: TOPAZ5_SITHICK -Title: Sea ice thickness -EodashIdentifier: TOPAZ5_SITHICK -Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Name: TOPAZ5_P1D_SITHICK +Title: Sea ice thickness Arctic Ocean +EodashIdentifier: TOPAZ5_P1D_SITHICK +Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: - cryosphere Satellite: @@ -20,8 +20,8 @@ Resources: Dimensions: elevation: 0 style: 'cmap:ice,range:0/4,noClamp' -Legend: TOPAZ5_SITHICK/cm_legend.png -Image: TOPAZ5_SITHICK/thumbnail.png +Legend: TOPAZ5_P1D_SITHICK/cm_legend.png +Image: TOPAZ5_P1D_SITHICK/thumbnail.png Provider: - Name: E.U. Copernicus Marine Service Information (CMEMS) @@ -30,7 +30,7 @@ Provider: Roles: - producer Citation: - Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Citation: TOPAZ5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). Publication: - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_VXO.yaml b/collections/TOPAZ5_P1D_VXO.yaml similarity index 82% rename from collections/TOPAZ5_VXO.yaml rename to collections/TOPAZ5_P1D_VXO.yaml index 42695b9d..51d836db 100644 --- a/collections/TOPAZ5_VXO.yaml +++ b/collections/TOPAZ5_P1D_VXO.yaml @@ -1,7 +1,7 @@ -Name: TOPAZ5_VXO -Title: Eastward sea water velocity (vxo) -EodashIdentifier: TOPAZ5_VXO -Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Name: TOPAZ5_P1D_VXO +Title: Eastward sea water velocity Arctic Ocean +EodashIdentifier: TOPAZ5_P1D_VXO +Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: - cryosphere Satellite: @@ -20,8 +20,8 @@ Resources: Dimensions: elevation: 0 style: 'cmap:delta,range:-0.3/0.3,noClamp' -Legend: TOPAZ5_VXO/cm_legend.png -Image: TOPAZ5_VXO/thumbnail.png +Legend: TOPAZ5_P1D_VXO/cm_legend.png +Image: TOPAZ5_P1D_VXO/thumbnail.png Provider: - Name: E.U. Copernicus Marine Service Information (CMEMS) @@ -30,7 +30,7 @@ Provider: Roles: - producer Citation: - Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Citation: TOPAZ5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). Publication: - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_VXSI.yaml b/collections/TOPAZ5_P1D_VXSI.yaml similarity index 82% rename from collections/TOPAZ5_VXSI.yaml rename to collections/TOPAZ5_P1D_VXSI.yaml index e1779e4c..4358502d 100644 --- a/collections/TOPAZ5_VXSI.yaml +++ b/collections/TOPAZ5_P1D_VXSI.yaml @@ -1,7 +1,7 @@ -Name: TOPAZ5_VXSI -Title: Eastward sea ice velocity (vxsi) -EodashIdentifier: TOPAZ5_VXSI -Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Name: TOPAZ5_P1D_VXSI +Title: Eastward sea ice velocity Arctic Ocean +EodashIdentifier: TOPAZ5_P1D_VXSI +Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: - cryosphere Satellite: @@ -20,8 +20,8 @@ Resources: Dimensions: elevation: 0 style: 'cmap:delta,range:-0.3/0.3,noClamp' -Legend: TOPAZ5_VXSI/cm_legend.png -Image: TOPAZ5_VXSI/thumbnail.png +Legend: TOPAZ5_P1D_VXSI/cm_legend.png +Image: TOPAZ5_P1D_VXSI/thumbnail.png Provider: - Name: E.U. Copernicus Marine Service Information (CMEMS) @@ -30,7 +30,7 @@ Provider: Roles: - producer Citation: - Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Citation: TOPAZ5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). Publication: - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_VYO.yaml b/collections/TOPAZ5_P1D_VYO.yaml similarity index 82% rename from collections/TOPAZ5_VYO.yaml rename to collections/TOPAZ5_P1D_VYO.yaml index 8d4c7c73..b0a11643 100644 --- a/collections/TOPAZ5_VYO.yaml +++ b/collections/TOPAZ5_P1D_VYO.yaml @@ -1,7 +1,7 @@ -Name: TOPAZ5_VYO -Title: Northward sea water velocity (vyo) -EodashIdentifier: TOPAZ5_VYO -Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Name: TOPAZ5_P1D_VYO +Title: Northward sea water velocity Arctic Ocean +EodashIdentifier: TOPAZ5_P1D_VYO +Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: - cryosphere Satellite: @@ -20,8 +20,8 @@ Resources: Dimensions: elevation: 0 style: 'cmap:delta,range:-0.3/0.3,noClamp' -Legend: TOPAZ5_VYO/cm_legend.png -Image: TOPAZ5_VYO/thumbnail.png +Legend: TOPAZ5_P1D_VYO/cm_legend.png +Image: TOPAZ5_P1D_VYO/thumbnail.png Provider: - Name: E.U. Copernicus Marine Service Information (CMEMS) @@ -30,7 +30,7 @@ Provider: Roles: - producer Citation: - Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Citation: TOPAZ5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). Publication: - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." DOI: 10.48670/moi-00001 diff --git a/collections/TOPAZ5_VYSI.yaml b/collections/TOPAZ5_P1D_VYSI.yaml similarity index 82% rename from collections/TOPAZ5_VYSI.yaml rename to collections/TOPAZ5_P1D_VYSI.yaml index 0c7334e1..8efa2a26 100644 --- a/collections/TOPAZ5_VYSI.yaml +++ b/collections/TOPAZ5_P1D_VYSI.yaml @@ -1,7 +1,7 @@ -Name: TOPAZ5_VYSI -Title: Northward sea ice velocity (vysi) -EodashIdentifier: TOPAZ5_VYSI -Description: TOPAZ5_SIAGE/TOPAZ5_SIAGE.md +Name: TOPAZ5_P1D_VYSI +Title: Northward sea ice velocity Arctic Ocean +EodashIdentifier: TOPAZ5_P1D_VYSI +Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: - cryosphere Satellite: @@ -20,8 +20,8 @@ Resources: Dimensions: elevation: 0 style: 'cmap:delta,range:-0.3/0.3,noClamp' -Legend: TOPAZ5_VYSI/cm_legend.png -Image: TOPAZ5_VYSI/thumbnail.png +Legend: TOPAZ5_P1D_VYSI/cm_legend.png +Image: TOPAZ5_P1D_VYSI/thumbnail.png Provider: - Name: E.U. Copernicus Marine Service Information (CMEMS) @@ -30,7 +30,7 @@ Provider: Roles: - producer Citation: - Citation: TOPAZ 5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). + Citation: TOPAZ5 - Arctic Ocean Physics Analysis and Forecast; ARCTIC_ANALYSISFORECAST_PHY_002_001; E.U. Copernicus Marine Service Information (CMEMS), Marine Data Store (MDS). Publication: - Citation: "Sakov, P., Counillon, F., Bertino, L., Lisæter, K. A., Oke, P. R. and Korablev, A.: TOPAZ4: an ocean-sea ice data assimilation system for the North Atlantic and Arctic, Ocean Sci., 8(4), 633–656, doi:10.5194/os-8-633-2012, 2012. Melsom, A., Counillon, F., LaCasce, J. H. and Bertino, L.: Forecasting search areas using ensemble ocean circulation modeling, Ocean Dyn., 62(8), 1245–1257, doi:10.1007/s10236-012-0561-5, 2012." DOI: 10.48670/moi-00001 From 6da0cb08762780afbba7f1abe8eacdb002ec89ea Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal Date: Tue, 13 Feb 2024 15:34:07 +0100 Subject: [PATCH 09/11] minor change --- catalogs/polar.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalogs/polar.yaml b/catalogs/polar.yaml index fc6d93fa..12231b1c 100644 --- a/catalogs/polar.yaml +++ b/catalogs/polar.yaml @@ -1,5 +1,5 @@ id: "polar" -title: "Polar TEP dashboard" +title: "Polar TEP Dashboard" description: "The Polar Thematic Exploitation Platform Dashboard Catalog" endpoint: "https://eurodatacube.github.io/eodash-catalog/polar/" assets_endpoint: "https://raw.githubusercontent.com/eurodatacube/eodash-assets/main/collections" From 212fdf9f2870d656fb2b7119bc447cd5bffa00a4 Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal Date: Tue, 13 Feb 2024 17:04:10 +0100 Subject: [PATCH 10/11] chore: update ranges --- collections/TOPAZ4_P1D_SICONC.yaml | 2 +- collections/TOPAZ4_P1D_SISNTHICK.yaml | 2 +- collections/TOPAZ4_P1D_SITHICK.yaml | 2 +- collections/TOPAZ5_P1D_SIAGE.yaml | 2 +- collections/TOPAZ5_P1D_SICONC.yaml | 2 +- collections/TOPAZ5_P1D_SISNTHICK.yaml | 2 +- collections/TOPAZ5_P1D_SITHICK.yaml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/collections/TOPAZ4_P1D_SICONC.yaml b/collections/TOPAZ4_P1D_SICONC.yaml index c457b0f6..7ef5c129 100644 --- a/collections/TOPAZ4_P1D_SICONC.yaml +++ b/collections/TOPAZ4_P1D_SICONC.yaml @@ -23,7 +23,7 @@ Resources: End: "2022-12-31T00:00:00" Dimensions: elevation: 0 - style: 'cmap:ice,range:0/1,noClamp' + style: 'cmap:ice,range:0.001/1,noClamp' Legend: TOPAZ4_P1D_SICONC/cm_legend.png Image: TOPAZ4_P1D_SICONC/thumbnail.png diff --git a/collections/TOPAZ4_P1D_SISNTHICK.yaml b/collections/TOPAZ4_P1D_SISNTHICK.yaml index dd458075..5315cb5f 100644 --- a/collections/TOPAZ4_P1D_SISNTHICK.yaml +++ b/collections/TOPAZ4_P1D_SISNTHICK.yaml @@ -23,7 +23,7 @@ Resources: End: "2022-12-31T00:00:00" Dimensions: elevation: 0 - style: 'cmap:ice,range:0/1,noClamp' + style: 'cmap:ice,range:0.001/0.7,noClamp' Legend: TOPAZ4_P1D_SISNTHICK/cm_legend.png Image: TOPAZ4_P1D_SISNTHICK/thumbnail.png diff --git a/collections/TOPAZ4_P1D_SITHICK.yaml b/collections/TOPAZ4_P1D_SITHICK.yaml index 8b3bac44..abc5dfb3 100644 --- a/collections/TOPAZ4_P1D_SITHICK.yaml +++ b/collections/TOPAZ4_P1D_SITHICK.yaml @@ -23,7 +23,7 @@ Resources: End: "2022-12-31T00:00:00" Dimensions: elevation: 0 - style: 'cmap:ice,range:0/4,noClamp' + style: 'cmap:ice,range:0.001/4,noClamp' Legend: TOPAZ4_P1D_SITHICK/cm_legend.png Image: TOPAZ4_P1D_SITHICK/thumbnail.png diff --git a/collections/TOPAZ5_P1D_SIAGE.yaml b/collections/TOPAZ5_P1D_SIAGE.yaml index 1a6e7dd9..4df3f911 100644 --- a/collections/TOPAZ5_P1D_SIAGE.yaml +++ b/collections/TOPAZ5_P1D_SIAGE.yaml @@ -19,7 +19,7 @@ Resources: LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/siage Dimensions: elevation: 0 - style: 'cmap:viridis,range:1/1400,noClamp' + style: 'cmap:viridis,range:0.001/1800,noClamp' Legend: TOPAZ5_P1D_SIAGE/cm_legend.png Image: TOPAZ5_P1D_SIAGE/thumbnail.png diff --git a/collections/TOPAZ5_P1D_SICONC.yaml b/collections/TOPAZ5_P1D_SICONC.yaml index 9d18469e..a343fbb3 100644 --- a/collections/TOPAZ5_P1D_SICONC.yaml +++ b/collections/TOPAZ5_P1D_SICONC.yaml @@ -19,7 +19,7 @@ Resources: LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/siconc Dimensions: elevation: 0 - style: 'cmap:ice,range:0/1,noClamp' + style: 'cmap:ice,range:0.001/1,noClamp' Legend: TOPAZ5_P1D_SICONC/cm_legend.png Image: TOPAZ5_P1D_SICONC/thumbnail.png diff --git a/collections/TOPAZ5_P1D_SISNTHICK.yaml b/collections/TOPAZ5_P1D_SISNTHICK.yaml index ccc48b9b..f256bd7e 100644 --- a/collections/TOPAZ5_P1D_SISNTHICK.yaml +++ b/collections/TOPAZ5_P1D_SISNTHICK.yaml @@ -19,7 +19,7 @@ Resources: LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/sisnthick Dimensions: elevation: 0 - style: 'cmap:ice,range:0/1,noClamp' + style: 'cmap:ice,range:0.001/0.7,noClamp' Legend: TOPAZ5_P1D_SISNTHICK/cm_legend.png Image: TOPAZ5_P1D_SISNTHICK/thumbnail.png diff --git a/collections/TOPAZ5_P1D_SITHICK.yaml b/collections/TOPAZ5_P1D_SITHICK.yaml index 29427998..91e1c30c 100644 --- a/collections/TOPAZ5_P1D_SITHICK.yaml +++ b/collections/TOPAZ5_P1D_SITHICK.yaml @@ -19,7 +19,7 @@ Resources: LayerId: ARCTIC_ANALYSISFORECAST_PHY_002_001/cmems_mod_arc_phy_anfc_6km_detided_P1D-m_202311/sithick Dimensions: elevation: 0 - style: 'cmap:ice,range:0/4,noClamp' + style: 'cmap:ice,range:0.001/4,noClamp' Legend: TOPAZ5_P1D_SITHICK/cm_legend.png Image: TOPAZ5_P1D_SITHICK/thumbnail.png From 83275efc2bd0be3a721657b777351e13633e927c Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal Date: Tue, 13 Feb 2024 17:10:54 +0100 Subject: [PATCH 11/11] add model name to title of collections --- collections/TOPAZ4_P1D_SICONC.yaml | 2 +- collections/TOPAZ4_P1D_SISNTHICK.yaml | 2 +- collections/TOPAZ4_P1D_SITHICK.yaml | 2 +- collections/TOPAZ4_P1D_VXO.yaml | 2 +- collections/TOPAZ4_P1D_VXSI.yaml | 2 +- collections/TOPAZ4_P1D_VYO.yaml | 2 +- collections/TOPAZ4_P1D_VYSI.yaml | 2 +- collections/TOPAZ5_P1D_SIAGE.yaml | 2 +- collections/TOPAZ5_P1D_SICONC.yaml | 2 +- collections/TOPAZ5_P1D_SISNTHICK.yaml | 2 +- collections/TOPAZ5_P1D_SITHICK.yaml | 2 +- collections/TOPAZ5_P1D_VXO.yaml | 2 +- collections/TOPAZ5_P1D_VXSI.yaml | 2 +- collections/TOPAZ5_P1D_VYO.yaml | 2 +- collections/TOPAZ5_P1D_VYSI.yaml | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/collections/TOPAZ4_P1D_SICONC.yaml b/collections/TOPAZ4_P1D_SICONC.yaml index 7ef5c129..0e68f68d 100644 --- a/collections/TOPAZ4_P1D_SICONC.yaml +++ b/collections/TOPAZ4_P1D_SICONC.yaml @@ -1,5 +1,5 @@ Name: TOPAZ4_P1D_SICONC -Title: Sea ice area fraction Arctic Ocean +Title: Sea ice area fraction Arctic Ocean TOPAZ4 EodashIdentifier: TOPAZ4_P1D_SICONC Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md Themes: diff --git a/collections/TOPAZ4_P1D_SISNTHICK.yaml b/collections/TOPAZ4_P1D_SISNTHICK.yaml index 5315cb5f..f45d0d80 100644 --- a/collections/TOPAZ4_P1D_SISNTHICK.yaml +++ b/collections/TOPAZ4_P1D_SISNTHICK.yaml @@ -1,5 +1,5 @@ Name: TOPAZ4_P1D_SISNTHICK -Title: Surface snow thickness Arctic Ocean +Title: Surface snow thickness Arctic Ocean TOPAZ4 EodashIdentifier: TOPAZ4_P1D_SISNTHICK Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md Themes: diff --git a/collections/TOPAZ4_P1D_SITHICK.yaml b/collections/TOPAZ4_P1D_SITHICK.yaml index abc5dfb3..b40f8d61 100644 --- a/collections/TOPAZ4_P1D_SITHICK.yaml +++ b/collections/TOPAZ4_P1D_SITHICK.yaml @@ -1,5 +1,5 @@ Name: TOPAZ4_P1D_SITHICK -Title: Sea ice thickness Arctic Ocean +Title: Sea ice thickness Arctic Ocean TOPAZ4 EodashIdentifier: TOPAZ4_P1D_SITHICK Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md Themes: diff --git a/collections/TOPAZ4_P1D_VXO.yaml b/collections/TOPAZ4_P1D_VXO.yaml index 55e50442..6c184b79 100644 --- a/collections/TOPAZ4_P1D_VXO.yaml +++ b/collections/TOPAZ4_P1D_VXO.yaml @@ -1,5 +1,5 @@ Name: TOPAZ4_P1D_VXO -Title: Eastward sea water velocity Arctic Ocean +Title: Eastward sea water velocity Arctic Ocean TOPAZ4 EodashIdentifier: TOPAZ4_P1D_VXO Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md Themes: diff --git a/collections/TOPAZ4_P1D_VXSI.yaml b/collections/TOPAZ4_P1D_VXSI.yaml index 370eabb9..ecd7541e 100644 --- a/collections/TOPAZ4_P1D_VXSI.yaml +++ b/collections/TOPAZ4_P1D_VXSI.yaml @@ -1,5 +1,5 @@ Name: TOPAZ4_P1D_VXSI -Title: Eastward sea ice velocity Arctic Ocean +Title: Eastward sea ice velocity Arctic Ocean TOPAZ4 EodashIdentifier: TOPAZ4_P1D_VXSI Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md Themes: diff --git a/collections/TOPAZ4_P1D_VYO.yaml b/collections/TOPAZ4_P1D_VYO.yaml index 2cb494f8..029ad258 100644 --- a/collections/TOPAZ4_P1D_VYO.yaml +++ b/collections/TOPAZ4_P1D_VYO.yaml @@ -1,5 +1,5 @@ Name: TOPAZ4_P1D_VYO -Title: Northward sea water velocity Arctic Ocean +Title: Northward sea water velocity Arctic Ocean TOPAZ4 EodashIdentifier: TOPAZ4_P1D_VYO Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md Themes: diff --git a/collections/TOPAZ4_P1D_VYSI.yaml b/collections/TOPAZ4_P1D_VYSI.yaml index 3b02b1bd..13fbf871 100644 --- a/collections/TOPAZ4_P1D_VYSI.yaml +++ b/collections/TOPAZ4_P1D_VYSI.yaml @@ -1,5 +1,5 @@ Name: TOPAZ4_P1D_VYSI -Title: Northward sea ice velocity Arctic Ocean +Title: Northward sea ice velocity Arctic Ocean TOPAZ4 EodashIdentifier: TOPAZ4_P1D_VYSI Description: TOPAZ4_P1D_VXSI/TOPAZ4_P1D_VXSI.md Themes: diff --git a/collections/TOPAZ5_P1D_SIAGE.yaml b/collections/TOPAZ5_P1D_SIAGE.yaml index 4df3f911..0504376a 100644 --- a/collections/TOPAZ5_P1D_SIAGE.yaml +++ b/collections/TOPAZ5_P1D_SIAGE.yaml @@ -1,5 +1,5 @@ Name: TOPAZ5_P1D_SIAGE -Title: Age of sea ice Arctic Ocean +Title: Age of sea ice Arctic Ocean TOPAZ5 EodashIdentifier: TOPAZ5_P1D_SIAGE Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: diff --git a/collections/TOPAZ5_P1D_SICONC.yaml b/collections/TOPAZ5_P1D_SICONC.yaml index a343fbb3..d0463d89 100644 --- a/collections/TOPAZ5_P1D_SICONC.yaml +++ b/collections/TOPAZ5_P1D_SICONC.yaml @@ -1,5 +1,5 @@ Name: TOPAZ5_P1D_SICONC -Title: Sea ice area fraction Arctic Ocean +Title: Sea ice area fraction Arctic Ocean TOPAZ5 EodashIdentifier: TOPAZ5_P1D_SICONC Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: diff --git a/collections/TOPAZ5_P1D_SISNTHICK.yaml b/collections/TOPAZ5_P1D_SISNTHICK.yaml index f256bd7e..75727549 100644 --- a/collections/TOPAZ5_P1D_SISNTHICK.yaml +++ b/collections/TOPAZ5_P1D_SISNTHICK.yaml @@ -1,5 +1,5 @@ Name: TOPAZ5_P1D_SISNTHICK -Title: Surface snow thickness Arctic Ocean +Title: Surface snow thickness Arctic Ocean TOPAZ5 EodashIdentifier: TOPAZ5_P1D_SISNTHICK Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: diff --git a/collections/TOPAZ5_P1D_SITHICK.yaml b/collections/TOPAZ5_P1D_SITHICK.yaml index 91e1c30c..bca82698 100644 --- a/collections/TOPAZ5_P1D_SITHICK.yaml +++ b/collections/TOPAZ5_P1D_SITHICK.yaml @@ -1,5 +1,5 @@ Name: TOPAZ5_P1D_SITHICK -Title: Sea ice thickness Arctic Ocean +Title: Sea ice thickness Arctic Ocean TOPAZ5 EodashIdentifier: TOPAZ5_P1D_SITHICK Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: diff --git a/collections/TOPAZ5_P1D_VXO.yaml b/collections/TOPAZ5_P1D_VXO.yaml index 51d836db..54f7215e 100644 --- a/collections/TOPAZ5_P1D_VXO.yaml +++ b/collections/TOPAZ5_P1D_VXO.yaml @@ -1,5 +1,5 @@ Name: TOPAZ5_P1D_VXO -Title: Eastward sea water velocity Arctic Ocean +Title: Eastward sea water velocity Arctic Ocean TOPAZ5 EodashIdentifier: TOPAZ5_P1D_VXO Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: diff --git a/collections/TOPAZ5_P1D_VXSI.yaml b/collections/TOPAZ5_P1D_VXSI.yaml index 4358502d..44bc9594 100644 --- a/collections/TOPAZ5_P1D_VXSI.yaml +++ b/collections/TOPAZ5_P1D_VXSI.yaml @@ -1,5 +1,5 @@ Name: TOPAZ5_P1D_VXSI -Title: Eastward sea ice velocity Arctic Ocean +Title: Eastward sea ice velocity Arctic Ocean TOPAZ5 EodashIdentifier: TOPAZ5_P1D_VXSI Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: diff --git a/collections/TOPAZ5_P1D_VYO.yaml b/collections/TOPAZ5_P1D_VYO.yaml index b0a11643..dc919ac3 100644 --- a/collections/TOPAZ5_P1D_VYO.yaml +++ b/collections/TOPAZ5_P1D_VYO.yaml @@ -1,5 +1,5 @@ Name: TOPAZ5_P1D_VYO -Title: Northward sea water velocity Arctic Ocean +Title: Northward sea water velocity Arctic Ocean TOPAZ5 EodashIdentifier: TOPAZ5_P1D_VYO Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: diff --git a/collections/TOPAZ5_P1D_VYSI.yaml b/collections/TOPAZ5_P1D_VYSI.yaml index 8efa2a26..14b9324d 100644 --- a/collections/TOPAZ5_P1D_VYSI.yaml +++ b/collections/TOPAZ5_P1D_VYSI.yaml @@ -1,5 +1,5 @@ Name: TOPAZ5_P1D_VYSI -Title: Northward sea ice velocity Arctic Ocean +Title: Northward sea ice velocity Arctic Ocean TOPAZ5 EodashIdentifier: TOPAZ5_P1D_VYSI Description: TOPAZ5_P1D_SIAGE/TOPAZ5_P1D_SIAGE.md Themes: