[search] Follow up 57b31173e8.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako 2023-06-15 22:07:36 -03:00
parent c344ed52f3
commit 56739fdf24
2 changed files with 38 additions and 11 deletions

View file

@ -146,10 +146,15 @@ NameScores GetNameScores(FeatureType & ft, Geocoder::Params const & params,
{
if (ft.GetGeomType() == feature::GeomType::Line)
{
// Separate case for addr:interpolation (Building + Line).
ASSERT(!ft.GetRef().empty(), ());
// Just assign SUBSTRING with no errors (was checked in HouseNumbersMatch).
bestScores.UpdateIfBetter(NameScores(NameScore::SUBSTRING, ErrorsMade(0), false, 4));
// Sometimes we can get linear matches with postcode (instead of house number) here.
// Because of _fake_ TYPE_BUILDING layer in MatchPOIsAndBuildings.
if (ftypes::IsAddressInterpolChecker::Instance()(ft))
{
// Separate case for addr:interpolation (Building + Line).
ASSERT(!ft.GetRef().empty(), ());
// Just assign SUBSTRING with no errors (was checked in HouseNumbersMatch).
bestScores.UpdateIfBetter(NameScores(NameScore::SUBSTRING, ErrorsMade(0), false, 4));
}
}
else
UpdateNameScores(ft.GetHouseNumber(), StringUtf8Multilang::kDefaultCode, sliceNoCategories, bestScores);

View file

@ -609,15 +609,37 @@ UNIT_CLASS_TEST(MwmTestsFixture, AddrInterpolation_Rank)
ms::LatLon const center(-34.57852, -58.42567);
SetViewportAndLoadMaps(center);
auto request = MakeRequest("Sante Fe 1176", "en");
auto const & results = request->Results();
{
auto request = MakeRequest("Sante Fe 1176", "en");
auto const & results = request->Results();
TEST_GREATER(results.size(), kPopularPoiResultsCount, ());
TEST_GREATER(results.size(), kPopularPoiResultsCount, ());
// Top first address results in 50 km.
Range const range(results);
EqualClassifType(range, GetClassifTypes({{"addr:interpolation"}}));
TEST_LESS(SortedByDistance(range, center), 50000.0, ());
// Top first address results in 50 km.
Range const range(results);
EqualClassifType(range, GetClassifTypes({{"addr:interpolation"}}));
TEST_LESS(SortedByDistance(range, center), 50000.0, ());
}
// Funny object here. barrier=fence with address and postcode=2700.
// We should rank it lower than housenumber matchings. Or not?
// https://www.openstreetmap.org/way/582640784#map=19/-33.91495/-60.55215
{
auto request = MakeRequest("José Hernández 2700", "en");
auto const & results = request->Results();
TEST_GREATER(results.size(), kPopularPoiResultsCount, ());
// Top first address results.
Range const range(results, 0, 6 /* count */);
EqualClassifType(range, GetClassifTypes({{"building", "address"}}));
// Results are not sorted because one match is not exact (address near street).
//TEST_LESS(SortedByDistance(range, center), 300000.0, ());
// Interesting results goes after, streets on distance ~250km in Pergamino.
// Seems like because of matching 2700 postcode.
}
}
} // namespace real_mwm_tests