From 08c53ae27de8f7e5a444b2d7d568e29c9fd90e86 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Tue, 14 Apr 2020 17:14:20 +0200 Subject: [PATCH] downgrade waterways A lot of streams in OSM are of minor importance, they certainly should show up lower in the list of results than villages. Those rivers/streams that are well known have a wikipedia page and get a higher importance from that. The disadvantage with downgrading is that the address gets even more useless but that's something that needs to be solved outside the rank search. --- settings/address-levels.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/settings/address-levels.json b/settings/address-levels.json index 9f32fc98..10cbf307 100644 --- a/settings/address-levels.json +++ b/settings/address-levels.json @@ -63,7 +63,11 @@ "sea" : [4, 0] }, "waterway" : { - "" : [17, 0] + "river" : [19, 0], + "stream" : [22, 0], + "ditch" : [22, 0], + "drain" : [22, 0], + "" : [20, 0] }, "highway" : { "" : 26, -- 2.39.5