From 71b84104145cc90a6896dcdaf627e7588d877208 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Mon, 27 Feb 2023 14:06:29 -0300 Subject: [PATCH] [feature] Treat highway=elevator as a 'secondary' type. Signed-off-by: Viktor Govako --- indexer/feature_data.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/indexer/feature_data.cpp b/indexer/feature_data.cpp index 0cfa591962..82adfb4ac8 100644 --- a/indexer/feature_data.cpp +++ b/indexer/feature_data.cpp @@ -150,11 +150,12 @@ private: {"amenity", "shelter"}, {"amenity", "toilets"}, {"amenity", "drinking_water"}, - {"shop", "copyshop"}, // often used as secondary tag for amenity=post_office - {"leisure", "pitch"}, // Give priority to tag "sport"=*. + {"shop", "copyshop"}, // often used as secondary tag for amenity=post_office + {"leisure", "pitch"}, // give priority to the "sport"=* tag {"sport", "9pin"}, {"sport", "10pin"}, {"public_transport", "platform"}, + {"highway", "elevator"}, // used with railway=subway_entrance (DC) }; Classificator const & c = classif();