X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/e0e18e2b6f4b5e12f35aa80a41c77263221bd730..11622b28639acc90ab064a21914302eca31f8a24:/lib/Geocode.php diff --git a/lib/Geocode.php b/lib/Geocode.php index b07d1ade..ed02848e 100644 --- a/lib/Geocode.php +++ b/lib/Geocode.php @@ -650,6 +650,8 @@ class Geocode $this->oNormalizer ); + $oCtx->setFullNameWords($oValidTokens->getFullWordIDs()); + // Try more interpretations for Tokens that could not be matched. foreach ($aTokens as $sToken) { if ($sToken[0] == ' ' && !$oValidTokens->contains($sToken)) { @@ -934,6 +936,8 @@ class Geocode } else { $aResult['foundorder'] += 0.01; } + // - rank + $aResult['foundorder'] -= 0.00001 * (30 - $aResult['rank_search']); // Adjust importance for the number of exact string matches in the result $iCountWords = 0;