From fb8bba0ec4a89311bec926d876a1be5274b74c64 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stephan=20B=C3=B6sch-Plepelits?= <skunk@xover.mud.at>
Date: Tue, 2 May 2023 21:04:23 +0200
Subject: [PATCH] cycle_turn_on_red: category which shows
 'red_turn:*:bicycle=yes'

---
 cycle_turn_on_red.yaml | 10 ++++++++++
 1 file changed, 10 insertions(+)
 create mode 100644 cycle_turn_on_red.yaml

diff --git a/cycle_turn_on_red.yaml b/cycle_turn_on_red.yaml
new file mode 100644
index 0000000..2ccc557
--- /dev/null
+++ b/cycle_turn_on_red.yaml
@@ -0,0 +1,10 @@
+query:
+  12: node[~"^red_turn:.*:bicycle$"~"^yes$"];
+feature:
+  title: |
+    {{ tagTrans('highway', tags.highway) }}
+  body: |
+    <ul>
+    {% for k, v in tags %}
+    {% if k|matches('^red_turn:.*:bicycle$') and v == 'yes' %}<li>{{ k }}={{ v }}</li>{% endif %}
+    {% endfor %}