diff --git a/paddling_amenities.yaml b/paddling_amenities.yaml
index 971db78..77eebfe 100644
--- a/paddling_amenities.yaml
+++ b/paddling_amenities.yaml
@@ -43,35 +43,53 @@ feature:
{{ tagTrans(key, value) }}
body: |-
{% if constIndex in ['canoe=put_in', 'canoe=egress', 'canoe=put_in;egress', 'leisure=slipway','canoe=portage'] %}
-
- - {{ keyTrans('Description') }}
- - {{ localizedTag(tags, 'description') }}
+
+ {% if attribute(tags, 'surface') %}
+ -
+
+ {{ keyTrans('Surface') }}:
+ {{ attribute(tags, 'surface') ? tagTrans('surface', attribute(tags, 'surface')) : '' }}
+
+ {% endif %}
- - {{ keyTrans('Surface') }}
- - {{ attribute(tags, 'surface') ? tagTrans('surface', attribute(tags, 'surface')) : '' }}
- - {{ keyTrans('Operator') }}
- - {{ attribute(tags, 'operator') ? tagTrans('operator', attribute(tags, 'operator')) : '' }}
+ {% if attribute(tags, 'operator') %}
+ -
+
+ {{ keyTrans('Operator') }}:
+ {{ attribute(tags, 'operator') ? tagTrans('operator', attribute(tags, 'operator')) : '' }}
+
+ {% endif %}
- - {{ keyTrans('Access') }}
- - {{ attribute(tags, 'access') ? tagTrans('access', attribute(tags, 'access')) : '' }}
+ {% if attribute(tags, 'access') %}
+ -
+
+ {{ keyTrans('Access') }}:
+ {{ attribute(tags, 'access') ? tagTrans('access', attribute(tags, 'access')) : '' }}
+
+ {% endif %}
- - {{ keyTrans('Fee') }}
- - {{ attribute(tags, 'fee') ? tagTrans('fee', attribute(tags, 'fee')) : '' }}
+ {% if attribute(tags, 'fee') %}
+ -
+
+ {{ keyTrans('Fee') }}:
+ {{ attribute(tags, 'fee') ? tagTrans('fee', attribute(tags, 'fee')) : '' }}
+
+ {% endif %}
- - {{ keyTrans('Wheelchair') }}
- - {{ attribute(tags, 'wheelchair') ? tagTrans('wheelchair', attribute(tags, 'wheelchair')) : '' }}
+ {% if attribute(tags, 'mapillary') %}
+ -
+
+ {{ trans('Photos') }}:
+
+ Mapillary
+
+
+ {% endif %}
- - {{ trans('Photos') }}
- -
-
- {% if attribute(tags, 'mapillary') %}
- - Mapillary
- {% endif %}
-
-
-
- {% endif %}
+
+ {% endif %}
+
markerSign: '{{ item[''sign''] | raw }}'
markerSymbol: |
{% if item['sign'] %}{{ markerPointer({ fillColor: '#FFFFFF' }) }}{% endif %}
@@ -107,4 +125,5 @@ const:
priority: 3
waterway=portage:
sign:
- priority: 2
\ No newline at end of file
+ priority: 2
+
\ No newline at end of file
diff --git a/paddling_hazards.yaml b/paddling_hazards.yaml
index 420a0ba..5572f9e 100644
--- a/paddling_hazards.yaml
+++ b/paddling_hazards.yaml
@@ -3,12 +3,23 @@ query:
'12': |-
(
nwr[waterway~"^(dam|weir|waterfall|rapids|lock|lock_gate|sluice_gate)$"];
+ nwr["seamark:restricted_area:restriction"~"no_entry|restricted_entry"];
+ node["seamark:bridge:clearance_height"];
)
feature:
pre: |-
{% if tags.waterway %}
{% set key = 'waterway' %}
{% set value = tags.waterway %}
+ {% elseif attribute(tags, 'seamark:restricted_area:restriction') %}
+ {% set key = 'seamark:restricted_area:restriction' %}
+ {% set value = '' %}
+ {% elseif attribute(tags, 'seamark:bridge:clearance_height') %}
+ {% set key = 'seamark:bridge:clearance_height' %}
+ {% set value = attribute(tags, 'seamark:bridge:clearance_height') | round %}
+ {% if value > 4 %}
+ {% set value = 4 %}
+ {% endif %}
{% endif %}
{% set constIndex = (key ~ "=" ~ value) %}
@@ -16,27 +27,51 @@ feature:
title: |
{{ item['sign'] | raw }} {{ localizedTag(tags, 'name') | default(localizedTag(tags, 'key')) | default(localizedTag(tags, 'ref')) }}
description: |
- {{ tagTrans(key, value) }}
+ {% if key == 'seamark:restricted_area:restriction' %}
+ {{ attribute(tags, 'seamark:restricted_area:restriction') }}
+ {% elseif key == 'seamark:bridge:clearance_height' %}
+ {{ attribute(tags, 'seamark:bridge:clearance_height') }} Meters
+ {% else %}
+ {{ tagTrans(key, value) }}
+ {% endif %}
body: |-
-
- - {{ keyTrans('Description') }}
- - {{ localizedTag(tags, 'description') }}
-
+
+
{% if attribute(tags, 'operator') %}
- - {{ keyTrans('Operator') }}
- - {{ attribute(tags, 'operator') ? tagTrans('operator', attribute(tags, 'operator')) : '' }}
+ -
+
+ {{ keyTrans('Operator') }}:
+ {{ attribute(tags, 'operator') ? tagTrans('operator', attribute(tags, 'operator')) : '' }}
+
{% endif %}
- - {{ trans('Photos') }}
- -
-
- {% if attribute(tags, 'mapillary') %}
- - Mapillary
- {% endif %}
-
-
+ {% if attribute(tags, 'height') %}
+ -
+
+ {{ keyTrans('Height') }}:
+ {{ attribute(tags, 'height') ? tagTrans('height', attribute(tags, 'height')) : '' }}
+
+ {% endif %}
+
+ {% if attribute(tags, 'width') %}
+ -
+
+ {{ keyTrans('Width') }}:
+ {{ attribute(tags, 'width') ? tagTrans('width', attribute(tags, 'width')) : '' }}
+
+ {% endif %}
-
+ {% if attribute(tags, 'mapillary') %}
+
+
+ {{ trans('Photos') }}:
+
+ Mapillary
+
+
+ {% endif %}
+
+
markerSign:
markerSymbol: |
{{ markerPointer({ fillColor: '#ff6700' }) }}
@@ -70,3 +105,21 @@ const:
waterway=sluice_gate:
sign:
priority: 0
+ seamark:restricted_area:restriction=:
+ sign:
+ priority: 1
+ seamark:bridge:clearance_height=0:
+ sign:
+ priority: 0
+ seamark:bridge:clearance_height=1:
+ sign:
+ priority: 0
+ seamark:bridge:clearance_height=2:
+ sign:
+ priority: 0
+ seamark:bridge:clearance_height=3:
+ sign:
+ priority: 0
+ seamark:bridge:clearance_height=4:
+ sign:
+ priority: 0