From: Sarah Hoffmann Date: Wed, 25 Nov 2020 15:58:40 +0000 (+0100) Subject: Merge remote-tracking branch 'upstream/master' X-Git-Tag: deploy~197 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/dc3b1abfe2d06c790317bb66e51abfd9334e08f8?hp=-c Merge remote-tracking branch 'upstream/master' --- dc3b1abfe2d06c790317bb66e51abfd9334e08f8 diff --combined lib/Geocode.php index cce85f2b,ed02848e..6589f754 --- a/lib/Geocode.php +++ b/lib/Geocode.php @@@ -18,7 -18,7 +18,7 @@@ class Geocod protected $aLangPrefOrder = array(); protected $aExcludePlaceIDs = array(); - protected $bReverseInPlan = false; + protected $bReverseInPlan = true; protected $iLimit = 20; protected $iFinalLimit = 10; @@@ -650,6 -650,8 +650,8 @@@ $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)) { diff --combined sql/functions/address_lookup.sql index de6fe1d1,6ee1f048..2426a698 --- a/sql/functions/address_lookup.sql +++ b/sql/functions/address_lookup.sql @@@ -214,7 -214,7 +214,7 @@@ BEGI FOR location IN SELECT placex.place_id, osm_type, osm_id, name, class, type, coalesce(extratags->'linked_place', extratags->'place') as place_type, - admin_level, fromarea, isaddress, + admin_level, fromarea, isaddress and linked_place_id is NULL as isaddress, CASE WHEN rank_address = 11 THEN 5 ELSE rank_address END as rank_address, distance, country_code, postcode FROM place_addressline join placex on (address_place_id = placex.place_id) @@@ -289,7 -289,7 +289,7 @@@ IF search_unlisted_place is not null THEN RETURN NEXT ROW(null, null, null, hstore('name', search_unlisted_place), - 'place', 'locality', null, null, true, true, 26, 0)::addressline; + 'place', 'locality', null, null, true, true, 25, 0)::addressline; END IF; IF searchpostcode IS NOT NULL THEN