From: Sarah Hoffmann Date: Fri, 6 Feb 2015 22:22:20 +0000 (+0100) Subject: reduce search area for secondary adresses when areas are involved X-Git-Tag: v2.4.0~37 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/5d87136969dc13951ddddac346ffd0cd95dc1326?hp=--cc reduce search area for secondary adresses when areas are involved --- 5d87136969dc13951ddddac346ffd0cd95dc1326 diff --git a/sql/functions.sql b/sql/functions.sql index c46b3cf6..9aaab256 100644 --- a/sql/functions.sql +++ b/sql/functions.sql @@ -1794,7 +1794,20 @@ BEGIN IF location.rank_address != location_rank_search THEN location_rank_search := location.rank_address; - location_distance := location.distance * 1.5; + IF location.isguess THEN + location_distance := location.distance * 1.5; + ELSE + IF location.rank_address <= 12 THEN + -- for county and above, if we have an area consider that exact + -- (It would be nice to relax the constraint for places close to + -- the boundary but we'd need the exact geometry for that. Too + -- expensive.) + location_distance = 0; + ELSE + -- Below county level remain slightly fuzzy. + location_distance := location.distance * 0.5; + END IF; + END IF; ELSE CONTINUE WHEN location.keywords <@ location_keywords; END IF;