From 164c89167d25ab52b5f4cb7b3dec1888cecc1790 Mon Sep 17 00:00:00 2001
From: Robin van der Linde <robin.vanderlinde@gmail.com>
Date: Sat, 26 Sep 2020 17:52:30 +0200
Subject: [PATCH] Added street lighting

---
 street_lighting.json | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 street_lighting.json

diff --git a/street_lighting.json b/street_lighting.json
new file mode 100644
index 0000000..24a30ce
--- /dev/null
+++ b/street_lighting.json
@@ -0,0 +1,25 @@
+{
+    "type": "overpass",
+    "name": {
+        "en": "Street Lighting",
+        "de": "Straßenbeleuchtung",
+        "nl": "Straatverlichting"
+    },
+    "query": {
+        "16": "(way[highway];)"
+    },
+    "feature": {
+        "markerSymbol": "",
+        "style": {
+            "color": [
+                "{% if  attribute(tags, 'lit') == \"yes\" %}",
+                "yellow",
+                "{% elseif attribute(tags, 'lit') == \"no\" %}",
+                "black",
+                "{% else %}",
+                "grey",
+                "{% endif %}"
+            ]
+        }
+    }
+}