From 4eaa8f0b6af9d4dfdc60dbb2dfc6c5faef32f2ca Mon Sep 17 00:00:00 2001
From: Clarisse Abalos <clarisse.abalos@radiantsolutions.com>
Date: Mon, 25 Feb 2019 15:20:13 -0500
Subject: [PATCH] add keepright combinations

---
 data/validator/combinations.mapcss | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)

diff --git a/data/validator/combinations.mapcss b/data/validator/combinations.mapcss
index f10674b..c56a5a3 100644
--- a/data/validator/combinations.mapcss
+++ b/data/validator/combinations.mapcss
@@ -131,7 +131,6 @@ relation[route=ski  ][!piste:type][type=route],
 *[aeroway=terminal][!building],
 *[power=generator][!generator:source],
 *[amenity=social_facility][!social_facility],
-*[amenity=place_of_worship][!denomination],
 *[amenity=place_of_worship][!religion] {
   throwWarning: tr("{0} without {1}", "{0.tag}", "{1.key}");
   group: tr("missing tag");
@@ -546,3 +545,31 @@ way[highway][lanes][!lanes:forward][!lanes:backward][oneway!=yes][oneway!=-1][ju
 node[emergency=fire_hydrant][fire_hydrant:count][fire_hydrant:count!=1] {
   throwOther: tr("{0} together with {1}. Tag each hydrant separately.", "{0.tag}", "{1.tag}");
 }
+  
+/* Keep Right Point of interest without name - 110 */
+
+*[!name][amenity=place_of_worship], 
+*[!name][amenity=pub],
+*[!name][amenity=restaurant],
+*[!name][amenity=school],
+*[!name][amenity=university],
+*[!name][amenity=hospital],
+*[!name][amenity=library],
+*[!name][amenity=theatre],
+*[!name][amenity=courthouse],
+*[!name][amenity=bank],
+*[!name][amenity=cinema], 
+*[!name][amenity=pharmacy],
+*[!name][amenity=cafe], 
+*[!name][amenity=fast_food],
+*[!name][amenity=fuel] {
+    throwWarning: tr("{0} without {1}", "{1.tag}", "{0.key}");
+    group: tr("missing tag");
+}
+
+*[!ele][natural=peak],
+*[!ele][mountain_pass=yes],
+*[!denomination][amenity=place_of_worship] {
+    throwOther: tr("{0} without {1}", "{1.tag}", "{0.key}");
+    group: tr("missing tag");
+}
-- 
2.7.4

