5 require_once(CONST_LibDir.'/PlaceLookup.php');
6 require_once(CONST_LibDir.'/Phrase.php');
7 require_once(CONST_LibDir.'/ReverseGeocode.php');
8 require_once(CONST_LibDir.'/SearchDescription.php');
9 require_once(CONST_LibDir.'/SearchContext.php');
10 require_once(CONST_LibDir.'/TokenList.php');
11 require_once(CONST_TokenizerDir.'/tokenizer.php');
17 protected $oPlaceLookup;
18 protected $oTokenizer;
20 protected $aLangPrefOrder = array();
22 protected $aExcludePlaceIDs = array();
24 protected $iLimit = 20;
25 protected $iFinalLimit = 10;
26 protected $iOffset = 0;
27 protected $bFallback = false;
29 protected $aCountryCodes = false;
31 protected $bBoundedSearch = false;
32 protected $aViewBox = false;
33 protected $aRoutePoints = false;
34 protected $aRouteWidth = false;
36 protected $iMaxRank = 20;
37 protected $iMinAddressRank = 0;
38 protected $iMaxAddressRank = 30;
39 protected $aAddressRankList = array();
41 protected $sAllowedTypesSQLList = false;
43 protected $sQuery = false;
44 protected $aStructuredQuery = false;
47 public function __construct(&$oDB)
50 $this->oPlaceLookup = new PlaceLookup($this->oDB);
51 $this->oTokenizer = new \Nominatim\Tokenizer($this->oDB);
54 public function setLanguagePreference($aLangPref)
56 $this->aLangPrefOrder = $aLangPref;
59 public function getMoreUrlParams()
61 if ($this->aStructuredQuery) {
62 $aParams = $this->aStructuredQuery;
64 $aParams = array('q' => $this->sQuery);
67 $aParams = array_merge($aParams, $this->oPlaceLookup->getMoreUrlParams());
69 if ($this->aExcludePlaceIDs) {
70 $aParams['exclude_place_ids'] = implode(',', $this->aExcludePlaceIDs);
73 if ($this->bBoundedSearch) {
74 $aParams['bounded'] = '1';
77 if ($this->aCountryCodes) {
78 $aParams['countrycodes'] = implode(',', $this->aCountryCodes);
81 if ($this->aViewBox) {
82 $aParams['viewbox'] = join(',', $this->aViewBox);
88 public function setLimit($iLimit = 10)
92 } elseif ($iLimit < 1) {
96 $this->iFinalLimit = $iLimit;
97 $this->iLimit = $iLimit + min($iLimit, 10);
100 public function setFeatureType($sFeatureType)
102 switch ($sFeatureType) {
104 $this->setRankRange(4, 4);
107 $this->setRankRange(8, 8);
110 $this->setRankRange(14, 16);
113 $this->setRankRange(8, 20);
118 public function setRankRange($iMin, $iMax)
120 $this->iMinAddressRank = $iMin;
121 $this->iMaxAddressRank = $iMax;
124 public function setViewbox($aViewbox)
126 $aBox = array_map('floatval', $aViewbox);
128 $this->aViewBox[0] = max(-180.0, min($aBox[0], $aBox[2]));
129 $this->aViewBox[1] = max(-90.0, min($aBox[1], $aBox[3]));
130 $this->aViewBox[2] = min(180.0, max($aBox[0], $aBox[2]));
131 $this->aViewBox[3] = min(90.0, max($aBox[1], $aBox[3]));
133 if ($this->aViewBox[2] - $this->aViewBox[0] < 0.000000001
134 || $this->aViewBox[3] - $this->aViewBox[1] < 0.000000001
136 userError("Bad parameter 'viewbox'. Not a box.");
140 private function viewboxImportanceFactor($fX, $fY)
142 if (!$this->aViewBox) {
146 $fWidth = ($this->aViewBox[2] - $this->aViewBox[0])/2;
147 $fHeight = ($this->aViewBox[3] - $this->aViewBox[1])/2;
149 $fXDist = abs($fX - ($this->aViewBox[0] + $this->aViewBox[2])/2);
150 $fYDist = abs($fY - ($this->aViewBox[1] + $this->aViewBox[3])/2);
152 if ($fXDist <= $fWidth && $fYDist <= $fHeight) {
156 if ($fXDist <= $fWidth * 3 && $fYDist <= 3 * $fHeight) {
163 public function setQuery($sQueryString)
165 $this->sQuery = $sQueryString;
166 $this->aStructuredQuery = false;
169 public function getQueryString()
171 return $this->sQuery;
175 public function loadParamArray($oParams, $sForceGeometryType = null)
177 $this->bBoundedSearch = $oParams->getBool('bounded', $this->bBoundedSearch);
179 $this->setLimit($oParams->getInt('limit', $this->iFinalLimit));
180 $this->iOffset = $oParams->getInt('offset', $this->iOffset);
182 $this->bFallback = $oParams->getBool('fallback', $this->bFallback);
184 // List of excluded Place IDs - used for more acurate pageing
185 $sExcluded = $oParams->getStringList('exclude_place_ids');
187 foreach ($sExcluded as $iExcludedPlaceID) {
188 $iExcludedPlaceID = (int)$iExcludedPlaceID;
189 if ($iExcludedPlaceID) {
190 $aExcludePlaceIDs[$iExcludedPlaceID] = $iExcludedPlaceID;
194 if (isset($aExcludePlaceIDs)) {
195 $this->aExcludePlaceIDs = $aExcludePlaceIDs;
199 // Only certain ranks of feature
200 $sFeatureType = $oParams->getString('featureType');
201 if (!$sFeatureType) {
202 $sFeatureType = $oParams->getString('featuretype');
205 $this->setFeatureType($sFeatureType);
209 $sCountries = $oParams->getStringList('countrycodes');
211 foreach ($sCountries as $sCountryCode) {
212 if (preg_match('/^[a-zA-Z][a-zA-Z]$/', $sCountryCode)) {
213 $aCountries[] = strtolower($sCountryCode);
216 if (isset($aCountries)) {
217 $this->aCountryCodes = $aCountries;
221 $aViewbox = $oParams->getStringList('viewboxlbrt');
223 if (count($aViewbox) != 4) {
224 userError("Bad parameter 'viewboxlbrt'. Expected 4 coordinates.");
226 $this->setViewbox($aViewbox);
228 $aViewbox = $oParams->getStringList('viewbox');
230 if (count($aViewbox) != 4) {
231 userError("Bad parameter 'viewbox'. Expected 4 coordinates.");
233 $this->setViewBox($aViewbox);
235 $aRoute = $oParams->getStringList('route');
236 $fRouteWidth = $oParams->getFloat('routewidth');
237 if ($aRoute && $fRouteWidth) {
238 $this->aRoutePoints = $aRoute;
239 $this->aRouteWidth = $fRouteWidth;
244 $this->oPlaceLookup->loadParamArray($oParams, $sForceGeometryType);
245 $this->oPlaceLookup->setIncludeAddressDetails($oParams->getBool('addressdetails', false));
248 public function setQueryFromParams($oParams)
251 $sQuery = $oParams->getString('q');
253 $this->setStructuredQuery(
254 $oParams->getString('amenity'),
255 $oParams->getString('street'),
256 $oParams->getString('city'),
257 $oParams->getString('county'),
258 $oParams->getString('state'),
259 $oParams->getString('country'),
260 $oParams->getString('postalcode')
263 $this->setQuery($sQuery);
267 public function loadStructuredAddressElement($sValue, $sKey, $iNewMinAddressRank, $iNewMaxAddressRank, $aItemListValues)
269 $sValue = trim($sValue);
273 $this->aStructuredQuery[$sKey] = $sValue;
274 if ($this->iMinAddressRank == 0 && $this->iMaxAddressRank == 30) {
275 $this->iMinAddressRank = $iNewMinAddressRank;
276 $this->iMaxAddressRank = $iNewMaxAddressRank;
278 if ($aItemListValues) {
279 $this->aAddressRankList = array_merge($this->aAddressRankList, $aItemListValues);
284 public function setStructuredQuery($sAmenity = false, $sStreet = false, $sCity = false, $sCounty = false, $sState = false, $sCountry = false, $sPostalCode = false)
286 $this->sQuery = false;
289 $this->iMinAddressRank = 0;
290 $this->iMaxAddressRank = 30;
291 $this->aAddressRankList = array();
293 $this->aStructuredQuery = array();
294 $this->sAllowedTypesSQLList = false;
296 $this->loadStructuredAddressElement($sAmenity, 'amenity', 26, 30, false);
297 $this->loadStructuredAddressElement($sStreet, 'street', 26, 30, false);
298 $this->loadStructuredAddressElement($sCity, 'city', 14, 24, false);
299 $this->loadStructuredAddressElement($sCounty, 'county', 9, 13, false);
300 $this->loadStructuredAddressElement($sState, 'state', 8, 8, false);
301 $this->loadStructuredAddressElement($sPostalCode, 'postalcode', 5, 11, array(5, 11));
302 $this->loadStructuredAddressElement($sCountry, 'country', 4, 4, false);
304 if (!empty($this->aStructuredQuery)) {
305 $this->sQuery = join(', ', $this->aStructuredQuery);
306 if ($this->iMaxAddressRank < 30) {
307 $this->sAllowedTypesSQLList = '(\'place\',\'boundary\')';
312 public function fallbackStructuredQuery()
314 $aParams = $this->aStructuredQuery;
316 if (!$aParams || count($aParams) == 1) {
320 $aOrderToFallback = array('postalcode', 'street', 'city', 'county', 'state');
322 foreach ($aOrderToFallback as $sType) {
323 if (isset($aParams[$sType])) {
324 unset($aParams[$sType]);
325 $this->setStructuredQuery(@$aParams['amenity'], @$aParams['street'], @$aParams['city'], @$aParams['county'], @$aParams['state'], @$aParams['country'], @$aParams['postalcode']);
333 public function getGroupedSearches($aSearches, $aPhrases, $oValidTokens)
336 Calculate all searches using oValidTokens i.e.
337 'Wodsworth Road, Sheffield' =>
341 0 1 (wodsworth)(road)
344 Score how good the search is so they can be ordered
346 foreach ($aPhrases as $iPhrase => $oPhrase) {
347 $aNewPhraseSearches = array();
348 $sPhraseType = $oPhrase->getPhraseType();
350 foreach ($oPhrase->getWordSets() as $aWordset) {
351 $aWordsetSearches = $aSearches;
353 // Add all words from this wordset
354 foreach ($aWordset as $iToken => $sToken) {
355 //echo "<br><b>$sToken</b>";
356 $aNewWordsetSearches = array();
358 foreach ($aWordsetSearches as $oCurrentSearch) {
360 //var_dump($oCurrentSearch);
363 // Tokens with full name matches.
364 foreach ($oValidTokens->get(' '.$sToken) as $oSearchTerm) {
365 $aNewSearches = $oCurrentSearch->extendWithFullTerm(
368 $iToken == 0 && $iPhrase == 0,
370 $iToken + 1 == count($aWordset)
371 && $iPhrase + 1 == count($aPhrases)
374 foreach ($aNewSearches as $oSearch) {
375 if ($oSearch->getRank() < $this->iMaxRank) {
376 $aNewWordsetSearches[] = $oSearch;
380 // Look for partial matches.
381 // Note that there is no point in adding country terms here
382 // because country is omitted in the address.
383 if ($sPhraseType != 'country') {
384 // Allow searching for a word - but at extra cost
385 foreach ($oValidTokens->get($sToken) as $oSearchTerm) {
386 $aNewSearches = $oCurrentSearch->extendWithPartialTerm(
391 $oValidTokens->get(' '.$sToken)
394 foreach ($aNewSearches as $oSearch) {
395 if ($oSearch->getRank() < $this->iMaxRank) {
396 $aNewWordsetSearches[] = $oSearch;
403 usort($aNewWordsetSearches, array('Nominatim\SearchDescription', 'bySearchRank'));
404 $aWordsetSearches = array_slice($aNewWordsetSearches, 0, 50);
406 //var_Dump('<hr>',count($aWordsetSearches)); exit;
408 $aNewPhraseSearches = array_merge($aNewPhraseSearches, $aNewWordsetSearches);
409 usort($aNewPhraseSearches, array('Nominatim\SearchDescription', 'bySearchRank'));
411 $aSearchHash = array();
412 foreach ($aNewPhraseSearches as $iSearch => $aSearch) {
413 $sHash = serialize($aSearch);
414 if (isset($aSearchHash[$sHash])) {
415 unset($aNewPhraseSearches[$iSearch]);
417 $aSearchHash[$sHash] = 1;
421 $aNewPhraseSearches = array_slice($aNewPhraseSearches, 0, 50);
424 // Re-group the searches by their score, junk anything over 20 as just not worth trying
425 $aGroupedSearches = array();
426 foreach ($aNewPhraseSearches as $aSearch) {
427 $iRank = $aSearch->getRank();
428 if ($iRank < $this->iMaxRank) {
429 if (!isset($aGroupedSearches[$iRank])) {
430 $aGroupedSearches[$iRank] = array();
432 $aGroupedSearches[$iRank][] = $aSearch;
435 ksort($aGroupedSearches);
438 $aSearches = array();
439 foreach ($aGroupedSearches as $aNewSearches) {
440 $iSearchCount += count($aNewSearches);
441 $aSearches = array_merge($aSearches, $aNewSearches);
442 if ($iSearchCount > 50) {
448 // Revisit searches, drop bad searches and give penalty to unlikely combinations.
449 $aGroupedSearches = array();
450 foreach ($aSearches as $oSearch) {
451 if (!$oSearch->isValidSearch()) {
455 $iRank = $oSearch->getRank();
456 if (!isset($aGroupedSearches[$iRank])) {
457 $aGroupedSearches[$iRank] = array();
459 $aGroupedSearches[$iRank][] = $oSearch;
461 ksort($aGroupedSearches);
463 return $aGroupedSearches;
466 /* Perform the actual query lookup.
468 Returns an ordered list of results, each with the following fields:
469 osm_type: type of corresponding OSM object
473 P - postcode (internally computed)
474 osm_id: id of corresponding OSM object
475 class: general object class (corresponds to tag key of primary OSM tag)
476 type: subclass of object (corresponds to tag value of primary OSM tag)
477 admin_level: see https://wiki.openstreetmap.org/wiki/Admin_level
478 rank_search: rank in search hierarchy
479 (see also https://wiki.openstreetmap.org/wiki/Nominatim/Development_overview#Country_to_street_level)
480 rank_address: rank in address hierarchy (determines orer in address)
481 place_id: internal key (may differ between different instances)
482 country_code: ISO country code
483 langaddress: localized full address
484 placename: localized name of object
485 ref: content of ref tag (if available)
488 importance: importance of place based on Wikipedia link count
489 addressimportance: cumulated importance of address elements
490 extra_place: type of place (for admin boundaries, if there is a place tag)
491 aBoundingBox: bounding Box
492 label: short description of the object class/type (English only)
493 name: full name (currently the same as langaddress)
494 foundorder: secondary ordering for places with same importance
498 public function lookup()
500 Debug::newFunction('Geocode::lookup');
501 if (!$this->sQuery && !$this->aStructuredQuery) {
505 Debug::printDebugArray('Geocode', $this);
507 $oCtx = new SearchContext();
509 if ($this->aRoutePoints) {
510 $oCtx->setViewboxFromRoute(
514 $this->bBoundedSearch
516 } elseif ($this->aViewBox) {
517 $oCtx->setViewboxFromBox($this->aViewBox, $this->bBoundedSearch);
519 if ($this->aExcludePlaceIDs) {
520 $oCtx->setExcludeList($this->aExcludePlaceIDs);
522 if ($this->aCountryCodes) {
523 $oCtx->setCountryList($this->aCountryCodes);
525 $this->oTokenizer->setCountryRestriction($this->aCountryCodes);
527 Debug::newSection('Query Preprocessing');
529 $sQuery = $this->sQuery;
530 if (!preg_match('//u', $sQuery)) {
531 userError('Query string is not UTF-8 encoded.');
534 // Conflicts between US state abreviations and various words for 'the' in different languages
535 if (isset($this->aLangPrefOrder['name:en'])) {
536 $sQuery = preg_replace('/(^|,)\s*il\s*(,|$)/i', '\1illinois\2', $sQuery);
537 $sQuery = preg_replace('/(^|,)\s*al\s*(,|$)/i', '\1alabama\2', $sQuery);
538 $sQuery = preg_replace('/(^|,)\s*la\s*(,|$)/i', '\1louisiana\2', $sQuery);
541 // Do we have anything that looks like a lat/lon pair?
542 $sQuery = $oCtx->setNearPointFromQuery($sQuery);
544 if ($sQuery || $this->aStructuredQuery) {
545 // Start with a single blank search
546 $aSearches = array(new SearchDescription($oCtx));
549 $sQuery = $aSearches[0]->extractKeyValuePairs($sQuery);
555 '/\\[([\\w ]*)\\]/u',
560 if (!empty($aSpecialTermsRaw)) {
561 Debug::printVar('Special terms', $aSpecialTermsRaw);
564 foreach ($aSpecialTermsRaw as $aSpecialTerm) {
565 $sQuery = str_replace($aSpecialTerm[0], ' ', $sQuery);
566 if (!$sSpecialTerm) {
567 $sSpecialTerm = $aSpecialTerm[1];
571 if (!$sSpecialTerm && $this->aStructuredQuery
572 && isset($this->aStructuredQuery['amenity'])) {
573 $sSpecialTerm = $this->aStructuredQuery['amenity'];
574 unset($this->aStructuredQuery['amenity']);
577 if ($sSpecialTerm && !$aSearches[0]->hasOperator()) {
578 $aTokens = $this->oTokenizer->tokensForSpecialTerm($sSpecialTerm);
580 if (!empty($aTokens)) {
581 $aNewSearches = array();
582 foreach ($aSearches as $oSearch) {
583 foreach ($aTokens as $oToken) {
584 $oNewSearch = clone $oSearch;
585 $oNewSearch->setPoiSearch(
590 $aNewSearches[] = $oNewSearch;
593 $aSearches = $aNewSearches;
597 // Split query into phrases
598 // Commas are used to reduce the search space by indicating where phrases split
600 if ($this->aStructuredQuery) {
601 foreach ($this->aStructuredQuery as $iPhrase => $sPhrase) {
602 $aPhrases[] = new Phrase($sPhrase, $iPhrase);
605 foreach (explode(',', $sQuery) as $sPhrase) {
606 $aPhrases[] = new Phrase($sPhrase, '');
610 Debug::printDebugArray('Search context', $oCtx);
611 Debug::printDebugArray('Base search', empty($aSearches) ? null : $aSearches[0]);
613 Debug::newSection('Tokenization');
614 $oValidTokens = $this->oTokenizer->extractTokensFromPhrases($aPhrases);
616 if ($oValidTokens->count() > 0) {
617 $oCtx->setFullNameWords($oValidTokens->getFullWordIDs());
619 $aPhrases = array_filter($aPhrases, function ($oPhrase) {
620 return $oPhrase->getWordSets() !== null;
623 // Any words that have failed completely?
626 Debug::printGroupTable('Valid Tokens', $oValidTokens->debugInfo());
627 Debug::printDebugTable('Phrases', $aPhrases);
629 Debug::newSection('Search candidates');
631 $aGroupedSearches = $this->getGroupedSearches($aSearches, $aPhrases, $oValidTokens);
633 if (!$this->aStructuredQuery) {
634 // Reverse phrase array and also reverse the order of the wordsets in
635 // the first and final phrase. Don't bother about phrases in the middle
636 // because order in the address doesn't matter.
637 $aPhrases = array_reverse($aPhrases);
638 $aPhrases[0]->invertWordSets();
639 if (count($aPhrases) > 1) {
640 $aPhrases[count($aPhrases)-1]->invertWordSets();
642 $aReverseGroupedSearches = $this->getGroupedSearches($aSearches, $aPhrases, $oValidTokens);
644 foreach ($aGroupedSearches as $aSearches) {
645 foreach ($aSearches as $aSearch) {
646 if (!isset($aReverseGroupedSearches[$aSearch->getRank()])) {
647 $aReverseGroupedSearches[$aSearch->getRank()] = array();
649 $aReverseGroupedSearches[$aSearch->getRank()][] = $aSearch;
653 $aGroupedSearches = $aReverseGroupedSearches;
654 ksort($aGroupedSearches);
657 // Re-group the searches by their score, junk anything over 20 as just not worth trying
658 $aGroupedSearches = array();
659 foreach ($aSearches as $aSearch) {
660 if ($aSearch->getRank() < $this->iMaxRank) {
661 if (!isset($aGroupedSearches[$aSearch->getRank()])) {
662 $aGroupedSearches[$aSearch->getRank()] = array();
664 $aGroupedSearches[$aSearch->getRank()][] = $aSearch;
667 ksort($aGroupedSearches);
670 // Filter out duplicate searches
671 $aSearchHash = array();
672 foreach ($aGroupedSearches as $iGroup => $aSearches) {
673 foreach ($aSearches as $iSearch => $aSearch) {
674 $sHash = serialize($aSearch);
675 if (isset($aSearchHash[$sHash])) {
676 unset($aGroupedSearches[$iGroup][$iSearch]);
677 if (empty($aGroupedSearches[$iGroup])) {
678 unset($aGroupedSearches[$iGroup]);
681 $aSearchHash[$sHash] = 1;
686 Debug::printGroupedSearch(
688 $oValidTokens->debugTokenByWordIdList()
691 // Start the search process
694 $aNextResults = array();
695 foreach ($aGroupedSearches as $iGroupedRank => $aSearches) {
697 $aResults = $aNextResults;
698 foreach ($aSearches as $oSearch) {
701 Debug::newSection("Search Loop, group $iGroupLoop, loop $iQueryLoop");
702 Debug::printGroupedSearch(
703 array($iGroupedRank => array($oSearch)),
704 $oValidTokens->debugTokenByWordIdList()
707 $aNewResults = $oSearch->query(
709 $this->iMinAddressRank,
710 $this->iMaxAddressRank,
714 // The same result may appear in different rounds, only
715 // use the one with minimal rank.
716 foreach ($aNewResults as $iPlace => $oRes) {
717 if (!isset($aResults[$iPlace])
718 || $aResults[$iPlace]->iResultRank > $oRes->iResultRank) {
719 $aResults[$iPlace] = $oRes;
723 if ($iQueryLoop > 20) {
728 if (!empty($aResults)) {
729 $aSplitResults = Result::splitResults($aResults);
730 Debug::printVar('Split results', $aSplitResults);
732 && reset($aSplitResults['head'])->iResultRank > 0
733 && $iGroupedRank !== array_key_last($aGroupedSearches)) {
734 // Haven't found an exact match for the query yet.
735 // Therefore add result from the next group level.
736 $aNextResults = $aSplitResults['head'];
737 foreach ($aNextResults as $oRes) {
738 $oRes->iResultRank--;
740 foreach ($aSplitResults['tail'] as $oRes) {
741 $oRes->iResultRank--;
742 $aNextResults[$oRes->iId] = $oRes;
746 $aResults = $aSplitResults['head'];
750 if (!empty($aResults) && ($this->iMinAddressRank != 0 || $this->iMaxAddressRank != 30)) {
751 // Need to verify passes rank limits before dropping out of the loop (yuk!)
752 // reduces the number of place ids, like a filter
753 // rank_address is 30 for interpolated housenumbers
754 $aFilterSql = array();
755 $sPlaceIds = Result::joinIdsByTable($aResults, Result::TABLE_PLACEX);
757 $sSQL = 'SELECT place_id FROM placex ';
758 $sSQL .= 'WHERE place_id in ('.$sPlaceIds.') ';
760 $sSQL .= " placex.rank_address between $this->iMinAddressRank and $this->iMaxAddressRank ";
761 $sSQL .= " OR placex.rank_search between $this->iMinAddressRank and $this->iMaxAddressRank ";
762 if ($this->aAddressRankList) {
763 $sSQL .= ' OR placex.rank_address in ('.join(',', $this->aAddressRankList).')';
766 $aFilterSql[] = $sSQL;
768 $sPlaceIds = Result::joinIdsByTable($aResults, Result::TABLE_POSTCODE);
770 $sSQL = ' SELECT place_id FROM location_postcode lp ';
771 $sSQL .= 'WHERE place_id in ('.$sPlaceIds.') ';
772 $sSQL .= " AND (lp.rank_address between $this->iMinAddressRank and $this->iMaxAddressRank ";
773 if ($this->aAddressRankList) {
774 $sSQL .= ' OR lp.rank_address in ('.join(',', $this->aAddressRankList).')';
777 $aFilterSql[] = $sSQL;
780 $aFilteredIDs = array();
782 $sSQL = join(' UNION ', $aFilterSql);
783 Debug::printSQL($sSQL);
784 $aFilteredIDs = $this->oDB->getCol($sSQL);
788 foreach ($aResults as $oResult) {
789 if (($this->iMaxAddressRank == 30 &&
790 ($oResult->iTable == Result::TABLE_OSMLINE
791 || $oResult->iTable == Result::TABLE_TIGER))
792 || in_array($oResult->iId, $aFilteredIDs)
794 $tempIDs[$oResult->iId] = $oResult;
797 $aResults = $tempIDs;
800 if (!empty($aResults) || $iGroupLoop > 4 || $iQueryLoop > 30) {
805 // Just interpret as a reverse geocode
806 $oReverse = new ReverseGeocode($this->oDB);
807 $oReverse->setZoom(18);
809 $oLookup = $oReverse->lookupPoint($oCtx->sqlNear, false);
811 Debug::printVar('Reverse search', $oLookup);
814 $aResults = array($oLookup->iId => $oLookup);
819 if (empty($aResults)) {
820 if ($this->bFallback && $this->fallbackStructuredQuery()) {
821 return $this->lookup();
827 if ($this->aAddressRankList) {
828 $this->oPlaceLookup->setAddressRankList($this->aAddressRankList);
830 $this->oPlaceLookup->setAllowedTypesSQLList($this->sAllowedTypesSQLList);
831 $this->oPlaceLookup->setLanguagePreference($this->aLangPrefOrder);
832 if ($oCtx->hasNearPoint()) {
833 $this->oPlaceLookup->setAnchorSql($oCtx->sqlNear);
836 $aSearchResults = $this->oPlaceLookup->lookup($aResults);
838 $aRecheckWords = preg_split('/\b[\s,\\-]*/u', $sQuery);
839 foreach ($aRecheckWords as $i => $sWord) {
840 if (!preg_match('/[\pL\pN]/', $sWord)) {
841 unset($aRecheckWords[$i]);
845 Debug::printVar('Recheck words', $aRecheckWords);
847 foreach ($aSearchResults as $iIdx => $aResult) {
848 $fRadius = ClassTypes\getDefRadius($aResult);
850 $aOutlineResult = $this->oPlaceLookup->getOutlines($aResult['place_id'], $aResult['lon'], $aResult['lat'], $fRadius);
851 if ($aOutlineResult) {
852 $aResult = array_merge($aResult, $aOutlineResult);
855 // Is there an icon set for this type of result?
856 $sIcon = ClassTypes\getIconFile($aResult);
858 $aResult['icon'] = $sIcon;
861 $sLabel = ClassTypes\getLabel($aResult);
862 if (isset($sLabel)) {
863 $aResult['label'] = $sLabel;
865 $aResult['name'] = $aResult['langaddress'];
867 if ($oCtx->hasNearPoint()) {
868 $aResult['importance'] = 0.001;
869 $aResult['foundorder'] = $aResult['addressimportance'];
871 $aResult['importance'] = max(0.001, $aResult['importance']);
872 $aResult['importance'] *= $this->viewboxImportanceFactor(
877 // secondary ordering (for results with same importance (the smaller the better):
878 // - approximate importance of address parts
879 if (isset($aResult['addressimportance']) && $aResult['addressimportance']) {
880 $aResult['foundorder'] = -$aResult['addressimportance']/10;
882 $aResult['foundorder'] = -$aResult['importance'];
884 // - number of exact matches from the query
885 $aResult['foundorder'] -= $aResults[$aResult['place_id']]->iExactMatches;
886 // - importance of the class/type
887 $iClassImportance = ClassTypes\getImportance($aResult);
888 if (isset($iClassImportance)) {
889 $aResult['foundorder'] += 0.0001 * $iClassImportance;
891 $aResult['foundorder'] += 0.01;
894 $aResult['foundorder'] -= 0.00001 * (30 - $aResult['rank_search']);
896 // Adjust importance for the number of exact string matches in the result
898 $sAddress = $aResult['langaddress'];
899 foreach ($aRecheckWords as $i => $sWord) {
900 if (stripos($sAddress, $sWord)!==false) {
902 if (preg_match('/(^|,)\s*'.preg_quote($sWord, '/').'\s*(,|$)/', $sAddress)) {
908 // 0.1 is a completely arbitrary number but something in the range 0.1 to 0.5 would seem right
909 $aResult['importance'] = $aResult['importance'] + ($iCountWords*0.1);
911 $aSearchResults[$iIdx] = $aResult;
913 uasort($aSearchResults, 'byImportance');
914 Debug::printVar('Pre-filter results', $aSearchResults);
916 $aOSMIDDone = array();
917 $aClassTypeNameDone = array();
918 $aToFilter = $aSearchResults;
919 $aSearchResults = array();
921 foreach ($aToFilter as $aResult) {
922 $this->aExcludePlaceIDs[$aResult['place_id']] = $aResult['place_id'];
923 if (!$this->oPlaceLookup->doDeDupe() || (!isset($aOSMIDDone[$aResult['osm_type'].$aResult['osm_id']])
924 && !isset($aClassTypeNameDone[$aResult['osm_type'].$aResult['class'].$aResult['type'].$aResult['name'].$aResult['admin_level']]))
926 $aOSMIDDone[$aResult['osm_type'].$aResult['osm_id']] = true;
927 $aClassTypeNameDone[$aResult['osm_type'].$aResult['class'].$aResult['type'].$aResult['name'].$aResult['admin_level']] = true;
928 $aSearchResults[] = $aResult;
931 // Absolute limit on number of results
932 if (count($aSearchResults) >= $this->iFinalLimit) {
937 Debug::printVar('Post-filter results', $aSearchResults);
938 return $aSearchResults;
941 public function debugInfo()
944 'Query' => $this->sQuery,
945 'Structured query' => $this->aStructuredQuery,
946 'Name keys' => Debug::fmtArrayVals($this->aLangPrefOrder),
947 'Excluded place IDs' => Debug::fmtArrayVals($this->aExcludePlaceIDs),
948 'Limit (for searches)' => $this->iLimit,
949 'Limit (for results)'=> $this->iFinalLimit,
950 'Country codes' => Debug::fmtArrayVals($this->aCountryCodes),
951 'Bounded search' => $this->bBoundedSearch,
952 'Viewbox' => Debug::fmtArrayVals($this->aViewBox),
953 'Route points' => Debug::fmtArrayVals($this->aRoutePoints),
954 'Route width' => $this->aRouteWidth,
955 'Max rank' => $this->iMaxRank,
956 'Min address rank' => $this->iMinAddressRank,
957 'Max address rank' => $this->iMaxAddressRank,
958 'Address rank list' => Debug::fmtArrayVals($this->aAddressRankList)