[search] Fixed cities ranking Country/State query.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako 2024-05-09 23:38:33 -03:00 committed by Viktor Havaka
parent eb20b22a7f
commit 2cdc3ef945
2 changed files with 45 additions and 2 deletions

View file

@ -573,7 +573,7 @@ private:
updateDependScore(Model::TYPE_SUBURB, preInfo.m_geoParts.m_suburb);
updateDependScore(Model::TYPE_COMPLEX_POI, preInfo.m_geoParts.m_complexPoi);
if (!Model::IsLocalityType(info.m_type) && preInfo.m_cityId.IsValid())
if (preInfo.m_cityId.IsValid())
{
if (auto city = LoadFeature(preInfo.m_cityId))
{
@ -586,7 +586,20 @@ private:
ASSERT(preInfo.m_tokenRanges[Model::TYPE_VILLAGE].Empty(), ());
}
auto const cityNameScore = updateScoreForFeature(*city, type);
NameScore cityNameScore = NameScore::ZERO;
if (Model::IsLocalityType(info.m_type))
{
// Hack to promote results like "Nice France".
// Otherwise, POIs with "France" token in name around the "Nice" city will be always on top.
if (preInfo.m_allTokensUsed && preInfo.m_cityId == res.GetId() &&
!(preInfo.m_tokenRanges[Model::TYPE_STATE].Empty() &&
preInfo.m_tokenRanges[Model::TYPE_COUNTRY].Empty()))
{
cityNameScore = GetNameScores(ft, m_params, preInfo.m_tokenRanges[type], type).m_nameScore;
}
}
else
cityNameScore = updateScoreForFeature(*city, type);
// Update distance with matched city pivot if we have a _good_ city name score.
// A bit controversial distance score reset, but lets try.

View file

@ -1286,4 +1286,34 @@ UNIT_CLASS_TEST(MwmTestsFixture, NotAllTokens)
}
}
UNIT_CLASS_TEST(MwmTestsFixture, CityWithCountry)
{
auto const & cl = classif();
// "France_Provence-Alpes-Cote dAzur_Maritime Alps" should present!
RegisterLocalMapsByPrefix("France_Provence-Alpes-Cote dAzur");
// Buenos Aires (Palermo)
ms::LatLon const center(-34.58524, -58.42516);
SetViewportAndLoadMaps(center);
{
auto request = MakeRequest("Nice ");
auto const & results = request->Results();
TEST_GREATER(results.size(), kTopPoiResultsCount, ());
// Usually on 3rd place, because "Nice" is a commmon token for POI's name.
TEST_EQUAL(CountClassifType(Range(results, 0, kTopPoiResultsCount), cl.GetTypeByPath({"place", "city"})), 1, ());
}
{
auto request = MakeRequest("Nice France");
auto const & results = request->Results();
TEST_GREATER(results.size(), kTopPoiResultsCount, ());
// Should be on 1st place.
EqualClassifType(Range(results, 0, 1), GetClassifTypes({{"place", "city"}}));
}
}
} // namespace real_mwm_tests