From 26405492c9bf2c27db8ce18cc338906a94cf3c04 Mon Sep 17 00:00:00 2001 From: tatiana-yan Date: Mon, 28 Oct 2019 18:10:37 +0300 Subject: [PATCH] [search] Use smaller lookupRadiusM for postcodes builder. --- generator/search_index_builder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/search_index_builder.cpp b/generator/search_index_builder.cpp index 31a4e3b494..0345255fdd 100644 --- a/generator/search_index_builder.cpp +++ b/generator/search_index_builder.cpp @@ -277,7 +277,7 @@ void GetUKPostcodes(string const & filename, storage::CountryId const & countryI auto const p = MercatorBounds::FromLatLon(lat, lon); vector countries; - infoGetter.GetRegionsCountryId(p, countries); + infoGetter.GetRegionsCountryId(p, countries, 200.0 /* lookupRadiusM */); if (find(countries.begin(), countries.end(), countryId) == countries.end()) continue;