From: Sarah Hoffmann Date: Sat, 15 Aug 2020 20:37:45 +0000 (+0200) Subject: remove traffic signs from full styles X-Git-Tag: v3.6.0~91^2 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/071db1fae7ba7bc2a6216da25dd9bd599c40cebf remove traffic signs from full styles Traffic signs rarely have name and are therefore mostly not searchable. Remove them completely. Allow street lamps only when they have a name. Removes about 2M object from a planet instance. --- diff --git a/settings/import-extratags.style b/settings/import-extratags.style index b7c5223b..d1ae5511 100644 --- a/settings/import-extratags.style +++ b/settings/import-extratags.style @@ -76,6 +76,9 @@ "mini_roundabout" : "skip", "noexit" : "skip", "crossing" : "skip", + "give_way" : "skip", + "stop" : "skip", + "street_lamp" : "main,with_name", "traffic_signals" : "main,with_name", "service" : "main,with_name", "cycleway" : "main,with_name", diff --git a/settings/import-full.style b/settings/import-full.style index e446f18a..0e2d62e7 100644 --- a/settings/import-full.style +++ b/settings/import-full.style @@ -76,6 +76,9 @@ "mini_roundabout" : "skip", "noexit" : "skip", "crossing" : "skip", + "give_way" : "skip", + "stop" : "skip", + "street_lamp" : "main,with_name", "traffic_signals" : "main,with_name", "service" : "main,with_name", "cycleway" : "main,with_name",