Skip to content

Commit

Permalink
small media type fix background layers
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneKras committed Jan 22, 2025
1 parent f588d19 commit 06cbd34
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion current/LAU_CM/items/LAU_2020_NUTS_2021_01M_3035_CM.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
},
"visual": {
"href": "https://coclico.avi.deltares.nl/geoserver/gwc/service/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&LAYER=lau:coclico_LAU_CM_LAU_2020_NUTS_2021_01M_3035_CM&STYLE=&TILEMATRIX=EPSG:900913:{z}&TILEMATRIXSET=EPSG:900913&FORMAT=application/vnd.mapbox-vector-tile&TILECOL={x}&TILEROW={y}",
"type": "application/png",
"type": "application/vnd.apache.parquet",
"title": "lau:coclico_LAU_CM_LAU_2020_NUTS_2021_01M_3035_CM",
"description": "OGS WMTS url",
"roles": [
Expand Down
2 changes: 1 addition & 1 deletion current/NUTS0_CM/items/NUTS0_RG_01M_2021_3035_CM.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
},
"visual": {
"href": "https://coclico.avi.deltares.nl/geoserver/gwc/service/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&LAYER=nuts0:coclico_NUTS0_CM_NUTS0_RG_01M_2021_3035_CM&STYLE=&TILEMATRIX=EPSG:900913:{z}&TILEMATRIXSET=EPSG:900913&FORMAT=application/vnd.mapbox-vector-tile&TILECOL={x}&TILEROW={y}",
"type": "application/png",
"type": "application/vnd.apache.parquet",
"title": "nuts0:coclico_NUTS0_CM_NUTS0_RG_01M_2021_3035_CM",
"description": "OGS WMTS url",
"roles": [
Expand Down
2 changes: 1 addition & 1 deletion current/NUTS2_CM/items/NUTS2_RG_01M_2021_3035_CM.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
},
"visual": {
"href": "https://coclico.avi.deltares.nl/geoserver/gwc/service/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&LAYER=nuts2:coclico_NUTS2_CM_NUTS2_RG_01M_2021_3035_CM&STYLE=&TILEMATRIX=EPSG:900913:{z}&TILEMATRIXSET=EPSG:900913&FORMAT=application/vnd.mapbox-vector-tile&TILECOL={x}&TILEROW={y}",
"type": "application/png",
"type": "application/vnd.apache.parquet",
"title": "nuts2:coclico_NUTS2_CM_NUTS2_RG_01M_2021_3035_CM",
"description": "OGS WMTS url",
"roles": [
Expand Down
2 changes: 1 addition & 1 deletion scripts/create_stacs/99_LAU_CM_stacs.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def create_item(
vasset = pystac.Asset( # data asset
href="https://coclico.avi.deltares.nl/geoserver/gwc/service/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&LAYER=%s&STYLE=&TILEMATRIX=EPSG:900913:{z}&TILEMATRIXSET=EPSG:900913&FORMAT=application/vnd.mapbox-vector-tile&TILECOL={x}&TILEROW={y}"
% (title),
media_type="application/png",
media_type="application/vnd.apache.parquet",
title=title,
description="OGS WMTS url",
roles=["visual"],
Expand Down
2 changes: 1 addition & 1 deletion scripts/create_stacs/99_NUTS0_CM_stacs.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def create_item(
vasset = pystac.Asset( # data asset
href="https://coclico.avi.deltares.nl/geoserver/gwc/service/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&LAYER=%s&STYLE=&TILEMATRIX=EPSG:900913:{z}&TILEMATRIXSET=EPSG:900913&FORMAT=application/vnd.mapbox-vector-tile&TILECOL={x}&TILEROW={y}"
% (title),
media_type="application/png",
media_type="application/vnd.apache.parquet",
title=title,
description="OGS WMTS url",
roles=["visual"],
Expand Down
2 changes: 1 addition & 1 deletion scripts/create_stacs/99_NUTS2_CM_stacs.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def create_item(
vasset = pystac.Asset( # data asset
href="https://coclico.avi.deltares.nl/geoserver/gwc/service/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&LAYER=%s&STYLE=&TILEMATRIX=EPSG:900913:{z}&TILEMATRIXSET=EPSG:900913&FORMAT=application/vnd.mapbox-vector-tile&TILECOL={x}&TILEROW={y}"
% (title),
media_type="application/png",
media_type="application/vnd.apache.parquet",
title=title,
description="OGS WMTS url",
roles=["visual"],
Expand Down

0 comments on commit 06cbd34

Please sign in to comment.