From 5135de262e8aa5b5a3c7592eb57785b87fcdd76a Mon Sep 17 00:00:00 2001 From: EtienneKras <62947009+EtienneKras@users.noreply.github.com> Date: Wed, 14 Aug 2024 13:23:24 +0200 Subject: [PATCH 1/3] Update templates.py Update template to make keywords optional --- src/coclicodata/coclico_stac/templates.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/coclicodata/coclico_stac/templates.py b/src/coclicodata/coclico_stac/templates.py index 2c25225183..e38e5076ca 100644 --- a/src/coclicodata/coclico_stac/templates.py +++ b/src/coclicodata/coclico_stac/templates.py @@ -3,6 +3,7 @@ import pystac from pystac import Asset, Collection, RelType +from typing import Optional def gen_default_item(name="unique"): @@ -33,10 +34,10 @@ def get_template_collection( title: str, description: str, keywords: list, - license: str, - spatial_extent: list, - temporal_extent: list, - providers: list, + license: Optional[str] = None, + spatial_extent: Optional[list] = None, + temporal_extent: Optional[list] = None, + providers: Optional[list] = None, # hosting_platform: str, ) -> pystac.Collection: """Deltares CoCliCo STAC Obj from template file. From efee598cb24902c21f3f1686ad5b5241b3da5d8f Mon Sep 17 00:00:00 2001 From: EtienneKras <62947009+EtienneKras@users.noreply.github.com> Date: Wed, 14 Aug 2024 13:24:34 +0200 Subject: [PATCH 2/3] Update 13_slp_stacs.py Update to STAC script to: - format it to black - include summaries - include item properties - include WMS visual item asset (in itemize function) --- scripts/create_stacs/13_slp_stacs.py | 193 +++++++++++++++++++-------- 1 file changed, 134 insertions(+), 59 deletions(-) diff --git a/scripts/create_stacs/13_slp_stacs.py b/scripts/create_stacs/13_slp_stacs.py index c208d81ba0..7d9416946e 100644 --- a/scripts/create_stacs/13_slp_stacs.py +++ b/scripts/create_stacs/13_slp_stacs.py @@ -15,7 +15,11 @@ import pystac from pystac.stac_io import DefaultStacIO from coclicodata.drive_config import p_drive -from coclicodata.etl.cloud_utils import dataset_from_google_cloud,load_google_credentials, dir_to_google_cloud +from coclicodata.etl.cloud_utils import ( + dataset_from_google_cloud, + load_google_credentials, + dir_to_google_cloud, +) from coclicodata.etl.extract import get_mapbox_url, zero_terminated_bytes_as_str from pystac import Catalog, CatalogType, Collection, Summaries from coclicodata.coclico_stac.io import CoCliCoStacIO @@ -39,6 +43,7 @@ rm_special_characters, ) + # TODO: move itemize to ETL or stac.blueprint when generalized def itemize( da, @@ -72,8 +77,6 @@ def itemize( ext.transform = list(da.rio.transform())[:6] ext.add_to(item) - roles = asset_roles or ["data"] - href = os.path.join( GCS_PROTOCOL, BUCKET_NAME, @@ -82,14 +85,31 @@ def itemize( blob_name, ) + roles = asset_roles or ["data"] + # TODO: We need to generalize this `href` somewhat. - asset = pystac.Asset( + dasset = pystac.Asset( # data asset href=href, media_type=asset_media_type, roles=roles, ) - item.add_asset("data", asset) + item.add_asset("data", dasset) + + roles = asset_roles or ["visual"] + title = COLLECTION_ID + ":" + blob_name.split(".")[0].replace("\\", "_") + + # TODO: We need to generalize this `href` somewhat. + vasset = pystac.Asset( # data asset + href="https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=%s" + % title, + media_type="application/png", + title=title, + description="OGS WMS url", + roles=roles, + ) + + item.add_asset("visual", vasset) return item @@ -105,6 +125,13 @@ def itemize( TEMPLATE_COLLECTION = "template" # stac template for dataset collection COLLECTION_ID = "slp" # name of stac collection + # hard-coded input params which differ per dataset + ADDITIONAL_DIMENSIONS = [ + "scenarios", + "ensemble", + "time", + ] # List of str; dims added to datacube + # these are added at collection level, determine dashboard graph layout using all items PLOT_SERIES = "scenarios" PLOT_X_AXIS = "time" @@ -128,7 +155,7 @@ def itemize( ) # hard-coded input params which differ per dataset - METADATA_LIST = glob.glob(str(coclico_data_dir.joinpath('data','*.json'))) + METADATA_LIST = glob.glob(str(coclico_data_dir.joinpath("data", "*.json"))) DATASET_DIR = "data" CF_FILE = "slr_medium_confidence_values_CF.nc" @@ -146,83 +173,97 @@ def itemize( # directory to export result cog_dirs = coclico_data_dir.joinpath("cogs") - catalog = Catalog.from_file(os.path.join(pathlib.Path(__file__).parent.parent.parent, STAC_DIR, "catalog.json")) + catalog = Catalog.from_file( + os.path.join( + pathlib.Path(__file__).parent.parent.parent, STAC_DIR, "catalog.json" + ) + ) template_fp = os.path.join( - pathlib.Path(__file__).parent.parent.parent, STAC_DIR, TEMPLATE_COLLECTION, "collection.json" + pathlib.Path(__file__).parent.parent.parent, + STAC_DIR, + TEMPLATE_COLLECTION, + "collection.json", ) layout = CoCliCoCOGLayout() - - #%% DO THE WORK + + # %% DO THE WORK # Hard code the various ssp scenarios considered - scens = 'high_end', 'ssp126', 'ssp245', 'ssp585' + scens = "high_end", "ssp126", "ssp245", "ssp585" # List all nc-files from data folder ncfile_list = glob.glob(str(ds_dir.joinpath("*.nc"))) for scen, file in zip(scens, ncfile_list): if not scen in file: - raise ValueError('The some or more of the strings defined in scens are not found in your file_list') + raise ValueError( + "The some or more of the strings defined in scens are not found in your file_list" + ) # load metadata - with open(r'p:\11207608-coclico\FULLTRACK_DATA\WP3\data\full_dataset_metadata\SLP_CoCliCo_metadata.json', "r") as f: - ds_metadata = json.load(f) + with open( + r"p:\11207608-coclico\FULLTRACK_DATA\WP3\data\full_dataset_metadata\SLP_CoCliCo_metadata.json", + "r", + ) as f: + ds_metadata = json.load(f) if "Creative Commons" in ds_metadata["LICENSE"] and "4.0" in ds_metadata["LICENSE"]: - ds_metadata["LICENSE"] = "CC-BY-4.0" + ds_metadata["LICENSE"] = "CC-BY-4.0" # Add extra keywords - ds_metadata['KEYWORDS'].extend(["Sea Levels", "Full-Track"]) + ds_metadata["KEYWORDS"].extend(["Sea Levels", "Full-Track"]) # generate collection for dataset collection = get_template_collection( - template_fp= template_fp, - collection_id= COLLECTION_ID, - title= ds_metadata["TITLE"], - description= ds_metadata["SHORT_DESCRIPTION"], - keywords= ds_metadata['KEYWORDS'], - license= ds_metadata["LICENSE"], - spatial_extent= ds_metadata["SPATIAL_EXTENT"], + template_fp=template_fp, + collection_id=COLLECTION_ID, + title=ds_metadata["TITLE"], + description=ds_metadata["SHORT_DESCRIPTION"], + keywords=ds_metadata["KEYWORDS"], + license=ds_metadata["LICENSE"], + spatial_extent=ds_metadata["SPATIAL_EXTENT"], temporal_extent=ds_metadata["TEMPORAL_EXTENT"], - providers= [ - pystac.Provider( - name="Deltares", - roles=[ - pystac.provider.ProviderRole.PROCESSOR, - pystac.provider.ProviderRole.HOST, - ], - url="https://deltares.nl", - ), - pystac.Provider( - ds_metadata["PROVIDERS"]["name"], - roles=[ - pystac.provider.ProviderRole.PRODUCER, - ], - url=ds_metadata["PROVIDERS"]["url"], - description=ds_metadata["PROVIDERS"]["description"], - ), - ] - ) - #%% + providers=[ + pystac.Provider( + name="Deltares", + roles=[ + pystac.provider.ProviderRole.PROCESSOR, + pystac.provider.ProviderRole.HOST, + ], + url="https://deltares.nl", + ), + pystac.Provider( + ds_metadata["PROVIDERS"]["name"], + roles=[ + pystac.provider.ProviderRole.PRODUCER, + ], + url=ds_metadata["PROVIDERS"]["url"], + description=ds_metadata["PROVIDERS"]["description"], + ), + ], + ) + + # %% + dimcombs = [] for scen, ncfile, metadata_fp in zip(scens, ncfile_list, METADATA_LIST): slp = xr.open_dataset(ncfile, engine="rasterio", mask_and_scale=False) - slp['time'] = slp.indexes['time'].to_datetimeindex() - + slp["time"] = slp.indexes["time"].to_datetimeindex() + # load metadata template with open(metadata_fp, "r") as f: metadata = json.load(f) for var in slp: - for itime, time in enumerate(slp['time'].values): - + for itime, time in enumerate(slp["time"].values): + # Select the variable and timestep from dataset - da = slp[var].isel(time = itime) + da = slp[var].isel(time=itime) - # Set final output file name, nc-file is broken down into tif's - item_name = np.datetime_as_string(time, unit='Y') + '.tif' + # Set final output file name, nc-file is broken down into tif's + item_name = np.datetime_as_string(time, unit="Y") + ".tif" blob_name = pathlib.Path( scen, @@ -230,28 +271,61 @@ def itemize( item_name, ) + # TODO: generalize this + dimcomb = { + ADDITIONAL_DIMENSIONS[0]: scen, + ADDITIONAL_DIMENSIONS[1]: var, + ADDITIONAL_DIMENSIONS[2]: item_name.split(".")[0], + } + dimcombs.append(dimcomb) + outpath = cog_dirs.joinpath(blob_name) template_item = pystac.Item( "id", None, None, datetime.datetime(2000, 1, 1), {} ) item = itemize(da, template_item, blob_name=str(blob_name)) + + # TODO: include this in our datacube? + # add dimension key-value pairs to stac item properties dict + for k, v in dimcomb.items(): + item.properties[k] = v + collection.add_item(item, strategy=layout) - #%% TODO: use gen_default_summaries() from blueprint.py after making it frontend compliant. + # %% TODO: use gen_default_summaries() from blueprint.py after making it frontend compliant. collection.summaries = Summaries({}) + # TODO: check if maxcount is required (inpsired on xstac library) + # stac_obj.summaries.maxcount = 50 + dimvals = {} + for d in dimcombs: + for key, value in d.items(): + if key not in dimvals: + dimvals[key] = [] + if value not in dimvals[key]: + dimvals[key].append(value) + + for k, v in dimvals.items(): + collection.summaries.add(k, v) collection.extra_fields["item_assets"] = {"data": {"type": pystac.MediaType.COG}} collection.extra_fields["deltares:units"] = ds_metadata["UNITS"] - collection.extra_fields["deltares:plotType"] = PLOT_TYPE # NOTE:this causes validation to break + collection.extra_fields["deltares:plotType"] = ( + PLOT_TYPE # NOTE:this causes validation to break + ) collection.extra_fields["deltares:min"] = MIN collection.extra_fields["deltares:max"] = MAX + # set extra link properties + extend_links(collection, dimvals.keys()) + # Add thumbnail collection.add_asset( "thumbnail", pystac.Asset( - "https://storage.googleapis.com/dgds-data-public/coclico/assets/thumbnails/" + COLLECTION_ID + ".png", # noqa: E501, # noqa: E501 + "https://storage.googleapis.com/dgds-data-public/coclico/assets/thumbnails/" + + COLLECTION_ID + + ".png", # noqa: E501, # noqa: E501 title="Thumbnail", media_type=pystac.MediaType.PNG, ), @@ -268,7 +342,10 @@ def itemize( # normalize the paths collection.normalize_hrefs( - os.path.join(pathlib.Path(__file__).parent.parent.parent, STAC_DIR, COLLECTION_ID), strategy=layout + os.path.join( + pathlib.Path(__file__).parent.parent.parent, STAC_DIR, COLLECTION_ID + ), + strategy=layout, ) # Validate collection instead of full catalog in stac_to_cloud.py @@ -282,21 +359,19 @@ def itemize( catalog_type=CatalogType.SELF_CONTAINED, dest_href=os.path.join(pathlib.Path(__file__).parent.parent.parent, STAC_DIR), # dest_href=str(tmp_dir), - stac_io=stac_io, # TODO: Adjust to STAC IO + stac_io=stac_io, # TODO: Adjust to STAC IO ) print("Done!") # upload directory with cogs to google cloud - load_google_credentials( - google_token_fp=google_cred_dir - ) + load_google_credentials(google_token_fp=google_cred_dir) dir_to_google_cloud( dir_path=str(cog_dirs), gcs_project=GCS_PROJECT, bucket_name=BUCKET_NAME, bucket_proj=BUCKET_PROJ, - dir_name='slp', + dir_name="slp", ) From 742a71f792042dab8aa37cbab761eb07a6e735fa Mon Sep 17 00:00:00 2001 From: EtienneKras <62947009+EtienneKras@users.noreply.github.com> Date: Wed, 14 Aug 2024 13:25:36 +0200 Subject: [PATCH 3/3] Update catalog, collection & items for SLP Update catalog, collection and items for SLP, see previous commit for details --- current/catalog.json | 12 +- current/slp/collection.json | 1124 +++++++++++++++++--- current/slp/items/high_end/msl_h/2031.json | 12 + current/slp/items/high_end/msl_h/2041.json | 12 + current/slp/items/high_end/msl_h/2051.json | 12 + current/slp/items/high_end/msl_h/2061.json | 12 + current/slp/items/high_end/msl_h/2071.json | 12 + current/slp/items/high_end/msl_h/2081.json | 12 + current/slp/items/high_end/msl_h/2091.json | 12 + current/slp/items/high_end/msl_h/2101.json | 12 + current/slp/items/high_end/msl_h/2111.json | 12 + current/slp/items/high_end/msl_h/2121.json | 12 + current/slp/items/high_end/msl_h/2131.json | 12 + current/slp/items/high_end/msl_h/2141.json | 12 + current/slp/items/high_end/msl_h/2151.json | 12 + current/slp/items/high_end/msl_l/2031.json | 12 + current/slp/items/high_end/msl_l/2041.json | 12 + current/slp/items/high_end/msl_l/2051.json | 12 + current/slp/items/high_end/msl_l/2061.json | 12 + current/slp/items/high_end/msl_l/2071.json | 12 + current/slp/items/high_end/msl_l/2081.json | 12 + current/slp/items/high_end/msl_l/2091.json | 12 + current/slp/items/high_end/msl_l/2101.json | 12 + current/slp/items/high_end/msl_l/2111.json | 12 + current/slp/items/high_end/msl_l/2121.json | 12 + current/slp/items/high_end/msl_l/2131.json | 12 + current/slp/items/high_end/msl_l/2141.json | 12 + current/slp/items/high_end/msl_l/2151.json | 12 + current/slp/items/high_end/msl_m/2031.json | 12 + current/slp/items/high_end/msl_m/2041.json | 12 + current/slp/items/high_end/msl_m/2051.json | 12 + current/slp/items/high_end/msl_m/2061.json | 12 + current/slp/items/high_end/msl_m/2071.json | 12 + current/slp/items/high_end/msl_m/2081.json | 12 + current/slp/items/high_end/msl_m/2091.json | 12 + current/slp/items/high_end/msl_m/2101.json | 12 + current/slp/items/high_end/msl_m/2111.json | 12 + current/slp/items/high_end/msl_m/2121.json | 12 + current/slp/items/high_end/msl_m/2131.json | 12 + current/slp/items/high_end/msl_m/2141.json | 12 + current/slp/items/high_end/msl_m/2151.json | 12 + current/slp/items/ssp126/msl_h/2031.json | 12 + current/slp/items/ssp126/msl_h/2041.json | 12 + current/slp/items/ssp126/msl_h/2051.json | 12 + current/slp/items/ssp126/msl_h/2061.json | 12 + current/slp/items/ssp126/msl_h/2071.json | 12 + current/slp/items/ssp126/msl_h/2081.json | 12 + current/slp/items/ssp126/msl_h/2091.json | 12 + current/slp/items/ssp126/msl_h/2101.json | 12 + current/slp/items/ssp126/msl_h/2111.json | 12 + current/slp/items/ssp126/msl_h/2121.json | 12 + current/slp/items/ssp126/msl_h/2131.json | 12 + current/slp/items/ssp126/msl_h/2141.json | 12 + current/slp/items/ssp126/msl_h/2151.json | 12 + current/slp/items/ssp126/msl_l/2031.json | 12 + current/slp/items/ssp126/msl_l/2041.json | 12 + current/slp/items/ssp126/msl_l/2051.json | 12 + current/slp/items/ssp126/msl_l/2061.json | 12 + current/slp/items/ssp126/msl_l/2071.json | 12 + current/slp/items/ssp126/msl_l/2081.json | 12 + current/slp/items/ssp126/msl_l/2091.json | 12 + current/slp/items/ssp126/msl_l/2101.json | 12 + current/slp/items/ssp126/msl_l/2111.json | 12 + current/slp/items/ssp126/msl_l/2121.json | 12 + current/slp/items/ssp126/msl_l/2131.json | 12 + current/slp/items/ssp126/msl_l/2141.json | 12 + current/slp/items/ssp126/msl_l/2151.json | 12 + current/slp/items/ssp126/msl_m/2031.json | 12 + current/slp/items/ssp126/msl_m/2041.json | 12 + current/slp/items/ssp126/msl_m/2051.json | 12 + current/slp/items/ssp126/msl_m/2061.json | 12 + current/slp/items/ssp126/msl_m/2071.json | 12 + current/slp/items/ssp126/msl_m/2081.json | 12 + current/slp/items/ssp126/msl_m/2091.json | 12 + current/slp/items/ssp126/msl_m/2101.json | 12 + current/slp/items/ssp126/msl_m/2111.json | 12 + current/slp/items/ssp126/msl_m/2121.json | 12 + current/slp/items/ssp126/msl_m/2131.json | 12 + current/slp/items/ssp126/msl_m/2141.json | 12 + current/slp/items/ssp126/msl_m/2151.json | 12 + current/slp/items/ssp245/msl_h/2031.json | 12 + current/slp/items/ssp245/msl_h/2041.json | 12 + current/slp/items/ssp245/msl_h/2051.json | 12 + current/slp/items/ssp245/msl_h/2061.json | 12 + current/slp/items/ssp245/msl_h/2071.json | 12 + current/slp/items/ssp245/msl_h/2081.json | 12 + current/slp/items/ssp245/msl_h/2091.json | 12 + current/slp/items/ssp245/msl_h/2101.json | 12 + current/slp/items/ssp245/msl_h/2111.json | 12 + current/slp/items/ssp245/msl_h/2121.json | 12 + current/slp/items/ssp245/msl_h/2131.json | 12 + current/slp/items/ssp245/msl_h/2141.json | 12 + current/slp/items/ssp245/msl_h/2151.json | 12 + current/slp/items/ssp245/msl_l/2031.json | 12 + current/slp/items/ssp245/msl_l/2041.json | 12 + current/slp/items/ssp245/msl_l/2051.json | 12 + current/slp/items/ssp245/msl_l/2061.json | 12 + current/slp/items/ssp245/msl_l/2071.json | 12 + current/slp/items/ssp245/msl_l/2081.json | 12 + current/slp/items/ssp245/msl_l/2091.json | 12 + current/slp/items/ssp245/msl_l/2101.json | 12 + current/slp/items/ssp245/msl_l/2111.json | 12 + current/slp/items/ssp245/msl_l/2121.json | 12 + current/slp/items/ssp245/msl_l/2131.json | 12 + current/slp/items/ssp245/msl_l/2141.json | 12 + current/slp/items/ssp245/msl_l/2151.json | 12 + current/slp/items/ssp245/msl_m/2031.json | 12 + current/slp/items/ssp245/msl_m/2041.json | 12 + current/slp/items/ssp245/msl_m/2051.json | 12 + current/slp/items/ssp245/msl_m/2061.json | 12 + current/slp/items/ssp245/msl_m/2071.json | 12 + current/slp/items/ssp245/msl_m/2081.json | 12 + current/slp/items/ssp245/msl_m/2091.json | 12 + current/slp/items/ssp245/msl_m/2101.json | 12 + current/slp/items/ssp245/msl_m/2111.json | 12 + current/slp/items/ssp245/msl_m/2121.json | 12 + current/slp/items/ssp245/msl_m/2131.json | 12 + current/slp/items/ssp245/msl_m/2141.json | 12 + current/slp/items/ssp245/msl_m/2151.json | 12 + current/slp/items/ssp585/msl_h/2031.json | 12 + current/slp/items/ssp585/msl_h/2041.json | 12 + current/slp/items/ssp585/msl_h/2051.json | 12 + current/slp/items/ssp585/msl_h/2061.json | 12 + current/slp/items/ssp585/msl_h/2071.json | 12 + current/slp/items/ssp585/msl_h/2081.json | 12 + current/slp/items/ssp585/msl_h/2091.json | 12 + current/slp/items/ssp585/msl_h/2101.json | 12 + current/slp/items/ssp585/msl_h/2111.json | 12 + current/slp/items/ssp585/msl_h/2121.json | 12 + current/slp/items/ssp585/msl_h/2131.json | 12 + current/slp/items/ssp585/msl_h/2141.json | 12 + current/slp/items/ssp585/msl_h/2151.json | 12 + current/slp/items/ssp585/msl_l/2031.json | 12 + current/slp/items/ssp585/msl_l/2041.json | 12 + current/slp/items/ssp585/msl_l/2051.json | 12 + current/slp/items/ssp585/msl_l/2061.json | 12 + current/slp/items/ssp585/msl_l/2071.json | 12 + current/slp/items/ssp585/msl_l/2081.json | 12 + current/slp/items/ssp585/msl_l/2091.json | 12 + current/slp/items/ssp585/msl_l/2101.json | 12 + current/slp/items/ssp585/msl_l/2111.json | 12 + current/slp/items/ssp585/msl_l/2121.json | 12 + current/slp/items/ssp585/msl_l/2131.json | 12 + current/slp/items/ssp585/msl_l/2141.json | 12 + current/slp/items/ssp585/msl_l/2151.json | 12 + current/slp/items/ssp585/msl_m/2031.json | 12 + current/slp/items/ssp585/msl_m/2041.json | 12 + current/slp/items/ssp585/msl_m/2051.json | 12 + current/slp/items/ssp585/msl_m/2061.json | 12 + current/slp/items/ssp585/msl_m/2071.json | 12 + current/slp/items/ssp585/msl_m/2081.json | 12 + current/slp/items/ssp585/msl_m/2091.json | 12 + current/slp/items/ssp585/msl_m/2101.json | 12 + current/slp/items/ssp585/msl_m/2111.json | 12 + current/slp/items/ssp585/msl_m/2121.json | 12 + current/slp/items/ssp585/msl_m/2131.json | 12 + current/slp/items/ssp585/msl_m/2141.json | 12 + current/slp/items/ssp585/msl_m/2151.json | 12 + 158 files changed, 2844 insertions(+), 164 deletions(-) diff --git a/current/catalog.json b/current/catalog.json index abedc4cd52..e50e9d8075 100644 --- a/current/catalog.json +++ b/current/catalog.json @@ -124,12 +124,6 @@ "type": "application/json", "title": "Coastal Hazard Flood Projections" }, - { - "rel": "child", - "href": "./slp/collection.json", - "type": "application/json", - "title": "Global Sea Level Projections" - }, { "rel": "child", "href": "./shorelinemonitor-shorelines/collection.json", @@ -147,6 +141,12 @@ "href": "./gcts/collection.json", "type": "application/json", "title": "Global Coastal Transect System (GCTS)" + }, + { + "rel": "child", + "href": "./slp/collection.json", + "type": "application/json", + "title": "Global Sea Level Projections" } ], "assets": { diff --git a/current/slp/collection.json b/current/slp/collection.json index bd4eb64f74..4800c1267c 100644 --- a/current/slp/collection.json +++ b/current/slp/collection.json @@ -2,787 +2,1567 @@ "type": "Collection", "id": "slp", "stac_version": "1.0.0", - "description": "The MSL_CIS_HIGH-END dataset provides AR6-based regional mean sea level projections following the High-end in 2030, 2040, 2050, 2060, 2070, 2080, 2090, 2100, 2110, 2120, 2130, 2140 and 2150 with respect to the baseline period 1995-2014 at a resolution of 1\u00b0 x 1\u00b0.", + "description": "The MSL_CIS_HIGH-END dataset provides AR6-based regional mean sea level projections following the High-end in 2030, 2040, 2050, 2060, 2070, 2080, 2090, 2100, 2110, 2120, 2130, 2140 and 2150 with respect to the baseline period 1995-2014 at a resolution of 1\u00c2\u00b0 x 1\u00c2\u00b0.", "links": [ { "rel": "item", "href": "./items/high_end/msl_h/2031.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2031" + } }, { "rel": "item", "href": "./items/high_end/msl_h/2041.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2041" + } }, { "rel": "item", "href": "./items/high_end/msl_h/2051.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2051" + } }, { "rel": "item", "href": "./items/high_end/msl_h/2061.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2061" + } }, { "rel": "item", "href": "./items/high_end/msl_h/2071.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2071" + } }, { "rel": "item", "href": "./items/high_end/msl_h/2081.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2081" + } }, { "rel": "item", "href": "./items/high_end/msl_h/2091.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2091" + } }, { "rel": "item", "href": "./items/high_end/msl_h/2101.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2101" + } }, { "rel": "item", "href": "./items/high_end/msl_h/2111.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2111" + } }, { "rel": "item", "href": "./items/high_end/msl_h/2121.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2121" + } }, { "rel": "item", "href": "./items/high_end/msl_h/2131.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2131" + } }, { "rel": "item", "href": "./items/high_end/msl_h/2141.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2141" + } }, { "rel": "item", "href": "./items/high_end/msl_h/2151.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2151" + } }, { "rel": "item", "href": "./items/high_end/msl_m/2031.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2031" + } }, { "rel": "item", "href": "./items/high_end/msl_m/2041.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2041" + } }, { "rel": "item", "href": "./items/high_end/msl_m/2051.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2051" + } }, { "rel": "item", "href": "./items/high_end/msl_m/2061.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2061" + } }, { "rel": "item", "href": "./items/high_end/msl_m/2071.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2071" + } }, { "rel": "item", "href": "./items/high_end/msl_m/2081.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2081" + } }, { "rel": "item", "href": "./items/high_end/msl_m/2091.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2091" + } }, { "rel": "item", "href": "./items/high_end/msl_m/2101.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2101" + } }, { "rel": "item", "href": "./items/high_end/msl_m/2111.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2111" + } }, { "rel": "item", "href": "./items/high_end/msl_m/2121.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2121" + } }, { "rel": "item", "href": "./items/high_end/msl_m/2131.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2131" + } }, { "rel": "item", "href": "./items/high_end/msl_m/2141.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2141" + } }, { "rel": "item", "href": "./items/high_end/msl_m/2151.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2151" + } }, { "rel": "item", "href": "./items/high_end/msl_l/2031.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2031" + } }, { "rel": "item", "href": "./items/high_end/msl_l/2041.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2041" + } }, { "rel": "item", "href": "./items/high_end/msl_l/2051.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2051" + } }, { "rel": "item", "href": "./items/high_end/msl_l/2061.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2061" + } }, { "rel": "item", "href": "./items/high_end/msl_l/2071.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2071" + } }, { "rel": "item", "href": "./items/high_end/msl_l/2081.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2081" + } }, { "rel": "item", "href": "./items/high_end/msl_l/2091.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2091" + } }, { "rel": "item", "href": "./items/high_end/msl_l/2101.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2101" + } }, { "rel": "item", "href": "./items/high_end/msl_l/2111.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2111" + } }, { "rel": "item", "href": "./items/high_end/msl_l/2121.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2121" + } }, { "rel": "item", "href": "./items/high_end/msl_l/2131.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2131" + } }, { "rel": "item", "href": "./items/high_end/msl_l/2141.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2141" + } }, { "rel": "item", "href": "./items/high_end/msl_l/2151.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2151" + } }, { "rel": "item", "href": "./items/ssp126/msl_h/2031.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2031" + } }, { "rel": "item", "href": "./items/ssp126/msl_h/2041.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2041" + } }, { "rel": "item", "href": "./items/ssp126/msl_h/2051.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2051" + } }, { "rel": "item", "href": "./items/ssp126/msl_h/2061.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2061" + } }, { "rel": "item", "href": "./items/ssp126/msl_h/2071.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2071" + } }, { "rel": "item", "href": "./items/ssp126/msl_h/2081.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2081" + } }, { "rel": "item", "href": "./items/ssp126/msl_h/2091.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2091" + } }, { "rel": "item", "href": "./items/ssp126/msl_h/2101.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2101" + } }, { "rel": "item", "href": "./items/ssp126/msl_h/2111.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2111" + } }, { "rel": "item", "href": "./items/ssp126/msl_h/2121.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2121" + } }, { "rel": "item", "href": "./items/ssp126/msl_h/2131.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2131" + } }, { "rel": "item", "href": "./items/ssp126/msl_h/2141.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2141" + } }, { "rel": "item", "href": "./items/ssp126/msl_h/2151.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2151" + } }, { "rel": "item", "href": "./items/ssp126/msl_m/2031.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2031" + } }, { "rel": "item", "href": "./items/ssp126/msl_m/2041.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2041" + } }, { "rel": "item", "href": "./items/ssp126/msl_m/2051.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2051" + } }, { "rel": "item", "href": "./items/ssp126/msl_m/2061.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2061" + } }, { "rel": "item", "href": "./items/ssp126/msl_m/2071.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2071" + } }, { "rel": "item", "href": "./items/ssp126/msl_m/2081.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2081" + } }, { "rel": "item", "href": "./items/ssp126/msl_m/2091.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2091" + } }, { "rel": "item", "href": "./items/ssp126/msl_m/2101.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2101" + } }, { "rel": "item", "href": "./items/ssp126/msl_m/2111.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2111" + } }, { "rel": "item", "href": "./items/ssp126/msl_m/2121.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2121" + } }, { "rel": "item", "href": "./items/ssp126/msl_m/2131.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2131" + } }, { "rel": "item", "href": "./items/ssp126/msl_m/2141.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2141" + } }, { "rel": "item", "href": "./items/ssp126/msl_m/2151.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2151" + } }, { "rel": "item", "href": "./items/ssp126/msl_l/2031.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2031" + } }, { "rel": "item", "href": "./items/ssp126/msl_l/2041.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2041" + } }, { "rel": "item", "href": "./items/ssp126/msl_l/2051.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2051" + } }, { "rel": "item", "href": "./items/ssp126/msl_l/2061.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2061" + } }, { "rel": "item", "href": "./items/ssp126/msl_l/2071.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2071" + } }, { "rel": "item", "href": "./items/ssp126/msl_l/2081.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2081" + } }, { "rel": "item", "href": "./items/ssp126/msl_l/2091.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2091" + } }, { "rel": "item", "href": "./items/ssp126/msl_l/2101.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2101" + } }, { "rel": "item", "href": "./items/ssp126/msl_l/2111.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2111" + } }, { "rel": "item", "href": "./items/ssp126/msl_l/2121.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2121" + } }, { "rel": "item", "href": "./items/ssp126/msl_l/2131.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2131" + } }, { "rel": "item", "href": "./items/ssp126/msl_l/2141.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2141" + } }, { "rel": "item", "href": "./items/ssp126/msl_l/2151.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2151" + } }, { "rel": "item", "href": "./items/ssp245/msl_h/2031.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2031" + } }, { "rel": "item", "href": "./items/ssp245/msl_h/2041.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2041" + } }, { "rel": "item", "href": "./items/ssp245/msl_h/2051.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2051" + } }, { "rel": "item", "href": "./items/ssp245/msl_h/2061.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2061" + } }, { "rel": "item", "href": "./items/ssp245/msl_h/2071.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2071" + } }, { "rel": "item", "href": "./items/ssp245/msl_h/2081.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2081" + } }, { "rel": "item", "href": "./items/ssp245/msl_h/2091.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2091" + } }, { "rel": "item", "href": "./items/ssp245/msl_h/2101.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2101" + } }, { "rel": "item", "href": "./items/ssp245/msl_h/2111.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2111" + } }, { "rel": "item", "href": "./items/ssp245/msl_h/2121.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2121" + } }, { "rel": "item", "href": "./items/ssp245/msl_h/2131.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2131" + } }, { "rel": "item", "href": "./items/ssp245/msl_h/2141.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2141" + } }, { "rel": "item", "href": "./items/ssp245/msl_h/2151.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2151" + } }, { "rel": "item", "href": "./items/ssp245/msl_m/2031.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2031" + } }, { "rel": "item", "href": "./items/ssp245/msl_m/2041.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2041" + } }, { "rel": "item", "href": "./items/ssp245/msl_m/2051.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2051" + } }, { "rel": "item", "href": "./items/ssp245/msl_m/2061.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2061" + } }, { "rel": "item", "href": "./items/ssp245/msl_m/2071.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2071" + } }, { "rel": "item", "href": "./items/ssp245/msl_m/2081.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2081" + } }, { "rel": "item", "href": "./items/ssp245/msl_m/2091.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2091" + } }, { "rel": "item", "href": "./items/ssp245/msl_m/2101.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2101" + } }, { "rel": "item", "href": "./items/ssp245/msl_m/2111.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2111" + } }, { "rel": "item", "href": "./items/ssp245/msl_m/2121.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2121" + } }, { "rel": "item", "href": "./items/ssp245/msl_m/2131.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2131" + } }, { "rel": "item", "href": "./items/ssp245/msl_m/2141.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2141" + } }, { "rel": "item", "href": "./items/ssp245/msl_m/2151.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2151" + } }, { "rel": "item", "href": "./items/ssp245/msl_l/2031.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2031" + } }, { "rel": "item", "href": "./items/ssp245/msl_l/2041.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2041" + } }, { "rel": "item", "href": "./items/ssp245/msl_l/2051.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2051" + } }, { "rel": "item", "href": "./items/ssp245/msl_l/2061.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2061" + } }, { "rel": "item", "href": "./items/ssp245/msl_l/2071.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2071" + } }, { "rel": "item", "href": "./items/ssp245/msl_l/2081.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2081" + } }, { "rel": "item", "href": "./items/ssp245/msl_l/2091.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2091" + } }, { "rel": "item", "href": "./items/ssp245/msl_l/2101.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2101" + } }, { "rel": "item", "href": "./items/ssp245/msl_l/2111.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2111" + } }, { "rel": "item", "href": "./items/ssp245/msl_l/2121.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2121" + } }, { "rel": "item", "href": "./items/ssp245/msl_l/2131.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2131" + } }, { "rel": "item", "href": "./items/ssp245/msl_l/2141.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2141" + } }, { "rel": "item", "href": "./items/ssp245/msl_l/2151.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2151" + } }, { "rel": "item", "href": "./items/ssp585/msl_h/2031.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2031" + } }, { "rel": "item", "href": "./items/ssp585/msl_h/2041.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2041" + } }, { "rel": "item", "href": "./items/ssp585/msl_h/2051.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2051" + } }, { "rel": "item", "href": "./items/ssp585/msl_h/2061.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2061" + } }, { "rel": "item", "href": "./items/ssp585/msl_h/2071.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2071" + } }, { "rel": "item", "href": "./items/ssp585/msl_h/2081.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2081" + } }, { "rel": "item", "href": "./items/ssp585/msl_h/2091.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2091" + } }, { "rel": "item", "href": "./items/ssp585/msl_h/2101.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2101" + } }, { "rel": "item", "href": "./items/ssp585/msl_h/2111.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2111" + } }, { "rel": "item", "href": "./items/ssp585/msl_h/2121.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2121" + } }, { "rel": "item", "href": "./items/ssp585/msl_h/2131.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2131" + } }, { "rel": "item", "href": "./items/ssp585/msl_h/2141.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2141" + } }, { "rel": "item", "href": "./items/ssp585/msl_h/2151.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2151" + } }, { "rel": "item", "href": "./items/ssp585/msl_m/2031.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2031" + } }, { "rel": "item", "href": "./items/ssp585/msl_m/2041.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2041" + } }, { "rel": "item", "href": "./items/ssp585/msl_m/2051.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2051" + } }, { "rel": "item", "href": "./items/ssp585/msl_m/2061.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2061" + } }, { "rel": "item", "href": "./items/ssp585/msl_m/2071.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2071" + } }, { "rel": "item", "href": "./items/ssp585/msl_m/2081.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2081" + } }, { "rel": "item", "href": "./items/ssp585/msl_m/2091.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2091" + } }, { "rel": "item", "href": "./items/ssp585/msl_m/2101.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2101" + } }, { "rel": "item", "href": "./items/ssp585/msl_m/2111.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2111" + } }, { "rel": "item", "href": "./items/ssp585/msl_m/2121.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2121" + } }, { "rel": "item", "href": "./items/ssp585/msl_m/2131.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2131" + } }, { "rel": "item", "href": "./items/ssp585/msl_m/2141.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2141" + } }, { "rel": "item", "href": "./items/ssp585/msl_m/2151.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2151" + } }, { "rel": "item", "href": "./items/ssp585/msl_l/2031.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2031" + } }, { "rel": "item", "href": "./items/ssp585/msl_l/2041.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2041" + } }, { "rel": "item", "href": "./items/ssp585/msl_l/2051.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2051" + } }, { "rel": "item", "href": "./items/ssp585/msl_l/2061.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2061" + } }, { "rel": "item", "href": "./items/ssp585/msl_l/2071.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2071" + } }, { "rel": "item", "href": "./items/ssp585/msl_l/2081.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2081" + } }, { "rel": "item", "href": "./items/ssp585/msl_l/2091.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2091" + } }, { "rel": "item", "href": "./items/ssp585/msl_l/2101.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2101" + } }, { "rel": "item", "href": "./items/ssp585/msl_l/2111.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2111" + } }, { "rel": "item", "href": "./items/ssp585/msl_l/2121.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2121" + } }, { "rel": "item", "href": "./items/ssp585/msl_l/2131.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2131" + } }, { "rel": "item", "href": "./items/ssp585/msl_l/2141.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2141" + } }, { "rel": "item", "href": "./items/ssp585/msl_l/2151.json", - "type": "application/json" + "type": "application/json", + "properties": { + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2151" + } }, { "rel": "root", @@ -868,13 +1648,41 @@ }, { "name": "BRGM, French Geological Survey", - "description": "BRGM, the French geological survey, is France\u2019s leading public institution for Earth Science applications for the management of surface and sub-surface resources with a view to sustainable development. Under partnerships with numerous public and private stakeholders, BRGM focuses on scientific research, expertise and innovation. Its activity meets 4 objectives: understanding geological phenomena and related risks, developing new techniques and methodologies, producing and distributing data for surface, subsurface and resource management, providing the tools required to manage the surface, subsurface and resources, prevent risks and pollution, and manage policies in response to climate change.", + "description": "BRGM, the French geological survey, is France\u00e2\u20ac\u2122s leading public institution for Earth Science applications for the management of surface and sub-surface resources with a view to sustainable development. Under partnerships with numerous public and private stakeholders, BRGM focuses on scientific research, expertise and innovation. Its activity meets 4 objectives: understanding geological phenomena and related risks, developing new techniques and methodologies, producing and distributing data for surface, subsurface and resource management, providing the tools required to manage the surface, subsurface and resources, prevent risks and pollution, and manage policies in response to climate change.", "roles": [ "producer" ], "url": "www.brgm.fr" } ], + "summaries": { + "scenarios": [ + "high_end", + "ssp126", + "ssp245", + "ssp585" + ], + "ensemble": [ + "msl_h", + "msl_m", + "msl_l" + ], + "time": [ + "2031", + "2041", + "2051", + "2061", + "2071", + "2081", + "2091", + "2101", + "2111", + "2121", + "2131", + "2141", + "2151" + ] + }, "assets": { "thumbnail": { "href": "https://storage.googleapis.com/dgds-data-public/coclico/assets/thumbnails/slp.png", diff --git a/current/slp/items/high_end/msl_h/2031.json b/current/slp/items/high_end/msl_h/2031.json index 4e7932c694..79d4689550 100644 --- a/current/slp/items/high_end/msl_h/2031.json +++ b/current/slp/items/high_end/msl_h/2031.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2031", "datetime": "2031-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_h_2031", + "type": "application/png", + "title": "slp:high_end_msl_h_2031", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_h/2041.json b/current/slp/items/high_end/msl_h/2041.json index dcb7a5213d..605eb959a6 100644 --- a/current/slp/items/high_end/msl_h/2041.json +++ b/current/slp/items/high_end/msl_h/2041.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2041", "datetime": "2041-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_h_2041", + "type": "application/png", + "title": "slp:high_end_msl_h_2041", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_h/2051.json b/current/slp/items/high_end/msl_h/2051.json index 796464480f..961656b4a0 100644 --- a/current/slp/items/high_end/msl_h/2051.json +++ b/current/slp/items/high_end/msl_h/2051.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2051", "datetime": "2051-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_h_2051", + "type": "application/png", + "title": "slp:high_end_msl_h_2051", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_h/2061.json b/current/slp/items/high_end/msl_h/2061.json index 79a8bb010b..062fe20389 100644 --- a/current/slp/items/high_end/msl_h/2061.json +++ b/current/slp/items/high_end/msl_h/2061.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2061", "datetime": "2061-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_h_2061", + "type": "application/png", + "title": "slp:high_end_msl_h_2061", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_h/2071.json b/current/slp/items/high_end/msl_h/2071.json index 87070528e8..0f0e977bfb 100644 --- a/current/slp/items/high_end/msl_h/2071.json +++ b/current/slp/items/high_end/msl_h/2071.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2071", "datetime": "2071-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_h_2071", + "type": "application/png", + "title": "slp:high_end_msl_h_2071", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_h/2081.json b/current/slp/items/high_end/msl_h/2081.json index 697fc19a6d..c8e4705245 100644 --- a/current/slp/items/high_end/msl_h/2081.json +++ b/current/slp/items/high_end/msl_h/2081.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2081", "datetime": "2081-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_h_2081", + "type": "application/png", + "title": "slp:high_end_msl_h_2081", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_h/2091.json b/current/slp/items/high_end/msl_h/2091.json index 3f1d1436d3..65146f084f 100644 --- a/current/slp/items/high_end/msl_h/2091.json +++ b/current/slp/items/high_end/msl_h/2091.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2091", "datetime": "2091-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_h_2091", + "type": "application/png", + "title": "slp:high_end_msl_h_2091", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_h/2101.json b/current/slp/items/high_end/msl_h/2101.json index 91d54ea7d5..a9cd51af4e 100644 --- a/current/slp/items/high_end/msl_h/2101.json +++ b/current/slp/items/high_end/msl_h/2101.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2101", "datetime": "2101-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_h_2101", + "type": "application/png", + "title": "slp:high_end_msl_h_2101", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_h/2111.json b/current/slp/items/high_end/msl_h/2111.json index 20365319f5..645d2e6c12 100644 --- a/current/slp/items/high_end/msl_h/2111.json +++ b/current/slp/items/high_end/msl_h/2111.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2111", "datetime": "2111-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_h_2111", + "type": "application/png", + "title": "slp:high_end_msl_h_2111", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_h/2121.json b/current/slp/items/high_end/msl_h/2121.json index 021112e94c..c4563342a4 100644 --- a/current/slp/items/high_end/msl_h/2121.json +++ b/current/slp/items/high_end/msl_h/2121.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2121", "datetime": "2121-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_h_2121", + "type": "application/png", + "title": "slp:high_end_msl_h_2121", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_h/2131.json b/current/slp/items/high_end/msl_h/2131.json index 79966d7304..8ed22573af 100644 --- a/current/slp/items/high_end/msl_h/2131.json +++ b/current/slp/items/high_end/msl_h/2131.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2131", "datetime": "2131-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_h_2131", + "type": "application/png", + "title": "slp:high_end_msl_h_2131", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_h/2141.json b/current/slp/items/high_end/msl_h/2141.json index 491b474011..22e232888d 100644 --- a/current/slp/items/high_end/msl_h/2141.json +++ b/current/slp/items/high_end/msl_h/2141.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2141", "datetime": "2141-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_h_2141", + "type": "application/png", + "title": "slp:high_end_msl_h_2141", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_h/2151.json b/current/slp/items/high_end/msl_h/2151.json index ea320ad660..81be20a763 100644 --- a/current/slp/items/high_end/msl_h/2151.json +++ b/current/slp/items/high_end/msl_h/2151.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_h", + "time": "2151", "datetime": "2151-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_h_2151", + "type": "application/png", + "title": "slp:high_end_msl_h_2151", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_l/2031.json b/current/slp/items/high_end/msl_l/2031.json index e4df5a992a..12498464b0 100644 --- a/current/slp/items/high_end/msl_l/2031.json +++ b/current/slp/items/high_end/msl_l/2031.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2031", "datetime": "2031-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_l_2031", + "type": "application/png", + "title": "slp:high_end_msl_l_2031", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_l/2041.json b/current/slp/items/high_end/msl_l/2041.json index 47d0210baf..0f12df33ea 100644 --- a/current/slp/items/high_end/msl_l/2041.json +++ b/current/slp/items/high_end/msl_l/2041.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2041", "datetime": "2041-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_l_2041", + "type": "application/png", + "title": "slp:high_end_msl_l_2041", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_l/2051.json b/current/slp/items/high_end/msl_l/2051.json index ece5522150..04a29eec9d 100644 --- a/current/slp/items/high_end/msl_l/2051.json +++ b/current/slp/items/high_end/msl_l/2051.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2051", "datetime": "2051-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_l_2051", + "type": "application/png", + "title": "slp:high_end_msl_l_2051", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_l/2061.json b/current/slp/items/high_end/msl_l/2061.json index 8bc9df7bf9..be24dd1e95 100644 --- a/current/slp/items/high_end/msl_l/2061.json +++ b/current/slp/items/high_end/msl_l/2061.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2061", "datetime": "2061-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_l_2061", + "type": "application/png", + "title": "slp:high_end_msl_l_2061", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_l/2071.json b/current/slp/items/high_end/msl_l/2071.json index a3ca2d88d6..7dc0064d12 100644 --- a/current/slp/items/high_end/msl_l/2071.json +++ b/current/slp/items/high_end/msl_l/2071.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2071", "datetime": "2071-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_l_2071", + "type": "application/png", + "title": "slp:high_end_msl_l_2071", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_l/2081.json b/current/slp/items/high_end/msl_l/2081.json index 5e8e085565..46b2dd4e41 100644 --- a/current/slp/items/high_end/msl_l/2081.json +++ b/current/slp/items/high_end/msl_l/2081.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2081", "datetime": "2081-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_l_2081", + "type": "application/png", + "title": "slp:high_end_msl_l_2081", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_l/2091.json b/current/slp/items/high_end/msl_l/2091.json index 9176daf97a..cb6e79808b 100644 --- a/current/slp/items/high_end/msl_l/2091.json +++ b/current/slp/items/high_end/msl_l/2091.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2091", "datetime": "2091-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_l_2091", + "type": "application/png", + "title": "slp:high_end_msl_l_2091", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_l/2101.json b/current/slp/items/high_end/msl_l/2101.json index 81515d3d2e..75f1c398f5 100644 --- a/current/slp/items/high_end/msl_l/2101.json +++ b/current/slp/items/high_end/msl_l/2101.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2101", "datetime": "2101-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_l_2101", + "type": "application/png", + "title": "slp:high_end_msl_l_2101", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_l/2111.json b/current/slp/items/high_end/msl_l/2111.json index d3f46c6027..389d201a45 100644 --- a/current/slp/items/high_end/msl_l/2111.json +++ b/current/slp/items/high_end/msl_l/2111.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2111", "datetime": "2111-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_l_2111", + "type": "application/png", + "title": "slp:high_end_msl_l_2111", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_l/2121.json b/current/slp/items/high_end/msl_l/2121.json index 236fd67bda..61f5dad690 100644 --- a/current/slp/items/high_end/msl_l/2121.json +++ b/current/slp/items/high_end/msl_l/2121.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2121", "datetime": "2121-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_l_2121", + "type": "application/png", + "title": "slp:high_end_msl_l_2121", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_l/2131.json b/current/slp/items/high_end/msl_l/2131.json index ba07afa45a..567712ca35 100644 --- a/current/slp/items/high_end/msl_l/2131.json +++ b/current/slp/items/high_end/msl_l/2131.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2131", "datetime": "2131-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_l_2131", + "type": "application/png", + "title": "slp:high_end_msl_l_2131", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_l/2141.json b/current/slp/items/high_end/msl_l/2141.json index 6ca865e84a..0e92286d2d 100644 --- a/current/slp/items/high_end/msl_l/2141.json +++ b/current/slp/items/high_end/msl_l/2141.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2141", "datetime": "2141-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_l_2141", + "type": "application/png", + "title": "slp:high_end_msl_l_2141", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_l/2151.json b/current/slp/items/high_end/msl_l/2151.json index f9771e6276..6ebd922010 100644 --- a/current/slp/items/high_end/msl_l/2151.json +++ b/current/slp/items/high_end/msl_l/2151.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_l", + "time": "2151", "datetime": "2151-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_l_2151", + "type": "application/png", + "title": "slp:high_end_msl_l_2151", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_m/2031.json b/current/slp/items/high_end/msl_m/2031.json index 193c1c5b28..469f9bc6dc 100644 --- a/current/slp/items/high_end/msl_m/2031.json +++ b/current/slp/items/high_end/msl_m/2031.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2031", "datetime": "2031-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_m_2031", + "type": "application/png", + "title": "slp:high_end_msl_m_2031", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_m/2041.json b/current/slp/items/high_end/msl_m/2041.json index 9d8da9617c..68aa36e09e 100644 --- a/current/slp/items/high_end/msl_m/2041.json +++ b/current/slp/items/high_end/msl_m/2041.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2041", "datetime": "2041-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_m_2041", + "type": "application/png", + "title": "slp:high_end_msl_m_2041", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_m/2051.json b/current/slp/items/high_end/msl_m/2051.json index 6d53fc95be..a0c77bc105 100644 --- a/current/slp/items/high_end/msl_m/2051.json +++ b/current/slp/items/high_end/msl_m/2051.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2051", "datetime": "2051-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_m_2051", + "type": "application/png", + "title": "slp:high_end_msl_m_2051", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_m/2061.json b/current/slp/items/high_end/msl_m/2061.json index daa8d8eb93..8ab0982b2d 100644 --- a/current/slp/items/high_end/msl_m/2061.json +++ b/current/slp/items/high_end/msl_m/2061.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2061", "datetime": "2061-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_m_2061", + "type": "application/png", + "title": "slp:high_end_msl_m_2061", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_m/2071.json b/current/slp/items/high_end/msl_m/2071.json index bcf9b6da04..45951b1f8d 100644 --- a/current/slp/items/high_end/msl_m/2071.json +++ b/current/slp/items/high_end/msl_m/2071.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2071", "datetime": "2071-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_m_2071", + "type": "application/png", + "title": "slp:high_end_msl_m_2071", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_m/2081.json b/current/slp/items/high_end/msl_m/2081.json index eb03d1cf0a..04a0843ec2 100644 --- a/current/slp/items/high_end/msl_m/2081.json +++ b/current/slp/items/high_end/msl_m/2081.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2081", "datetime": "2081-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_m_2081", + "type": "application/png", + "title": "slp:high_end_msl_m_2081", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_m/2091.json b/current/slp/items/high_end/msl_m/2091.json index 2e17c25c47..2e17da4f23 100644 --- a/current/slp/items/high_end/msl_m/2091.json +++ b/current/slp/items/high_end/msl_m/2091.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2091", "datetime": "2091-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_m_2091", + "type": "application/png", + "title": "slp:high_end_msl_m_2091", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_m/2101.json b/current/slp/items/high_end/msl_m/2101.json index cabd245480..d96a54a7e5 100644 --- a/current/slp/items/high_end/msl_m/2101.json +++ b/current/slp/items/high_end/msl_m/2101.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2101", "datetime": "2101-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_m_2101", + "type": "application/png", + "title": "slp:high_end_msl_m_2101", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_m/2111.json b/current/slp/items/high_end/msl_m/2111.json index c16ae96fb1..751dc7a6f2 100644 --- a/current/slp/items/high_end/msl_m/2111.json +++ b/current/slp/items/high_end/msl_m/2111.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2111", "datetime": "2111-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_m_2111", + "type": "application/png", + "title": "slp:high_end_msl_m_2111", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_m/2121.json b/current/slp/items/high_end/msl_m/2121.json index 0079a30bec..c5fc87d5e7 100644 --- a/current/slp/items/high_end/msl_m/2121.json +++ b/current/slp/items/high_end/msl_m/2121.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2121", "datetime": "2121-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_m_2121", + "type": "application/png", + "title": "slp:high_end_msl_m_2121", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_m/2131.json b/current/slp/items/high_end/msl_m/2131.json index dd800eef63..e88655cf70 100644 --- a/current/slp/items/high_end/msl_m/2131.json +++ b/current/slp/items/high_end/msl_m/2131.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2131", "datetime": "2131-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_m_2131", + "type": "application/png", + "title": "slp:high_end_msl_m_2131", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_m/2141.json b/current/slp/items/high_end/msl_m/2141.json index 494f5e63c6..94f161fcfc 100644 --- a/current/slp/items/high_end/msl_m/2141.json +++ b/current/slp/items/high_end/msl_m/2141.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2141", "datetime": "2141-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_m_2141", + "type": "application/png", + "title": "slp:high_end_msl_m_2141", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/high_end/msl_m/2151.json b/current/slp/items/high_end/msl_m/2151.json index ee94aaac5e..40d88b6496 100644 --- a/current/slp/items/high_end/msl_m/2151.json +++ b/current/slp/items/high_end/msl_m/2151.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "high_end", + "ensemble": "msl_m", + "time": "2151", "datetime": "2151-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:high_end_msl_m_2151", + "type": "application/png", + "title": "slp:high_end_msl_m_2151", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_h/2031.json b/current/slp/items/ssp126/msl_h/2031.json index 5d2fefbfb5..478d786deb 100644 --- a/current/slp/items/ssp126/msl_h/2031.json +++ b/current/slp/items/ssp126/msl_h/2031.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2031", "datetime": "2031-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_h_2031", + "type": "application/png", + "title": "slp:ssp126_msl_h_2031", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_h/2041.json b/current/slp/items/ssp126/msl_h/2041.json index 9b6fc45fe9..8576b4cdd6 100644 --- a/current/slp/items/ssp126/msl_h/2041.json +++ b/current/slp/items/ssp126/msl_h/2041.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2041", "datetime": "2041-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_h_2041", + "type": "application/png", + "title": "slp:ssp126_msl_h_2041", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_h/2051.json b/current/slp/items/ssp126/msl_h/2051.json index cedd0e940a..31a9e7143a 100644 --- a/current/slp/items/ssp126/msl_h/2051.json +++ b/current/slp/items/ssp126/msl_h/2051.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2051", "datetime": "2051-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_h_2051", + "type": "application/png", + "title": "slp:ssp126_msl_h_2051", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_h/2061.json b/current/slp/items/ssp126/msl_h/2061.json index 83c22a0b02..43b2dcda8b 100644 --- a/current/slp/items/ssp126/msl_h/2061.json +++ b/current/slp/items/ssp126/msl_h/2061.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2061", "datetime": "2061-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_h_2061", + "type": "application/png", + "title": "slp:ssp126_msl_h_2061", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_h/2071.json b/current/slp/items/ssp126/msl_h/2071.json index 5b785a60ac..45b1e49c9a 100644 --- a/current/slp/items/ssp126/msl_h/2071.json +++ b/current/slp/items/ssp126/msl_h/2071.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2071", "datetime": "2071-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_h_2071", + "type": "application/png", + "title": "slp:ssp126_msl_h_2071", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_h/2081.json b/current/slp/items/ssp126/msl_h/2081.json index 3493701f0d..10e1c69f24 100644 --- a/current/slp/items/ssp126/msl_h/2081.json +++ b/current/slp/items/ssp126/msl_h/2081.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2081", "datetime": "2081-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_h_2081", + "type": "application/png", + "title": "slp:ssp126_msl_h_2081", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_h/2091.json b/current/slp/items/ssp126/msl_h/2091.json index 0cdb3b9eba..423cfc7726 100644 --- a/current/slp/items/ssp126/msl_h/2091.json +++ b/current/slp/items/ssp126/msl_h/2091.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2091", "datetime": "2091-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_h_2091", + "type": "application/png", + "title": "slp:ssp126_msl_h_2091", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_h/2101.json b/current/slp/items/ssp126/msl_h/2101.json index 5b7284c57d..762caba90e 100644 --- a/current/slp/items/ssp126/msl_h/2101.json +++ b/current/slp/items/ssp126/msl_h/2101.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2101", "datetime": "2101-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_h_2101", + "type": "application/png", + "title": "slp:ssp126_msl_h_2101", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_h/2111.json b/current/slp/items/ssp126/msl_h/2111.json index d1c7e176e7..26336eeda0 100644 --- a/current/slp/items/ssp126/msl_h/2111.json +++ b/current/slp/items/ssp126/msl_h/2111.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2111", "datetime": "2111-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_h_2111", + "type": "application/png", + "title": "slp:ssp126_msl_h_2111", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_h/2121.json b/current/slp/items/ssp126/msl_h/2121.json index cac79d6f14..0577909e83 100644 --- a/current/slp/items/ssp126/msl_h/2121.json +++ b/current/slp/items/ssp126/msl_h/2121.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2121", "datetime": "2121-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_h_2121", + "type": "application/png", + "title": "slp:ssp126_msl_h_2121", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_h/2131.json b/current/slp/items/ssp126/msl_h/2131.json index 6da45d6402..5388e4a689 100644 --- a/current/slp/items/ssp126/msl_h/2131.json +++ b/current/slp/items/ssp126/msl_h/2131.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2131", "datetime": "2131-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_h_2131", + "type": "application/png", + "title": "slp:ssp126_msl_h_2131", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_h/2141.json b/current/slp/items/ssp126/msl_h/2141.json index 601db2e31c..ab02b9b637 100644 --- a/current/slp/items/ssp126/msl_h/2141.json +++ b/current/slp/items/ssp126/msl_h/2141.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2141", "datetime": "2141-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_h_2141", + "type": "application/png", + "title": "slp:ssp126_msl_h_2141", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_h/2151.json b/current/slp/items/ssp126/msl_h/2151.json index 328d360436..c03d235e47 100644 --- a/current/slp/items/ssp126/msl_h/2151.json +++ b/current/slp/items/ssp126/msl_h/2151.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_h", + "time": "2151", "datetime": "2151-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_h_2151", + "type": "application/png", + "title": "slp:ssp126_msl_h_2151", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_l/2031.json b/current/slp/items/ssp126/msl_l/2031.json index 84a4c05365..c115772bf0 100644 --- a/current/slp/items/ssp126/msl_l/2031.json +++ b/current/slp/items/ssp126/msl_l/2031.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2031", "datetime": "2031-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_l_2031", + "type": "application/png", + "title": "slp:ssp126_msl_l_2031", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_l/2041.json b/current/slp/items/ssp126/msl_l/2041.json index 7cba0fadc4..96310b9262 100644 --- a/current/slp/items/ssp126/msl_l/2041.json +++ b/current/slp/items/ssp126/msl_l/2041.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2041", "datetime": "2041-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_l_2041", + "type": "application/png", + "title": "slp:ssp126_msl_l_2041", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_l/2051.json b/current/slp/items/ssp126/msl_l/2051.json index b0a2d4a4ed..16a7a86c85 100644 --- a/current/slp/items/ssp126/msl_l/2051.json +++ b/current/slp/items/ssp126/msl_l/2051.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2051", "datetime": "2051-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_l_2051", + "type": "application/png", + "title": "slp:ssp126_msl_l_2051", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_l/2061.json b/current/slp/items/ssp126/msl_l/2061.json index 434da2be89..67e22c1163 100644 --- a/current/slp/items/ssp126/msl_l/2061.json +++ b/current/slp/items/ssp126/msl_l/2061.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2061", "datetime": "2061-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_l_2061", + "type": "application/png", + "title": "slp:ssp126_msl_l_2061", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_l/2071.json b/current/slp/items/ssp126/msl_l/2071.json index 23b7cb2306..85cd8520a0 100644 --- a/current/slp/items/ssp126/msl_l/2071.json +++ b/current/slp/items/ssp126/msl_l/2071.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2071", "datetime": "2071-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_l_2071", + "type": "application/png", + "title": "slp:ssp126_msl_l_2071", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_l/2081.json b/current/slp/items/ssp126/msl_l/2081.json index e8cbdd1f65..be064315d6 100644 --- a/current/slp/items/ssp126/msl_l/2081.json +++ b/current/slp/items/ssp126/msl_l/2081.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2081", "datetime": "2081-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_l_2081", + "type": "application/png", + "title": "slp:ssp126_msl_l_2081", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_l/2091.json b/current/slp/items/ssp126/msl_l/2091.json index d381946a60..34e4b42b4d 100644 --- a/current/slp/items/ssp126/msl_l/2091.json +++ b/current/slp/items/ssp126/msl_l/2091.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2091", "datetime": "2091-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_l_2091", + "type": "application/png", + "title": "slp:ssp126_msl_l_2091", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_l/2101.json b/current/slp/items/ssp126/msl_l/2101.json index 6bbc1f8865..2225a34304 100644 --- a/current/slp/items/ssp126/msl_l/2101.json +++ b/current/slp/items/ssp126/msl_l/2101.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2101", "datetime": "2101-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_l_2101", + "type": "application/png", + "title": "slp:ssp126_msl_l_2101", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_l/2111.json b/current/slp/items/ssp126/msl_l/2111.json index b431e5f680..c33c415030 100644 --- a/current/slp/items/ssp126/msl_l/2111.json +++ b/current/slp/items/ssp126/msl_l/2111.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2111", "datetime": "2111-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_l_2111", + "type": "application/png", + "title": "slp:ssp126_msl_l_2111", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_l/2121.json b/current/slp/items/ssp126/msl_l/2121.json index 8791b73411..88fe5143a9 100644 --- a/current/slp/items/ssp126/msl_l/2121.json +++ b/current/slp/items/ssp126/msl_l/2121.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2121", "datetime": "2121-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_l_2121", + "type": "application/png", + "title": "slp:ssp126_msl_l_2121", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_l/2131.json b/current/slp/items/ssp126/msl_l/2131.json index f25495e082..8d4b199887 100644 --- a/current/slp/items/ssp126/msl_l/2131.json +++ b/current/slp/items/ssp126/msl_l/2131.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2131", "datetime": "2131-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_l_2131", + "type": "application/png", + "title": "slp:ssp126_msl_l_2131", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_l/2141.json b/current/slp/items/ssp126/msl_l/2141.json index 2c83c572ea..25f130a7c3 100644 --- a/current/slp/items/ssp126/msl_l/2141.json +++ b/current/slp/items/ssp126/msl_l/2141.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2141", "datetime": "2141-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_l_2141", + "type": "application/png", + "title": "slp:ssp126_msl_l_2141", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_l/2151.json b/current/slp/items/ssp126/msl_l/2151.json index 23ce3ab88f..0b0ef5134a 100644 --- a/current/slp/items/ssp126/msl_l/2151.json +++ b/current/slp/items/ssp126/msl_l/2151.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_l", + "time": "2151", "datetime": "2151-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_l_2151", + "type": "application/png", + "title": "slp:ssp126_msl_l_2151", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_m/2031.json b/current/slp/items/ssp126/msl_m/2031.json index 0ab27329b9..f18e1db3f9 100644 --- a/current/slp/items/ssp126/msl_m/2031.json +++ b/current/slp/items/ssp126/msl_m/2031.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2031", "datetime": "2031-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_m_2031", + "type": "application/png", + "title": "slp:ssp126_msl_m_2031", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_m/2041.json b/current/slp/items/ssp126/msl_m/2041.json index 6836016911..e02326697a 100644 --- a/current/slp/items/ssp126/msl_m/2041.json +++ b/current/slp/items/ssp126/msl_m/2041.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2041", "datetime": "2041-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_m_2041", + "type": "application/png", + "title": "slp:ssp126_msl_m_2041", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_m/2051.json b/current/slp/items/ssp126/msl_m/2051.json index 2cb80c0623..908dd29ab6 100644 --- a/current/slp/items/ssp126/msl_m/2051.json +++ b/current/slp/items/ssp126/msl_m/2051.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2051", "datetime": "2051-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_m_2051", + "type": "application/png", + "title": "slp:ssp126_msl_m_2051", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_m/2061.json b/current/slp/items/ssp126/msl_m/2061.json index 250824bb3d..748039df86 100644 --- a/current/slp/items/ssp126/msl_m/2061.json +++ b/current/slp/items/ssp126/msl_m/2061.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2061", "datetime": "2061-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_m_2061", + "type": "application/png", + "title": "slp:ssp126_msl_m_2061", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_m/2071.json b/current/slp/items/ssp126/msl_m/2071.json index af3b93fd3f..42062ab11a 100644 --- a/current/slp/items/ssp126/msl_m/2071.json +++ b/current/slp/items/ssp126/msl_m/2071.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2071", "datetime": "2071-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_m_2071", + "type": "application/png", + "title": "slp:ssp126_msl_m_2071", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_m/2081.json b/current/slp/items/ssp126/msl_m/2081.json index a5b2d2d0ac..4a047252e9 100644 --- a/current/slp/items/ssp126/msl_m/2081.json +++ b/current/slp/items/ssp126/msl_m/2081.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2081", "datetime": "2081-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_m_2081", + "type": "application/png", + "title": "slp:ssp126_msl_m_2081", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_m/2091.json b/current/slp/items/ssp126/msl_m/2091.json index edea16b375..9f2723c36f 100644 --- a/current/slp/items/ssp126/msl_m/2091.json +++ b/current/slp/items/ssp126/msl_m/2091.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2091", "datetime": "2091-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_m_2091", + "type": "application/png", + "title": "slp:ssp126_msl_m_2091", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_m/2101.json b/current/slp/items/ssp126/msl_m/2101.json index 73fa3ff032..6f5bae10ec 100644 --- a/current/slp/items/ssp126/msl_m/2101.json +++ b/current/slp/items/ssp126/msl_m/2101.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2101", "datetime": "2101-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_m_2101", + "type": "application/png", + "title": "slp:ssp126_msl_m_2101", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_m/2111.json b/current/slp/items/ssp126/msl_m/2111.json index 463cb54466..c0eba65f79 100644 --- a/current/slp/items/ssp126/msl_m/2111.json +++ b/current/slp/items/ssp126/msl_m/2111.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2111", "datetime": "2111-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_m_2111", + "type": "application/png", + "title": "slp:ssp126_msl_m_2111", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_m/2121.json b/current/slp/items/ssp126/msl_m/2121.json index e18a58ac0b..26f1e30271 100644 --- a/current/slp/items/ssp126/msl_m/2121.json +++ b/current/slp/items/ssp126/msl_m/2121.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2121", "datetime": "2121-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_m_2121", + "type": "application/png", + "title": "slp:ssp126_msl_m_2121", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_m/2131.json b/current/slp/items/ssp126/msl_m/2131.json index 6f6e1e654e..8beb827d3b 100644 --- a/current/slp/items/ssp126/msl_m/2131.json +++ b/current/slp/items/ssp126/msl_m/2131.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2131", "datetime": "2131-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_m_2131", + "type": "application/png", + "title": "slp:ssp126_msl_m_2131", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_m/2141.json b/current/slp/items/ssp126/msl_m/2141.json index 9bf5e80955..5bf757f28c 100644 --- a/current/slp/items/ssp126/msl_m/2141.json +++ b/current/slp/items/ssp126/msl_m/2141.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2141", "datetime": "2141-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_m_2141", + "type": "application/png", + "title": "slp:ssp126_msl_m_2141", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp126/msl_m/2151.json b/current/slp/items/ssp126/msl_m/2151.json index 56579c74a4..57db889961 100644 --- a/current/slp/items/ssp126/msl_m/2151.json +++ b/current/slp/items/ssp126/msl_m/2151.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp126", + "ensemble": "msl_m", + "time": "2151", "datetime": "2151-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp126_msl_m_2151", + "type": "application/png", + "title": "slp:ssp126_msl_m_2151", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_h/2031.json b/current/slp/items/ssp245/msl_h/2031.json index dfeeb9f713..7625c2e39b 100644 --- a/current/slp/items/ssp245/msl_h/2031.json +++ b/current/slp/items/ssp245/msl_h/2031.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2031", "datetime": "2031-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_h_2031", + "type": "application/png", + "title": "slp:ssp245_msl_h_2031", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_h/2041.json b/current/slp/items/ssp245/msl_h/2041.json index 6e216b9956..347313c271 100644 --- a/current/slp/items/ssp245/msl_h/2041.json +++ b/current/slp/items/ssp245/msl_h/2041.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2041", "datetime": "2041-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_h_2041", + "type": "application/png", + "title": "slp:ssp245_msl_h_2041", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_h/2051.json b/current/slp/items/ssp245/msl_h/2051.json index 027cd4dd68..52d98fc43e 100644 --- a/current/slp/items/ssp245/msl_h/2051.json +++ b/current/slp/items/ssp245/msl_h/2051.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2051", "datetime": "2051-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_h_2051", + "type": "application/png", + "title": "slp:ssp245_msl_h_2051", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_h/2061.json b/current/slp/items/ssp245/msl_h/2061.json index cffd78be95..a19c3f173b 100644 --- a/current/slp/items/ssp245/msl_h/2061.json +++ b/current/slp/items/ssp245/msl_h/2061.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2061", "datetime": "2061-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_h_2061", + "type": "application/png", + "title": "slp:ssp245_msl_h_2061", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_h/2071.json b/current/slp/items/ssp245/msl_h/2071.json index de57b78631..de01eda814 100644 --- a/current/slp/items/ssp245/msl_h/2071.json +++ b/current/slp/items/ssp245/msl_h/2071.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2071", "datetime": "2071-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_h_2071", + "type": "application/png", + "title": "slp:ssp245_msl_h_2071", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_h/2081.json b/current/slp/items/ssp245/msl_h/2081.json index b08d3ceaa4..9f3b80266f 100644 --- a/current/slp/items/ssp245/msl_h/2081.json +++ b/current/slp/items/ssp245/msl_h/2081.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2081", "datetime": "2081-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_h_2081", + "type": "application/png", + "title": "slp:ssp245_msl_h_2081", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_h/2091.json b/current/slp/items/ssp245/msl_h/2091.json index b211b9c77e..759c07ff26 100644 --- a/current/slp/items/ssp245/msl_h/2091.json +++ b/current/slp/items/ssp245/msl_h/2091.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2091", "datetime": "2091-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_h_2091", + "type": "application/png", + "title": "slp:ssp245_msl_h_2091", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_h/2101.json b/current/slp/items/ssp245/msl_h/2101.json index 2df1ae47fd..ed7a9e6cea 100644 --- a/current/slp/items/ssp245/msl_h/2101.json +++ b/current/slp/items/ssp245/msl_h/2101.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2101", "datetime": "2101-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_h_2101", + "type": "application/png", + "title": "slp:ssp245_msl_h_2101", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_h/2111.json b/current/slp/items/ssp245/msl_h/2111.json index 506e4b1a55..613d9f48cc 100644 --- a/current/slp/items/ssp245/msl_h/2111.json +++ b/current/slp/items/ssp245/msl_h/2111.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2111", "datetime": "2111-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_h_2111", + "type": "application/png", + "title": "slp:ssp245_msl_h_2111", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_h/2121.json b/current/slp/items/ssp245/msl_h/2121.json index f202d1f1bf..f4a0112ab1 100644 --- a/current/slp/items/ssp245/msl_h/2121.json +++ b/current/slp/items/ssp245/msl_h/2121.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2121", "datetime": "2121-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_h_2121", + "type": "application/png", + "title": "slp:ssp245_msl_h_2121", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_h/2131.json b/current/slp/items/ssp245/msl_h/2131.json index 712bbbd97d..74226ea559 100644 --- a/current/slp/items/ssp245/msl_h/2131.json +++ b/current/slp/items/ssp245/msl_h/2131.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2131", "datetime": "2131-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_h_2131", + "type": "application/png", + "title": "slp:ssp245_msl_h_2131", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_h/2141.json b/current/slp/items/ssp245/msl_h/2141.json index 83c0029e0f..d86e9da738 100644 --- a/current/slp/items/ssp245/msl_h/2141.json +++ b/current/slp/items/ssp245/msl_h/2141.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2141", "datetime": "2141-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_h_2141", + "type": "application/png", + "title": "slp:ssp245_msl_h_2141", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_h/2151.json b/current/slp/items/ssp245/msl_h/2151.json index 87b37a4af0..426ee9e46c 100644 --- a/current/slp/items/ssp245/msl_h/2151.json +++ b/current/slp/items/ssp245/msl_h/2151.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_h", + "time": "2151", "datetime": "2151-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_h_2151", + "type": "application/png", + "title": "slp:ssp245_msl_h_2151", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_l/2031.json b/current/slp/items/ssp245/msl_l/2031.json index 4d7d43659c..cd4ed3a0a7 100644 --- a/current/slp/items/ssp245/msl_l/2031.json +++ b/current/slp/items/ssp245/msl_l/2031.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2031", "datetime": "2031-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_l_2031", + "type": "application/png", + "title": "slp:ssp245_msl_l_2031", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_l/2041.json b/current/slp/items/ssp245/msl_l/2041.json index 34523f1db4..b0ec0a8a3c 100644 --- a/current/slp/items/ssp245/msl_l/2041.json +++ b/current/slp/items/ssp245/msl_l/2041.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2041", "datetime": "2041-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_l_2041", + "type": "application/png", + "title": "slp:ssp245_msl_l_2041", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_l/2051.json b/current/slp/items/ssp245/msl_l/2051.json index b9930c055b..211d276dc5 100644 --- a/current/slp/items/ssp245/msl_l/2051.json +++ b/current/slp/items/ssp245/msl_l/2051.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2051", "datetime": "2051-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_l_2051", + "type": "application/png", + "title": "slp:ssp245_msl_l_2051", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_l/2061.json b/current/slp/items/ssp245/msl_l/2061.json index 6b9a764a58..f4a869c6fc 100644 --- a/current/slp/items/ssp245/msl_l/2061.json +++ b/current/slp/items/ssp245/msl_l/2061.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2061", "datetime": "2061-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_l_2061", + "type": "application/png", + "title": "slp:ssp245_msl_l_2061", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_l/2071.json b/current/slp/items/ssp245/msl_l/2071.json index 7640a49dfb..23fc2eac15 100644 --- a/current/slp/items/ssp245/msl_l/2071.json +++ b/current/slp/items/ssp245/msl_l/2071.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2071", "datetime": "2071-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_l_2071", + "type": "application/png", + "title": "slp:ssp245_msl_l_2071", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_l/2081.json b/current/slp/items/ssp245/msl_l/2081.json index a0a4531eda..23fd145355 100644 --- a/current/slp/items/ssp245/msl_l/2081.json +++ b/current/slp/items/ssp245/msl_l/2081.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2081", "datetime": "2081-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_l_2081", + "type": "application/png", + "title": "slp:ssp245_msl_l_2081", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_l/2091.json b/current/slp/items/ssp245/msl_l/2091.json index 791eccc558..730208518f 100644 --- a/current/slp/items/ssp245/msl_l/2091.json +++ b/current/slp/items/ssp245/msl_l/2091.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2091", "datetime": "2091-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_l_2091", + "type": "application/png", + "title": "slp:ssp245_msl_l_2091", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_l/2101.json b/current/slp/items/ssp245/msl_l/2101.json index ee00918c71..88b2169b86 100644 --- a/current/slp/items/ssp245/msl_l/2101.json +++ b/current/slp/items/ssp245/msl_l/2101.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2101", "datetime": "2101-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_l_2101", + "type": "application/png", + "title": "slp:ssp245_msl_l_2101", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_l/2111.json b/current/slp/items/ssp245/msl_l/2111.json index 83cc1a1dac..7e91a2789e 100644 --- a/current/slp/items/ssp245/msl_l/2111.json +++ b/current/slp/items/ssp245/msl_l/2111.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2111", "datetime": "2111-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_l_2111", + "type": "application/png", + "title": "slp:ssp245_msl_l_2111", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_l/2121.json b/current/slp/items/ssp245/msl_l/2121.json index 72a410e3f8..a7ccdb76f5 100644 --- a/current/slp/items/ssp245/msl_l/2121.json +++ b/current/slp/items/ssp245/msl_l/2121.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2121", "datetime": "2121-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_l_2121", + "type": "application/png", + "title": "slp:ssp245_msl_l_2121", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_l/2131.json b/current/slp/items/ssp245/msl_l/2131.json index 7dafb4ebe4..fd61f5d4ab 100644 --- a/current/slp/items/ssp245/msl_l/2131.json +++ b/current/slp/items/ssp245/msl_l/2131.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2131", "datetime": "2131-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_l_2131", + "type": "application/png", + "title": "slp:ssp245_msl_l_2131", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_l/2141.json b/current/slp/items/ssp245/msl_l/2141.json index 1e1090d095..4ab9030cb3 100644 --- a/current/slp/items/ssp245/msl_l/2141.json +++ b/current/slp/items/ssp245/msl_l/2141.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2141", "datetime": "2141-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_l_2141", + "type": "application/png", + "title": "slp:ssp245_msl_l_2141", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_l/2151.json b/current/slp/items/ssp245/msl_l/2151.json index 2799c42752..555d80c481 100644 --- a/current/slp/items/ssp245/msl_l/2151.json +++ b/current/slp/items/ssp245/msl_l/2151.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_l", + "time": "2151", "datetime": "2151-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_l_2151", + "type": "application/png", + "title": "slp:ssp245_msl_l_2151", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_m/2031.json b/current/slp/items/ssp245/msl_m/2031.json index 028e159903..1c519f9d49 100644 --- a/current/slp/items/ssp245/msl_m/2031.json +++ b/current/slp/items/ssp245/msl_m/2031.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2031", "datetime": "2031-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_m_2031", + "type": "application/png", + "title": "slp:ssp245_msl_m_2031", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_m/2041.json b/current/slp/items/ssp245/msl_m/2041.json index 8203daa420..1f4d6c0eaa 100644 --- a/current/slp/items/ssp245/msl_m/2041.json +++ b/current/slp/items/ssp245/msl_m/2041.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2041", "datetime": "2041-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_m_2041", + "type": "application/png", + "title": "slp:ssp245_msl_m_2041", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_m/2051.json b/current/slp/items/ssp245/msl_m/2051.json index b4acd3eb82..f8be392657 100644 --- a/current/slp/items/ssp245/msl_m/2051.json +++ b/current/slp/items/ssp245/msl_m/2051.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2051", "datetime": "2051-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_m_2051", + "type": "application/png", + "title": "slp:ssp245_msl_m_2051", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_m/2061.json b/current/slp/items/ssp245/msl_m/2061.json index a45bda05b4..2ad851ba77 100644 --- a/current/slp/items/ssp245/msl_m/2061.json +++ b/current/slp/items/ssp245/msl_m/2061.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2061", "datetime": "2061-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_m_2061", + "type": "application/png", + "title": "slp:ssp245_msl_m_2061", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_m/2071.json b/current/slp/items/ssp245/msl_m/2071.json index cd18d9e64e..6d218c57ea 100644 --- a/current/slp/items/ssp245/msl_m/2071.json +++ b/current/slp/items/ssp245/msl_m/2071.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2071", "datetime": "2071-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_m_2071", + "type": "application/png", + "title": "slp:ssp245_msl_m_2071", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_m/2081.json b/current/slp/items/ssp245/msl_m/2081.json index e289a5a6aa..94df696633 100644 --- a/current/slp/items/ssp245/msl_m/2081.json +++ b/current/slp/items/ssp245/msl_m/2081.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2081", "datetime": "2081-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_m_2081", + "type": "application/png", + "title": "slp:ssp245_msl_m_2081", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_m/2091.json b/current/slp/items/ssp245/msl_m/2091.json index ca4355ad4c..061935e26e 100644 --- a/current/slp/items/ssp245/msl_m/2091.json +++ b/current/slp/items/ssp245/msl_m/2091.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2091", "datetime": "2091-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_m_2091", + "type": "application/png", + "title": "slp:ssp245_msl_m_2091", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_m/2101.json b/current/slp/items/ssp245/msl_m/2101.json index 6036b3b5a5..65279b66cd 100644 --- a/current/slp/items/ssp245/msl_m/2101.json +++ b/current/slp/items/ssp245/msl_m/2101.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2101", "datetime": "2101-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_m_2101", + "type": "application/png", + "title": "slp:ssp245_msl_m_2101", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_m/2111.json b/current/slp/items/ssp245/msl_m/2111.json index c52333ecfb..758ecb23ec 100644 --- a/current/slp/items/ssp245/msl_m/2111.json +++ b/current/slp/items/ssp245/msl_m/2111.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2111", "datetime": "2111-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_m_2111", + "type": "application/png", + "title": "slp:ssp245_msl_m_2111", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_m/2121.json b/current/slp/items/ssp245/msl_m/2121.json index 40387f61d1..adbeaa2ba7 100644 --- a/current/slp/items/ssp245/msl_m/2121.json +++ b/current/slp/items/ssp245/msl_m/2121.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2121", "datetime": "2121-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_m_2121", + "type": "application/png", + "title": "slp:ssp245_msl_m_2121", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_m/2131.json b/current/slp/items/ssp245/msl_m/2131.json index 2b0c050bed..e72e88f606 100644 --- a/current/slp/items/ssp245/msl_m/2131.json +++ b/current/slp/items/ssp245/msl_m/2131.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2131", "datetime": "2131-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_m_2131", + "type": "application/png", + "title": "slp:ssp245_msl_m_2131", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_m/2141.json b/current/slp/items/ssp245/msl_m/2141.json index 8f5a421b72..0df785729a 100644 --- a/current/slp/items/ssp245/msl_m/2141.json +++ b/current/slp/items/ssp245/msl_m/2141.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2141", "datetime": "2141-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_m_2141", + "type": "application/png", + "title": "slp:ssp245_msl_m_2141", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp245/msl_m/2151.json b/current/slp/items/ssp245/msl_m/2151.json index 4ccdc9d263..57f11ea01a 100644 --- a/current/slp/items/ssp245/msl_m/2151.json +++ b/current/slp/items/ssp245/msl_m/2151.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp245", + "ensemble": "msl_m", + "time": "2151", "datetime": "2151-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp245_msl_m_2151", + "type": "application/png", + "title": "slp:ssp245_msl_m_2151", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_h/2031.json b/current/slp/items/ssp585/msl_h/2031.json index 3c0cc85b78..9dac15e3ab 100644 --- a/current/slp/items/ssp585/msl_h/2031.json +++ b/current/slp/items/ssp585/msl_h/2031.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2031", "datetime": "2031-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_h_2031", + "type": "application/png", + "title": "slp:ssp585_msl_h_2031", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_h/2041.json b/current/slp/items/ssp585/msl_h/2041.json index f86eafd2c0..1d7fa6e0ad 100644 --- a/current/slp/items/ssp585/msl_h/2041.json +++ b/current/slp/items/ssp585/msl_h/2041.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2041", "datetime": "2041-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_h_2041", + "type": "application/png", + "title": "slp:ssp585_msl_h_2041", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_h/2051.json b/current/slp/items/ssp585/msl_h/2051.json index 3ab6d64857..521c6de987 100644 --- a/current/slp/items/ssp585/msl_h/2051.json +++ b/current/slp/items/ssp585/msl_h/2051.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2051", "datetime": "2051-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_h_2051", + "type": "application/png", + "title": "slp:ssp585_msl_h_2051", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_h/2061.json b/current/slp/items/ssp585/msl_h/2061.json index 76466689f0..d4055a88f0 100644 --- a/current/slp/items/ssp585/msl_h/2061.json +++ b/current/slp/items/ssp585/msl_h/2061.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2061", "datetime": "2061-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_h_2061", + "type": "application/png", + "title": "slp:ssp585_msl_h_2061", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_h/2071.json b/current/slp/items/ssp585/msl_h/2071.json index a4b37be528..d29ce85e4d 100644 --- a/current/slp/items/ssp585/msl_h/2071.json +++ b/current/slp/items/ssp585/msl_h/2071.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2071", "datetime": "2071-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_h_2071", + "type": "application/png", + "title": "slp:ssp585_msl_h_2071", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_h/2081.json b/current/slp/items/ssp585/msl_h/2081.json index 586a2c5fb4..6d79347324 100644 --- a/current/slp/items/ssp585/msl_h/2081.json +++ b/current/slp/items/ssp585/msl_h/2081.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2081", "datetime": "2081-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_h_2081", + "type": "application/png", + "title": "slp:ssp585_msl_h_2081", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_h/2091.json b/current/slp/items/ssp585/msl_h/2091.json index 131738ec32..07de321a1b 100644 --- a/current/slp/items/ssp585/msl_h/2091.json +++ b/current/slp/items/ssp585/msl_h/2091.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2091", "datetime": "2091-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_h_2091", + "type": "application/png", + "title": "slp:ssp585_msl_h_2091", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_h/2101.json b/current/slp/items/ssp585/msl_h/2101.json index 66848897f7..ca836f5a66 100644 --- a/current/slp/items/ssp585/msl_h/2101.json +++ b/current/slp/items/ssp585/msl_h/2101.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2101", "datetime": "2101-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_h_2101", + "type": "application/png", + "title": "slp:ssp585_msl_h_2101", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_h/2111.json b/current/slp/items/ssp585/msl_h/2111.json index 70ec6d4b94..0289ca5b7b 100644 --- a/current/slp/items/ssp585/msl_h/2111.json +++ b/current/slp/items/ssp585/msl_h/2111.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2111", "datetime": "2111-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_h_2111", + "type": "application/png", + "title": "slp:ssp585_msl_h_2111", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_h/2121.json b/current/slp/items/ssp585/msl_h/2121.json index cd2e80421e..67c0cadacd 100644 --- a/current/slp/items/ssp585/msl_h/2121.json +++ b/current/slp/items/ssp585/msl_h/2121.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2121", "datetime": "2121-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_h_2121", + "type": "application/png", + "title": "slp:ssp585_msl_h_2121", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_h/2131.json b/current/slp/items/ssp585/msl_h/2131.json index 7f372ce5c1..3c4175ad95 100644 --- a/current/slp/items/ssp585/msl_h/2131.json +++ b/current/slp/items/ssp585/msl_h/2131.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2131", "datetime": "2131-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_h_2131", + "type": "application/png", + "title": "slp:ssp585_msl_h_2131", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_h/2141.json b/current/slp/items/ssp585/msl_h/2141.json index 7540a01a56..3bd1374cee 100644 --- a/current/slp/items/ssp585/msl_h/2141.json +++ b/current/slp/items/ssp585/msl_h/2141.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2141", "datetime": "2141-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_h_2141", + "type": "application/png", + "title": "slp:ssp585_msl_h_2141", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_h/2151.json b/current/slp/items/ssp585/msl_h/2151.json index 7f6a16fd04..dc8914c65b 100644 --- a/current/slp/items/ssp585/msl_h/2151.json +++ b/current/slp/items/ssp585/msl_h/2151.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_h", + "time": "2151", "datetime": "2151-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_h_2151", + "type": "application/png", + "title": "slp:ssp585_msl_h_2151", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_l/2031.json b/current/slp/items/ssp585/msl_l/2031.json index 2af72fa075..1b94636795 100644 --- a/current/slp/items/ssp585/msl_l/2031.json +++ b/current/slp/items/ssp585/msl_l/2031.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2031", "datetime": "2031-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_l_2031", + "type": "application/png", + "title": "slp:ssp585_msl_l_2031", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_l/2041.json b/current/slp/items/ssp585/msl_l/2041.json index 582da2810c..4ed73d76b2 100644 --- a/current/slp/items/ssp585/msl_l/2041.json +++ b/current/slp/items/ssp585/msl_l/2041.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2041", "datetime": "2041-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_l_2041", + "type": "application/png", + "title": "slp:ssp585_msl_l_2041", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_l/2051.json b/current/slp/items/ssp585/msl_l/2051.json index 8b2b107465..7a80af8896 100644 --- a/current/slp/items/ssp585/msl_l/2051.json +++ b/current/slp/items/ssp585/msl_l/2051.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2051", "datetime": "2051-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_l_2051", + "type": "application/png", + "title": "slp:ssp585_msl_l_2051", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_l/2061.json b/current/slp/items/ssp585/msl_l/2061.json index 89a38ea432..891fa978ce 100644 --- a/current/slp/items/ssp585/msl_l/2061.json +++ b/current/slp/items/ssp585/msl_l/2061.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2061", "datetime": "2061-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_l_2061", + "type": "application/png", + "title": "slp:ssp585_msl_l_2061", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_l/2071.json b/current/slp/items/ssp585/msl_l/2071.json index 7578823128..8649e97acc 100644 --- a/current/slp/items/ssp585/msl_l/2071.json +++ b/current/slp/items/ssp585/msl_l/2071.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2071", "datetime": "2071-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_l_2071", + "type": "application/png", + "title": "slp:ssp585_msl_l_2071", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_l/2081.json b/current/slp/items/ssp585/msl_l/2081.json index a3f5c362a4..b521616508 100644 --- a/current/slp/items/ssp585/msl_l/2081.json +++ b/current/slp/items/ssp585/msl_l/2081.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2081", "datetime": "2081-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_l_2081", + "type": "application/png", + "title": "slp:ssp585_msl_l_2081", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_l/2091.json b/current/slp/items/ssp585/msl_l/2091.json index 0be53bf6c9..d30e064f7f 100644 --- a/current/slp/items/ssp585/msl_l/2091.json +++ b/current/slp/items/ssp585/msl_l/2091.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2091", "datetime": "2091-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_l_2091", + "type": "application/png", + "title": "slp:ssp585_msl_l_2091", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_l/2101.json b/current/slp/items/ssp585/msl_l/2101.json index e2442a7292..3f0f109a3a 100644 --- a/current/slp/items/ssp585/msl_l/2101.json +++ b/current/slp/items/ssp585/msl_l/2101.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2101", "datetime": "2101-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_l_2101", + "type": "application/png", + "title": "slp:ssp585_msl_l_2101", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_l/2111.json b/current/slp/items/ssp585/msl_l/2111.json index e07baaafb9..e2868979ed 100644 --- a/current/slp/items/ssp585/msl_l/2111.json +++ b/current/slp/items/ssp585/msl_l/2111.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2111", "datetime": "2111-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_l_2111", + "type": "application/png", + "title": "slp:ssp585_msl_l_2111", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_l/2121.json b/current/slp/items/ssp585/msl_l/2121.json index 7e88d0cdad..9665d02841 100644 --- a/current/slp/items/ssp585/msl_l/2121.json +++ b/current/slp/items/ssp585/msl_l/2121.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2121", "datetime": "2121-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_l_2121", + "type": "application/png", + "title": "slp:ssp585_msl_l_2121", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_l/2131.json b/current/slp/items/ssp585/msl_l/2131.json index 4d356ba47e..38a20550f5 100644 --- a/current/slp/items/ssp585/msl_l/2131.json +++ b/current/slp/items/ssp585/msl_l/2131.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2131", "datetime": "2131-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_l_2131", + "type": "application/png", + "title": "slp:ssp585_msl_l_2131", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_l/2141.json b/current/slp/items/ssp585/msl_l/2141.json index a413747b2b..500b27f283 100644 --- a/current/slp/items/ssp585/msl_l/2141.json +++ b/current/slp/items/ssp585/msl_l/2141.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2141", "datetime": "2141-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_l_2141", + "type": "application/png", + "title": "slp:ssp585_msl_l_2141", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_l/2151.json b/current/slp/items/ssp585/msl_l/2151.json index 314c42176b..81bbc722b1 100644 --- a/current/slp/items/ssp585/msl_l/2151.json +++ b/current/slp/items/ssp585/msl_l/2151.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_l", + "time": "2151", "datetime": "2151-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_l_2151", + "type": "application/png", + "title": "slp:ssp585_msl_l_2151", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_m/2031.json b/current/slp/items/ssp585/msl_m/2031.json index 1d5def22ab..05e2a5c4e8 100644 --- a/current/slp/items/ssp585/msl_m/2031.json +++ b/current/slp/items/ssp585/msl_m/2031.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2031", "datetime": "2031-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_m_2031", + "type": "application/png", + "title": "slp:ssp585_msl_m_2031", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_m/2041.json b/current/slp/items/ssp585/msl_m/2041.json index 9647bdffd3..036ecf1318 100644 --- a/current/slp/items/ssp585/msl_m/2041.json +++ b/current/slp/items/ssp585/msl_m/2041.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2041", "datetime": "2041-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_m_2041", + "type": "application/png", + "title": "slp:ssp585_msl_m_2041", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_m/2051.json b/current/slp/items/ssp585/msl_m/2051.json index 655a708063..83bbeb2793 100644 --- a/current/slp/items/ssp585/msl_m/2051.json +++ b/current/slp/items/ssp585/msl_m/2051.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2051", "datetime": "2051-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_m_2051", + "type": "application/png", + "title": "slp:ssp585_msl_m_2051", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_m/2061.json b/current/slp/items/ssp585/msl_m/2061.json index 08b5e3b79b..82506c5299 100644 --- a/current/slp/items/ssp585/msl_m/2061.json +++ b/current/slp/items/ssp585/msl_m/2061.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2061", "datetime": "2061-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_m_2061", + "type": "application/png", + "title": "slp:ssp585_msl_m_2061", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_m/2071.json b/current/slp/items/ssp585/msl_m/2071.json index e885edad41..65329c095b 100644 --- a/current/slp/items/ssp585/msl_m/2071.json +++ b/current/slp/items/ssp585/msl_m/2071.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2071", "datetime": "2071-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_m_2071", + "type": "application/png", + "title": "slp:ssp585_msl_m_2071", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_m/2081.json b/current/slp/items/ssp585/msl_m/2081.json index ada90bfb8e..51ffcae569 100644 --- a/current/slp/items/ssp585/msl_m/2081.json +++ b/current/slp/items/ssp585/msl_m/2081.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2081", "datetime": "2081-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_m_2081", + "type": "application/png", + "title": "slp:ssp585_msl_m_2081", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_m/2091.json b/current/slp/items/ssp585/msl_m/2091.json index ee6e5f9f35..a36f2619a5 100644 --- a/current/slp/items/ssp585/msl_m/2091.json +++ b/current/slp/items/ssp585/msl_m/2091.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2091", "datetime": "2091-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_m_2091", + "type": "application/png", + "title": "slp:ssp585_msl_m_2091", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_m/2101.json b/current/slp/items/ssp585/msl_m/2101.json index bb0ddb99aa..5839caf57d 100644 --- a/current/slp/items/ssp585/msl_m/2101.json +++ b/current/slp/items/ssp585/msl_m/2101.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2101", "datetime": "2101-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_m_2101", + "type": "application/png", + "title": "slp:ssp585_msl_m_2101", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_m/2111.json b/current/slp/items/ssp585/msl_m/2111.json index 15d54503f3..dac47458d3 100644 --- a/current/slp/items/ssp585/msl_m/2111.json +++ b/current/slp/items/ssp585/msl_m/2111.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2111", "datetime": "2111-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_m_2111", + "type": "application/png", + "title": "slp:ssp585_msl_m_2111", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_m/2121.json b/current/slp/items/ssp585/msl_m/2121.json index 4586e4c542..378b37f635 100644 --- a/current/slp/items/ssp585/msl_m/2121.json +++ b/current/slp/items/ssp585/msl_m/2121.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2121", "datetime": "2121-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_m_2121", + "type": "application/png", + "title": "slp:ssp585_msl_m_2121", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_m/2131.json b/current/slp/items/ssp585/msl_m/2131.json index 19c888483c..9817aff58e 100644 --- a/current/slp/items/ssp585/msl_m/2131.json +++ b/current/slp/items/ssp585/msl_m/2131.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2131", "datetime": "2131-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_m_2131", + "type": "application/png", + "title": "slp:ssp585_msl_m_2131", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_m/2141.json b/current/slp/items/ssp585/msl_m/2141.json index 9db5db313d..b6a41459f0 100644 --- a/current/slp/items/ssp585/msl_m/2141.json +++ b/current/slp/items/ssp585/msl_m/2141.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2141", "datetime": "2141-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_m_2141", + "type": "application/png", + "title": "slp:ssp585_msl_m_2141", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [ diff --git a/current/slp/items/ssp585/msl_m/2151.json b/current/slp/items/ssp585/msl_m/2151.json index 4288137958..f27e44066f 100644 --- a/current/slp/items/ssp585/msl_m/2151.json +++ b/current/slp/items/ssp585/msl_m/2151.json @@ -49,6 +49,9 @@ -1.0, 90.5 ], + "scenarios": "ssp585", + "ensemble": "msl_m", + "time": "2151", "datetime": "2151-07-02T12:00:00Z" }, "geometry": { @@ -105,6 +108,15 @@ "roles": [ "data" ] + }, + "visual": { + "href": "https://coclico.avi.deltares.nl/geoserver/slr/wms?bbox={bbox-epsg-3857}&format=image/png&service=WMS&version=1.1.1&request=GetMap&srs=EPSG:3857&transparent=true&width=256&height=256&layers=slp:ssp585_msl_m_2151", + "type": "application/png", + "title": "slp:ssp585_msl_m_2151", + "description": "OGS WMS url", + "roles": [ + "visual" + ] } }, "bbox": [