2 require_once(dirname(dirname(__FILE__)).'/lib/init-website.php');
3 require_once(CONST_BasePath.'/lib/log.php');
5 ini_set('memory_limit', '200M');
9 $fLat = CONST_Default_Lat;
10 $fLon = CONST_Default_Lon;
11 $iZoom = CONST_Default_Zoom;
12 $bBoundingBoxSearch = isset($_GET['bounded'])?(bool)$_GET['bounded']:false;
13 $sOutputFormat = 'html';
14 $aSearchResults = array();
15 $aExcludePlaceIDs = array();
16 $sCountryCodesSQL = false;
17 $sSuggestion = $sSuggestionURL = false;
18 $bDeDupe = isset($_GET['dedupe'])?(bool)$_GET['dedupe']:true;
19 $bReverseInPlan = false;
20 $iLimit = isset($_GET['limit'])?(int)$_GET['limit']:10;
21 $iOffset = isset($_GET['offset'])?(int)$_GET['offset']:0;
23 if ($iLimit > 100) $iLimit = 100;
25 $iMaxAddressRank = 30;
28 if (isset($_GET['format']) && ($_GET['format'] == 'html' || $_GET['format'] == 'xml' || $_GET['format'] == 'json' || $_GET['format'] == 'jsonv2'))
30 $sOutputFormat = $_GET['format'];
33 // Show / use polygons
34 $bShowPolygons = isset($_GET['polygon']) && $_GET['polygon'];
36 // Show address breakdown
37 $bShowAddressDetails = isset($_GET['addressdetails']) && $_GET['addressdetails'];
40 $aLangPrefOrder = getPreferredLanguages();
41 if (isset($aLangPrefOrder['name:de'])) $bReverseInPlan = true;
42 if (isset($aLangPrefOrder['name:ru'])) $bReverseInPlan = true;
43 if (isset($aLangPrefOrder['name:ja'])) $bReverseInPlan = true;
44 if (isset($aLangPrefOrder['name:pl'])) $bReverseInPlan = true;
46 $sLanguagePrefArraySQL = "ARRAY[".join(',',array_map("getDBQuoted",$aLangPrefOrder))."]";
48 if (isset($_GET['exclude_place_ids']) && $_GET['exclude_place_ids'])
50 foreach(explode(',',$_GET['exclude_place_ids']) as $iExcludedPlaceID)
52 $iExcludedPlaceID = (int)$iExcludedPlaceID;
53 if ($iExcludedPlaceID) $aExcludePlaceIDs[$iExcludedPlaceID] = $iExcludedPlaceID;
57 // Only certain ranks of feature
58 if (isset($_GET['featureType']) && !isset($_GET['featuretype'])) $_GET['featuretype'] = $_GET['featureType'];
60 if (isset($_GET['featuretype']))
62 switch($_GET['featuretype'])
65 $iMinAddressRank = $iMaxAddressRank = 4;
68 $iMinAddressRank = $iMaxAddressRank = 8;
71 $iMinAddressRank = 14;
72 $iMaxAddressRank = 16;
76 $iMaxAddressRank = 20;
81 if (isset($_GET['countrycodes']))
83 $aCountryCodes = array();
84 foreach(explode(',',$_GET['countrycodes']) as $sCountryCode)
86 if (preg_match('/^[a-zA-Z][a-zA-Z]$/', $sCountryCode))
88 $aCountryCodes[] = "'".strtolower($sCountryCode)."'";
91 $sCountryCodesSQL = join(',', $aCountryCodes);
95 $sQuery = (isset($_GET['q'])?trim($_GET['q']):'');
96 if (!$sQuery && isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'][0] == '/')
98 $sQuery = substr($_SERVER['PATH_INFO'], 1);
100 // reverse order of '/' separated string
101 $aPhrases = explode('/', $sQuery);
102 $aPhrases = array_reverse($aPhrases);
103 $sQuery = join(', ',$aPhrases);
107 $hLog = logStart($oDB, 'search', $sQuery, $aLangPrefOrder);
109 // Hack to make it handle "new york, ny" (and variants) correctly
110 $sQuery = str_ireplace(array('New York, ny','new york, new york', 'New York ny','new york new york'), 'new york city, ny', $sQuery);
111 if (isset($aLangPrefOrder['name:en']))
113 $sQuery = preg_replace('/,\s*il\s*(,|$)/',', illinois\1', $sQuery);
114 $sQuery = preg_replace('/,\s*al\s*(,|$)/',', alabama\1', $sQuery);
115 $sQuery = preg_replace('/,\s*la\s*(,|$)/',', louisiana\1', $sQuery);
118 // If we have a view box create the SQL
119 // Small is the actual view box, Large is double (on each axis) that
120 $sViewboxCentreSQL = $sViewboxSmallSQL = $sViewboxLargeSQL = false;
121 if (isset($_GET['viewboxlbrt']) && $_GET['viewboxlbrt'])
123 $aCoOrdinatesLBRT = explode(',',$_GET['viewboxlbrt']);
124 $_GET['viewbox'] = $aCoOrdinatesLBRT[0].','.$aCoOrdinatesLBRT[3].','.$aCoOrdinatesLBRT[2].','.$aCoOrdinatesLBRT[1];
126 if (isset($_GET['viewbox']) && $_GET['viewbox'])
128 $aCoOrdinates = explode(',',$_GET['viewbox']);
129 $sViewboxSmallSQL = "ST_SetSRID(ST_MakeBox2D(ST_Point(".(float)$aCoOrdinates[0].",".(float)$aCoOrdinates[1]."),ST_Point(".(float)$aCoOrdinates[2].",".(float)$aCoOrdinates[3].")),4326)";
130 $fHeight = $aCoOrdinates[0]-$aCoOrdinates[2];
131 $fWidth = $aCoOrdinates[1]-$aCoOrdinates[3];
132 $aCoOrdinates[0] += $fHeight;
133 $aCoOrdinates[2] -= $fHeight;
134 $aCoOrdinates[1] += $fWidth;
135 $aCoOrdinates[3] -= $fWidth;
136 $sViewboxLargeSQL = "ST_SetSRID(ST_MakeBox2D(ST_Point(".(float)$aCoOrdinates[0].",".(float)$aCoOrdinates[1]."),ST_Point(".(float)$aCoOrdinates[2].",".(float)$aCoOrdinates[3].")),4326)";
138 $bBoundingBoxSearch = false;
140 if (isset($_GET['route']) && $_GET['route'] && isset($_GET['routewidth']) && $_GET['routewidth'])
142 $aPoints = explode(',',$_GET['route']);
143 if (sizeof($aPoints) % 2 != 0)
145 echo "Uneven number of points";
148 $sViewboxCentreSQL = "ST_SetSRID('LINESTRING(";
150 foreach($aPoints as $i => $fPoint)
154 if ($i != 1) $sViewboxCentreSQL .= ",";
155 $sViewboxCentreSQL .= ((float)$fPoint).' '.$fPrevCoord;
159 $fPrevCoord = (float)$fPoint;
162 $sViewboxCentreSQL .= ")'::geometry,4326)";
164 $sSQL = "select st_buffer(".$sViewboxCentreSQL.",".(float)($_GET['routewidth']/69).")";
165 $sViewboxSmallSQL = $oDB->getOne($sSQL);
166 if (PEAR::isError($sViewboxSmallSQL))
168 failInternalError("Could not get small viewbox.", $sSQL, $sViewboxSmallSQL);
170 $sViewboxSmallSQL = "'".$sViewboxSmallSQL."'::geometry";
172 $sSQL = "select st_buffer(".$sViewboxCentreSQL.",".(float)($_GET['routewidth']/30).")";
173 $sViewboxLargeSQL = $oDB->getOne($sSQL);
174 if (PEAR::isError($sViewboxLargeSQL))
176 failInternalError("Could not get large viewbox.", $sSQL, $sViewboxLargeSQL);
178 $sViewboxLargeSQL = "'".$sViewboxLargeSQL."'::geometry";
181 // Do we have anything that looks like a lat/lon pair?
182 if (preg_match('/\\b([NS])[ ]+([0-9]+[0-9.]*)[ ]+([0-9.]+)?[, ]+([EW])[ ]+([0-9]+)[ ]+([0-9]+[0-9.]*)?\\b/', $sQuery, $aData))
184 $fQueryLat = ($aData[1]=='N'?1:-1) * ($aData[2] + $aData[3]/60);
185 $fQueryLon = ($aData[4]=='E'?1:-1) * ($aData[5] + $aData[6]/60);
186 if ($fQueryLat <= 90.1 && $fQueryLat >= -90.1 && $fQueryLon <= 180.1 && $fQueryLon >= -180.1)
188 $_GET['nearlat'] = $fQueryLat;
189 $_GET['nearlon'] = $fQueryLon;
190 $sQuery = trim(str_replace($aData[0], ' ', $sQuery));
193 elseif (preg_match('/\\b([0-9]+)[ ]+([0-9]+[0-9.]*)?[ ]+([NS])[, ]+([0-9]+)[ ]+([0-9]+[0-9.]*)?[ ]+([EW])\\b/', $sQuery, $aData))
195 $fQueryLat = ($aData[3]=='N'?1:-1) * ($aData[1] + $aData[2]/60);
196 $fQueryLon = ($aData[6]=='E'?1:-1) * ($aData[4] + $aData[5]/60);
197 if ($fQueryLat <= 90.1 && $fQueryLat >= -90.1 && $fQueryLon <= 180.1 && $fQueryLon >= -180.1)
199 $_GET['nearlat'] = $fQueryLat;
200 $_GET['nearlon'] = $fQueryLon;
201 $sQuery = trim(str_replace($aData[0], ' ', $sQuery));
204 elseif (preg_match('/(\\[|^|\\b)(-?[0-9]+[0-9.]*)[, ]+(-?[0-9]+[0-9.]*)(\\]|$|\\b)/', $sQuery, $aData))
206 $fQueryLat = $aData[2];
207 $fQueryLon = $aData[3];
208 if ($fQueryLat <= 90.1 && $fQueryLat >= -90.1 && $fQueryLon <= 180.1 && $fQueryLon >= -180.1)
210 $_GET['nearlat'] = $fQueryLat;
211 $_GET['nearlon'] = $fQueryLon;
212 $sQuery = trim(str_replace($aData[0], ' ', $sQuery));
218 // Start with a blank search
220 array('iSearchRank' => 0, 'iNamePhrase' => -1, 'sCountryCode' => false, 'aName'=>array(), 'aAddress'=>array(),
221 'sOperator'=>'', 'aFeatureName' => array(), 'sClass'=>'', 'sType'=>'', 'sHouseNumber'=>'', 'fLat'=>'', 'fLon'=>'', 'fRadius'=>'')
224 $sNearPointSQL = false;
225 if (isset($_GET['nearlat']) && isset($_GET['nearlon']))
227 $sNearPointSQL = "ST_SetSRID(ST_Point(".(float)$_GET['nearlon'].",".$_GET['nearlat']."),4326)";
228 $aSearches[0]['fLat'] = (float)$_GET['nearlat'];
229 $aSearches[0]['fLon'] = (float)$_GET['nearlon'];
230 $aSearches[0]['fRadius'] = 0.1;
233 $bSpecialTerms = false;
234 preg_match_all('/\\[(.*)=(.*)\\]/', $sQuery, $aSpecialTermsRaw, PREG_SET_ORDER);
235 $aSpecialTerms = array();
236 foreach($aSpecialTermsRaw as $aSpecialTerm)
238 $sQuery = str_replace($aSpecialTerm[0], ' ', $sQuery);
239 $aSpecialTerms[strtolower($aSpecialTerm[1])] = $aSpecialTerm[2];
242 preg_match_all('/\\[([a-zA-Z]*)\\]/', $sQuery, $aSpecialTermsRaw, PREG_SET_ORDER);
243 $aSpecialTerms = array();
244 foreach($aSpecialTermsRaw as $aSpecialTerm)
246 $sQuery = str_replace($aSpecialTerm[0], ' ', $sQuery);
247 $sToken = $oDB->getOne("select make_standard_name('".$aSpecialTerm[1]."') as string");
248 $sSQL = 'select * from (select word_id,word_token, word, class, type, location, country_code, operator';
249 $sSQL .= ' from word where word_token in (\' '.$sToken.'\')) as x where (class is not null and class not in (\'place\')) or country_code is not null';
250 if (CONST_Debug) var_Dump($sSQL);
251 $aSearchWords = $oDB->getAll($sSQL);
252 $aNewSearches = array();
253 foreach($aSearches as $aSearch)
255 foreach($aSearchWords as $aSearchTerm)
257 $aNewSearch = $aSearch;
258 if ($aSearchTerm['country_code'])
260 $aNewSearch['sCountryCode'] = strtolower($aSearchTerm['country_code']);
261 $aNewSearches[] = $aNewSearch;
262 $bSpecialTerms = true;
264 if ($aSearchTerm['class'])
266 $aNewSearch['sClass'] = $aSearchTerm['class'];
267 $aNewSearch['sType'] = $aSearchTerm['type'];
268 $aNewSearches[] = $aNewSearch;
269 $bSpecialTerms = true;
273 $aSearches = $aNewSearches;
276 // Split query into phrases
277 // Commas are used to reduce the search space by indicating where phrases split
278 $aPhrases = explode(',',$sQuery);
280 // Convert each phrase to standard form
281 // Create a list of standard words
282 // Get all 'sets' of words
283 // Generate a complete list of all
285 foreach($aPhrases as $iPhrase => $sPhrase)
287 $aPhrase = $oDB->getRow("select make_standard_name('".pg_escape_string($sPhrase)."') as string");
288 if (PEAR::isError($aPhrase))
290 echo "Illegal query string (not an UTF-8 string): ".$sPhrase;
291 if (CONST_Debug) var_dump($aPhrase);
294 if (trim($aPhrase['string']))
296 $aPhrases[$iPhrase] = $aPhrase;
297 $aPhrases[$iPhrase]['words'] = explode(' ',$aPhrases[$iPhrase]['string']);
298 $aPhrases[$iPhrase]['wordsets'] = getWordSets($aPhrases[$iPhrase]['words']);
299 $aTokens = array_merge($aTokens, getTokensFromSets($aPhrases[$iPhrase]['wordsets']));
303 unset($aPhrases[$iPhrase]);
307 // reindex phrases - we make assumptions later on
308 $aPhrases = array_values($aPhrases);
310 if (sizeof($aTokens))
313 // Check which tokens we have, get the ID numbers
314 $sSQL = 'select word_id,word_token, word, class, type, location, country_code, operator';
315 $sSQL .= ' from word where word_token in ('.join(',',array_map("getDBQuoted",$aTokens)).')';
316 $sSQL .= ' and search_name_count < '.CONST_Max_Word_Frequency;
317 // $sSQL .= ' group by word_token, word, class, type, location, country_code';
319 if (CONST_Debug) var_Dump($sSQL);
321 $aValidTokens = array();
322 if (sizeof($aTokens))
323 $aDatabaseWords = $oDB->getAll($sSQL);
325 $aDatabaseWords = array();
326 if (PEAR::IsError($aDatabaseWords))
328 failInternalError("Could not get word tokens.", $sSQL, $aDatabaseWords);
330 $aPossibleMainWordIDs = array();
331 foreach($aDatabaseWords as $aToken)
333 if (isset($aValidTokens[$aToken['word_token']]))
335 $aValidTokens[$aToken['word_token']][] = $aToken;
339 $aValidTokens[$aToken['word_token']] = array($aToken);
341 if ($aToken['word_token'][0]==' ' && !$aToken['class'] && !$aToken['country_code']) $aPossibleMainWordIDs[$aToken['word_id']] = 1;
343 if (CONST_Debug) var_Dump($aPhrases, $aValidTokens);
345 $aSuggestion = array();
346 $bSuggestion = false;
347 if (CONST_Suggestions_Enabled)
349 foreach($aPhrases as $iPhrase => $aPhrase)
351 if (!isset($aValidTokens[' '.$aPhrase['wordsets'][0][0]]))
353 $sQuotedPhrase = getDBQuoted(' '.$aPhrase['wordsets'][0][0]);
354 $aSuggestionWords = getWordSuggestions($oDB, $aPhrase['wordsets'][0][0]);
355 $aRow = $aSuggestionWords[0];
356 if ($aRow && $aRow['word'])
358 $aSuggestion[] = $aRow['word'];
363 $aSuggestion[] = $aPhrase['string'];
368 $aSuggestion[] = $aPhrase['string'];
372 if ($bSuggestion) $sSuggestion = join(', ',$aSuggestion);
374 // Try and calculate GB postcodes we might be missing
375 foreach($aTokens as $sToken)
377 // Source of gb postcodes is now definitive - always use
378 if (preg_match('/^([A-Z][A-Z]?[0-9][0-9A-Z]? ?[0-9])([A-Z][A-Z])$/', strtoupper(trim($sToken)), $aData))
380 if (substr($aData[1],-2,1) != ' ')
382 $aData[0] = substr($aData[0],0,strlen($aData[1]-1)).' '.substr($aData[0],strlen($aData[1]-1));
383 $aData[1] = substr($aData[1],0,-1).' '.substr($aData[1],-1,1);
385 $aGBPostcodeLocation = gbPostcodeCalculate($aData[0], $aData[1], $aData[2], $oDB);
386 if ($aGBPostcodeLocation)
388 $aValidTokens[$sToken] = $aGBPostcodeLocation;
393 foreach($aTokens as $sToken)
395 // Unknown single word token with a number - assume it is a house number
396 if (!isset($aValidTokens[' '.$sToken]) && strpos($sToken,' ') === false && preg_match('/[0-9]/', $sToken))
398 $aValidTokens[' '.$sToken] = array(array('class'=>'place','type'=>'house'));
402 // Any words that have failed completely?
405 // Start the search process
406 $aResultPlaceIDs = array();
409 Calculate all searches using aValidTokens i.e.
411 'Wodsworth Road, Sheffield' =>
415 0 1 (wodsworth)(road)
418 Score how good the search is so they can be ordered
420 foreach($aPhrases as $iPhrase => $sPhrase)
422 $aNewPhraseSearches = array();
424 foreach($aPhrases[$iPhrase]['wordsets'] as $iWordset => $aWordset)
426 $aWordsetSearches = $aSearches;
428 // Add all words from this wordset
429 foreach($aWordset as $sToken)
431 //echo "<br><b>$sToken</b>";
432 $aNewWordsetSearches = array();
434 foreach($aWordsetSearches as $aCurrentSearch)
437 //var_dump($aCurrentSearch);
440 // If the token is valid
441 if (isset($aValidTokens[' '.$sToken]))
443 foreach($aValidTokens[' '.$sToken] as $aSearchTerm)
445 $aSearch = $aCurrentSearch;
446 $aSearch['iSearchRank']++;
447 if ($aSearchTerm['country_code'] !== null && $aSearchTerm['country_code'] != '0')
449 if ($aSearch['sCountryCode'] === false)
451 $aSearch['sCountryCode'] = strtolower($aSearchTerm['country_code']);
452 // Country is almost always at the end of the string - increase score for finding it anywhere else (optimisation)
453 if ($iWordset+1 != sizeof($aPhrases[$iPhrase]['wordsets']) || $iPhrase+1 != sizeof($aPhrases)) $aSearch['iSearchRank'] += 5;
454 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
457 elseif (isset($aSearchTerm['lat']) && $aSearchTerm['lat'] !== '' && $aSearchTerm['lat'] !== null)
459 if ($aSearch['fLat'] === '')
461 $aSearch['fLat'] = $aSearchTerm['lat'];
462 $aSearch['fLon'] = $aSearchTerm['lon'];
463 $aSearch['fRadius'] = $aSearchTerm['radius'];
464 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
467 elseif ($aSearchTerm['class'] == 'place' && $aSearchTerm['type'] == 'house')
469 if ($aSearch['sHouseNumber'] === '')
471 $aSearch['sHouseNumber'] = $sToken;
472 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
474 // Fall back to not searching for this item (better than nothing)
475 $aSearch = $aCurrentSearch;
476 $aSearch['iSearchRank'] += 1;
477 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
481 elseif ($aSearchTerm['class'] !== '' && $aSearchTerm['class'] !== null)
483 if ($aSearch['sClass'] === '')
485 $aSearch['sOperator'] = $aSearchTerm['operator'];
486 $aSearch['sClass'] = $aSearchTerm['class'];
487 $aSearch['sType'] = $aSearchTerm['type'];
488 if (sizeof($aSearch['aName'])) $aSearch['sOperator'] = 'name';
489 else $aSearch['sOperator'] = 'near'; // near = in for the moment
491 // Do we have a shortcut id?
492 if ($aSearch['sOperator'] == 'name')
494 $sSQL = "select get_tagpair('".$aSearch['sClass']."', '".$aSearch['sType']."')";
495 if ($iAmenityID = $oDB->getOne($sSQL))
497 $aValidTokens[$aSearch['sClass'].':'.$aSearch['sType']] = array('word_id' => $iAmenityID);
498 $aSearch['aName'][$iAmenityID] = $iAmenityID;
499 $aSearch['sClass'] = '';
500 $aSearch['sType'] = '';
503 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
506 elseif (isset($aSearchTerm['word_id']) && $aSearchTerm['word_id'])
508 if (sizeof($aSearch['aName']))
510 if (!isset($aValidTokens[$sToken]) || strlen($sToken) < 4 || strpos($sToken, ' ') !== false)
512 $aSearch['aAddress'][$aSearchTerm['word_id']] = $aSearchTerm['word_id'];
516 $aSearch['iSearchRank'] += 1000; // skip;
521 $aSearch['aName'][$aSearchTerm['word_id']] = $aSearchTerm['word_id'];
522 // $aSearch['iNamePhrase'] = $iPhrase;
524 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
528 if (isset($aValidTokens[$sToken]))
530 // Allow searching for a word - but at extra cost
531 foreach($aValidTokens[$sToken] as $aSearchTerm)
533 if (isset($aSearchTerm['word_id']) && $aSearchTerm['word_id'])
535 //var_Dump('<hr>',$aSearch['aName']);
537 if (sizeof($aCurrentSearch['aName']) && strlen($sToken) >= 4)
539 $aSearch = $aCurrentSearch;
540 $aSearch['iSearchRank'] += 1;
541 $aSearch['aAddress'][$aSearchTerm['word_id']] = $aSearchTerm['word_id'];
542 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
545 if (!sizeof($aCurrentSearch['aName']) || $aCurrentSearch['iNamePhrase'] == $iPhrase)
547 $aSearch = $aCurrentSearch;
548 $aSearch['iSearchRank'] += 2;
549 if (preg_match('#^[0-9]+$#', $sToken)) $aSearch['iSearchRank'] += 2;
550 $aSearch['aName'][$aSearchTerm['word_id']] = $aSearchTerm['word_id'];
551 $aSearch['iNamePhrase'] = $iPhrase;
552 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
559 // Allow skipping a word - but at EXTREAM cost
560 //$aSearch = $aCurrentSearch;
561 //$aSearch['iSearchRank']+=100;
562 //$aNewWordsetSearches[] = $aSearch;
566 usort($aNewWordsetSearches, 'bySearchRank');
567 $aWordsetSearches = array_slice($aNewWordsetSearches, 0, 50);
569 // var_Dump('<hr>',sizeof($aWordsetSearches)); exit;
571 $aNewPhraseSearches = array_merge($aNewPhraseSearches, $aNewWordsetSearches);
572 usort($aNewPhraseSearches, 'bySearchRank');
574 $aSearchHash = array();
575 foreach($aNewPhraseSearches as $iSearch => $aSearch)
577 $sHash = serialize($aSearch);
578 if (isset($aSearchHash[$sHash]))
580 unset($aNewPhraseSearches[$iSearch]);
584 $aSearchHash[$sHash] = 1;
588 $aNewPhraseSearches = array_slice($aNewPhraseSearches, 0, 50);
591 // Re-group the searches by their score, junk anything over 20 as just not worth trying
592 $aGroupedSearches = array();
593 foreach($aNewPhraseSearches as $aSearch)
595 if ($aSearch['iSearchRank'] < $iMaxRank)
597 if (!isset($aGroupedSearches[$aSearch['iSearchRank']])) $aGroupedSearches[$aSearch['iSearchRank']] = array();
598 $aGroupedSearches[$aSearch['iSearchRank']][] = $aSearch;
601 ksort($aGroupedSearches);
604 $aSearches = array();
605 foreach($aGroupedSearches as $iScore => $aNewSearches)
607 $iSearchCount += sizeof($aNewSearches);
608 $aSearches = array_merge($aSearches, $aNewSearches);
609 if ($iSearchCount > 50) break;
612 // if (CONST_Debug) _debugDumpGroupedSearches($aGroupedSearches, $aValidTokens);
618 // Re-group the searches by their score, junk anything over 20 as just not worth trying
619 $aGroupedSearches = array();
620 foreach($aSearches as $aSearch)
622 if ($aSearch['iSearchRank'] < $iMaxRank)
624 if (!isset($aGroupedSearches[$aSearch['iSearchRank']])) $aGroupedSearches[$aSearch['iSearchRank']] = array();
625 $aGroupedSearches[$aSearch['iSearchRank']][] = $aSearch;
628 ksort($aGroupedSearches);
631 if (CONST_Debug) var_Dump($aGroupedSearches);
635 $aCopyGroupedSearches = $aGroupedSearches;
636 foreach($aCopyGroupedSearches as $iGroup => $aSearches)
638 foreach($aSearches as $iSearch => $aSearch)
640 if (sizeof($aSearch['aAddress']))
642 $iReverseItem = array_pop($aSearch['aAddress']);
643 if (isset($aPossibleMainWordIDs[$iReverseItem]))
645 $aSearch['aAddress'] = array_merge($aSearch['aAddress'], $aSearch['aName']);
646 $aSearch['aName'] = array($iReverseItem);
647 $aGroupedSearches[$iGroup][] = $aSearch;
649 // $aReverseSearch['aName'][$iReverseItem] = $iReverseItem;
650 // $aGroupedSearches[$iGroup][] = $aReverseSearch;
656 // Filter out duplicate searches
657 $aSearchHash = array();
658 foreach($aGroupedSearches as $iGroup => $aSearches)
660 foreach($aSearches as $iSearch => $aSearch)
662 $sHash = serialize($aSearch);
663 if (isset($aSearchHash[$sHash]))
665 unset($aGroupedSearches[$iGroup][$iSearch]);
666 if (sizeof($aGroupedSearches[$iGroup]) == 0) unset($aGroupedSearches[$iGroup]);
670 $aSearchHash[$sHash] = 1;
675 if (CONST_Debug) _debugDumpGroupedSearches($aGroupedSearches, $aValidTokens);
679 foreach($aGroupedSearches as $iGroupedRank => $aSearches)
682 foreach($aSearches as $aSearch)
686 // Must have a location term
687 if (!sizeof($aSearch['aName']) && !sizeof($aSearch['aAddress']) && !$aSearch['fLon'])
689 if ($aSearch['sCountryCode'] && !$aSearch['sClass'])
691 if (4 >= $iMinAddressRank && 4 <= $iMaxAddressRank)
693 $sSQL = "select place_id from placex where country_code='".$aSearch['sCountryCode']."' and rank_search = 4";
694 if ($sCountryCodesSQL) $sSQL .= " and country_code in ($sCountryCodesSQL)";
695 $sSQL .= " order by st_area(geometry) desc limit 1";
696 $aPlaceIDs = $oDB->getCol($sSQL);
701 if (!$bBoundingBoxSearch && !$aSearch['fLon']) continue;
702 if (!$aSearch['sClass']) continue;
703 if (CONST_Debug) var_dump('<hr>',$aSearch);
704 if (CONST_Debug) _debugDumpGroupedSearches(array($iGroupedRank => array($aSearch)), $aValidTokens);
706 $sSQL = "select count(*) from pg_tables where tablename = 'place_classtype_".$aSearch['sClass']."_".$aSearch['sType']."'";
707 if ($oDB->getOne($sSQL))
709 $sSQL = "select place_id from place_classtype_".$aSearch['sClass']."_".$aSearch['sType']." ct";
710 if ($sCountryCodesSQL) $sSQL .= " join placex using (place_id)";
711 $sSQL .= " where st_contains($sViewboxSmallSQL, ct.centroid)";
712 if ($sCountryCodesSQL) $sSQL .= " and country_code in ($sCountryCodesSQL)";
713 if ($sViewboxCentreSQL) $sSQL .= " order by st_distance($sViewboxCentreSQL, ct.centroid) asc";
714 $sSQL .= " limit $iLimit";
715 if (CONST_Debug) var_dump($sSQL);
716 $aPlaceIDs = $oDB->getCol($sSQL);
718 if (!sizeof($aPlaceIDs))
720 $sSQL = "select place_id from place_classtype_".$aSearch['sClass']."_".$aSearch['sType']." ct";
721 if ($sCountryCodesSQL) $sSQL .= " join placex using (place_id)";
722 $sSQL .= " where st_contains($sViewboxLargeSQL, ct.centroid)";
723 if ($sCountryCodesSQL) $sSQL .= " and country_code in ($sCountryCodesSQL)";
724 if ($sViewboxCentreSQL) $sSQL .= " order by st_distance($sViewboxCentreSQL, ct.centroid) asc";
725 $sSQL .= " limit $iLimit";
726 if (CONST_Debug) var_dump($sSQL);
727 $aPlaceIDs = $oDB->getCol($sSQL);
732 $sSQL = "select place_id from placex where class='".$aSearch['sClass']."' and type='".$aSearch['sType']."'";
733 $sSQL .= " and st_contains($sViewboxSmallSQL, geometry)";
734 if ($sCountryCodesSQL) $sSQL .= " and country_code in ($sCountryCodesSQL)";
735 if ($sViewboxCentreSQL) $sSQL .= " order by st_distance($sViewboxCentreSQL, centroid) asc";
736 $sSQL .= " limit $iLimit";
737 if (CONST_Debug) var_dump($sSQL);
738 $aPlaceIDs = $oDB->getCol($sSQL);
744 if (CONST_Debug) var_dump('<hr>',$aSearch);
745 if (CONST_Debug) _debugDumpGroupedSearches(array($iGroupedRank => array($aSearch)), $aValidTokens);
746 $aPlaceIDs = array();
748 // First we need a position, either aName or fLat or both
752 // TODO: filter out the pointless search terms (2 letter name tokens and less)
753 // they might be right - but they are just too darned expensive to run
754 if (sizeof($aSearch['aName'])) $aTerms[] = "name_vector @> ARRAY[".join($aSearch['aName'],",")."]";
755 if (sizeof($aSearch['aAddress']) && $aSearch['aName'] != $aSearch['aAddress']) $aTerms[] = "nameaddress_vector @> ARRAY[".join($aSearch['aAddress'],",")."]";
756 if ($aSearch['sCountryCode']) $aTerms[] = "country_code = '".pg_escape_string($aSearch['sCountryCode'])."'";
757 if ($aSearch['sHouseNumber']) $aTerms[] = "address_rank in (26,27)";
758 if ($aSearch['fLon'] && $aSearch['fLat'])
760 $aTerms[] = "ST_DWithin(centroid, ST_SetSRID(ST_Point(".$aSearch['fLon'].",".$aSearch['fLat']."),4326), ".$aSearch['fRadius'].")";
761 $aOrder[] = "ST_Distance(centroid, ST_SetSRID(ST_Point(".$aSearch['fLon'].",".$aSearch['fLat']."),4326)) ASC";
763 if (sizeof($aExcludePlaceIDs))
765 $aTerms[] = "place_id not in (".join(',',$aExcludePlaceIDs).")";
767 if ($sCountryCodesSQL)
769 $aTerms[] = "country_code in ($sCountryCodesSQL)";
772 if ($bBoundingBoxSearch) $aTerms[] = "centroid && $sViewboxSmallSQL";
773 if ($sNearPointSQL) $aOrder[] = "ST_Distance($sNearPointSQL, centroid) asc";
775 $sImportanceSQL = 'case when importance = 0 OR importance IS NULL then 0.92-(search_rank::float/33) else importance end';
777 if ($sViewboxSmallSQL) $sImportanceSQL .= " * case when ST_Contains($sViewboxSmallSQL, centroid) THEN 1 ELSE 0.5 END";
778 if ($sViewboxLargeSQL) $sImportanceSQL .= " * case when ST_Contains($sViewboxLargeSQL, centroid) THEN 1 ELSE 0.5 END";
779 $aOrder[] = "$sImportanceSQL DESC";
783 $sSQL = "select place_id";
784 $sSQL .= " from search_name";
785 $sSQL .= " where ".join(' and ',$aTerms);
786 $sSQL .= " order by ".join(', ',$aOrder);
787 if ($aSearch['sHouseNumber'] || $aSearch['sClass'])
788 $sSQL .= " limit 50";
789 elseif (!sizeof($aSearch['aName']) && !sizeof($aSearch['aAddress']) && $aSearch['sClass'])
792 $sSQL .= " limit ".$iLimit;
794 if (CONST_Debug) var_dump($sSQL);
795 $iStartTime = time();
796 $aViewBoxPlaceIDs = $oDB->getAll($sSQL);
797 if (PEAR::IsError($aViewBoxPlaceIDs))
799 failInternalError("Could not get places for search terms.", $sSQL, $aViewBoxPlaceIDs);
801 if (time() - $iStartTime > 60) {
802 file_put_contents(CONST_BasePath.'/log/long_queries.log', date('Y-m-d H:i:s', $iStartTime).' '.$sSQL."\n", FILE_APPEND);
805 //var_dump($aViewBoxPlaceIDs);
806 // Did we have an viewbox matches?
807 $aPlaceIDs = array();
808 $bViewBoxMatch = false;
809 foreach($aViewBoxPlaceIDs as $aViewBoxRow)
811 // if ($bViewBoxMatch == 1 && $aViewBoxRow['in_small'] == 'f') break;
812 // if ($bViewBoxMatch == 2 && $aViewBoxRow['in_large'] == 'f') break;
813 // if ($aViewBoxRow['in_small'] == 't') $bViewBoxMatch = 1;
814 // else if ($aViewBoxRow['in_large'] == 't') $bViewBoxMatch = 2;
815 $aPlaceIDs[] = $aViewBoxRow['place_id'];
818 //var_Dump($aPlaceIDs);
821 if ($aSearch['sHouseNumber'] && sizeof($aPlaceIDs))
823 $aRoadPlaceIDs = $aPlaceIDs;
824 $sPlaceIDs = join(',',$aPlaceIDs);
826 // Now they are indexed look for a house attached to a street we found
827 $sHouseNumberRegex = '\\\\m'.str_replace(' ','[-,/ ]',$aSearch['sHouseNumber']).'\\\\M';
828 $sSQL = "select place_id from placex where parent_place_id in (".$sPlaceIDs.") and housenumber ~* E'".$sHouseNumberRegex."'";
829 if (sizeof($aExcludePlaceIDs))
831 $sSQL .= " and place_id not in (".join(',',$aExcludePlaceIDs).")";
833 $sSQL .= " limit $iLimit";
834 if (CONST_Debug) var_dump($sSQL);
835 $aPlaceIDs = $oDB->getCol($sSQL);
837 // If not try the aux fallback table
838 if (!sizeof($aPlaceIDs))
840 $sSQL = "select place_id from location_property_aux where parent_place_id in (".$sPlaceIDs.") and housenumber = '".pg_escape_string($aSearch['sHouseNumber'])."'";
841 if (sizeof($aExcludePlaceIDs))
843 $sSQL .= " and place_id not in (".join(',',$aExcludePlaceIDs).")";
845 // $sSQL .= " limit $iLimit";
846 if (CONST_Debug) var_dump($sSQL);
847 $aPlaceIDs = $oDB->getCol($sSQL);
850 if (!sizeof($aPlaceIDs))
852 $sSQL = "select place_id from location_property_tiger where parent_place_id in (".$sPlaceIDs.") and housenumber = '".pg_escape_string($aSearch['sHouseNumber'])."'";
853 if (sizeof($aExcludePlaceIDs))
855 $sSQL .= " and place_id not in (".join(',',$aExcludePlaceIDs).")";
857 // $sSQL .= " limit $iLimit";
858 if (CONST_Debug) var_dump($sSQL);
859 $aPlaceIDs = $oDB->getCol($sSQL);
862 // Fallback to the road
863 if (!sizeof($aPlaceIDs) && preg_match('/[0-9]+/', $aSearch['sHouseNumber']))
865 $aPlaceIDs = $aRoadPlaceIDs;
870 if ($aSearch['sClass'] && sizeof($aPlaceIDs))
872 $sPlaceIDs = join(',',$aPlaceIDs);
874 if (!$aSearch['sOperator'] || $aSearch['sOperator'] == 'name')
876 // If they were searching for a named class (i.e. 'Kings Head pub') then we might have an extra match
877 $sSQL = "select place_id from placex where place_id in ($sPlaceIDs) and class='".$aSearch['sClass']."' and type='".$aSearch['sType']."'";
878 if ($sCountryCodesSQL) $sSQL .= " and country_code in ($sCountryCodesSQL)";
879 $sSQL .= " order by rank_search asc limit $iLimit";
880 if (CONST_Debug) var_dump($sSQL);
881 $aPlaceIDs = $oDB->getCol($sSQL);
884 if (!$aSearch['sOperator'] || $aSearch['sOperator'] == 'near') // & in
886 $sSQL = "select count(*) from pg_tables where tablename = 'place_classtype_".$aSearch['sClass']."_".$aSearch['sType']."'";
887 $bCacheTable = $oDB->getOne($sSQL);
889 $sSQL = "select min(rank_search) from placex where place_id in ($sPlaceIDs)";
891 if (CONST_Debug) var_dump($sSQL);
892 $iMaxRank = ((int)$oDB->getOne($sSQL));
894 // For state / country level searches the normal radius search doesn't work very well
896 if ($iMaxRank < 9 && $bCacheTable)
898 // Try and get a polygon to search in instead
899 $sSQL = "select geometry from placex where place_id in ($sPlaceIDs) and rank_search < $iMaxRank + 5 and st_geometrytype(geometry) in ('ST_Polygon','ST_MultiPolygon') order by rank_search asc limit 1";
900 if (CONST_Debug) var_dump($sSQL);
901 $sPlaceGeom = $oDB->getOne($sSQL);
911 $sSQL = "select place_id from placex where place_id in ($sPlaceIDs) and rank_search < $iMaxRank";
912 if (CONST_Debug) var_dump($sSQL);
913 $aPlaceIDs = $oDB->getCol($sSQL);
914 $sPlaceIDs = join(',',$aPlaceIDs);
917 if ($sPlaceIDs || $sPlaceGeom)
923 // More efficient - can make the range bigger
927 if ($sNearPointSQL) $sOrderBySQL = "ST_Distance($sNearPointSQL, l.centroid)";
928 else if ($sPlaceIDs) $sOrderBySQL = "ST_Distance(l.centroid, f.geometry)";
929 else if ($sPlaceGeom) $sOrderBysSQL = "ST_Distance(st_centroid('".$sPlaceGeom."'), l.centroid)";
931 $sSQL = "select distinct l.place_id".($sOrderBysSQL?','.$sOrderBysSQL:'')." from place_classtype_".$aSearch['sClass']."_".$aSearch['sType']." as l";
932 if ($sCountryCodesSQL) $sSQL .= " join placex as lp using (place_id)";
935 $sSQL .= ",placex as f where ";
936 $sSQL .= "f.place_id in ($sPlaceIDs) and ST_DWithin(l.centroid, st_centroid(f.geometry), $fRange) ";
941 $sSQL .= "ST_Contains('".$sPlaceGeom."', l.centroid) ";
943 if (sizeof($aExcludePlaceIDs))
945 $sSQL .= " and l.place_id not in (".join(',',$aExcludePlaceIDs).")";
947 if ($sCountryCodesSQL) $sSQL .= " and lp.country_code in ($sCountryCodesSQL)";
948 if ($sOrderBy) $sSQL .= "order by ".$OrderBysSQL." asc";
949 if ($iOffset) $sSQL .= " offset $iOffset";
950 $sSQL .= " limit $iLimit";
951 if (CONST_Debug) var_dump($sSQL);
952 $aPlaceIDs = $oDB->getCol($sSQL);
956 if (isset($aSearch['fRadius']) && $aSearch['fRadius']) $fRange = $aSearch['fRadius'];
959 if ($sNearPointSQL) $sOrderBySQL = "ST_Distance($sNearPointSQL, l.geometry)";
960 else $sOrderBySQL = "ST_Distance(l.geometry, f.geometry)";
962 $sSQL = "select distinct l.place_id".($sOrderBysSQL?','.$sOrderBysSQL:'')." from placex as l,placex as f where ";
963 $sSQL .= "f.place_id in ( $sPlaceIDs) and ST_DWithin(l.geometry, st_centroid(f.geometry), $fRange) ";
964 $sSQL .= "and l.class='".$aSearch['sClass']."' and l.type='".$aSearch['sType']."' ";
965 if (sizeof($aExcludePlaceIDs))
967 $sSQL .= " and l.place_id not in (".join(',',$aExcludePlaceIDs).")";
969 if ($sCountryCodesSQL) $sSQL .= " and l.country_code in ($sCountryCodesSQL)";
970 if ($sOrderBy) $sSQL .= "order by ".$OrderBysSQL." asc";
971 if ($iOffset) $sSQL .= " offset $iOffset";
972 $sSQL .= " limit $iLimit";
973 if (CONST_Debug) var_dump($sSQL);
974 $aPlaceIDs = $oDB->getCol($sSQL);
982 if (PEAR::IsError($aPlaceIDs))
984 failInternalError("Could not get place IDs from tokens." ,$sSQL, $aPlaceIDs);
987 if (CONST_Debug) var_Dump($aPlaceIDs);
989 foreach($aPlaceIDs as $iPlaceID)
991 $aResultPlaceIDs[$iPlaceID] = $iPlaceID;
993 if ($iQueryLoop > 20) break;
996 if (sizeof($aResultPlaceIDs)) break;
997 if ($iGroupLoop > 4) break;
998 if ($iQueryLoop > 30) break;
1001 // Did we find anything?
1002 if (sizeof($aResultPlaceIDs))
1004 //var_Dump($aResultPlaceIDs);exit;
1005 // Get the details for display (is this a redundant extra step?)
1006 $sPlaceIDs = join(',',$aResultPlaceIDs);
1007 $sOrderSQL = 'CASE ';
1008 foreach(array_keys($aResultPlaceIDs) as $iOrder => $iPlaceID)
1010 $sOrderSQL .= 'when min(place_id) = '.$iPlaceID.' then '.$iOrder.' ';
1012 $sOrderSQL .= ' ELSE 10000000 END';
1013 $sSQL = "select osm_type,osm_id,class,type,admin_level,rank_search,rank_address,min(place_id) as place_id,country_code,";
1014 $sSQL .= "get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,";
1015 $sSQL .= "get_name_by_language(name, $sLanguagePrefArraySQL) as placename,";
1016 $sSQL .= "get_name_by_language(name, ARRAY['ref']) as ref,";
1017 $sSQL .= "avg(ST_X(ST_Centroid(geometry))) as lon,avg(ST_Y(ST_Centroid(geometry))) as lat, ";
1018 // $sSQL .= $sOrderSQL." as porder, ";
1019 $sSQL .= "coalesce(importance,0.9-(rank_search::float/30)) as importance ";
1020 $sSQL .= "from placex where place_id in ($sPlaceIDs) ";
1021 $sSQL .= "and placex.rank_address between $iMinAddressRank and $iMaxAddressRank ";
1022 $sSQL .= "and linked_place_id is null ";
1023 $sSQL .= "group by osm_type,osm_id,class,type,admin_level,rank_search,rank_address,country_code,importance";
1024 if (!$bDeDupe) $sSQL .= ",place_id";
1025 $sSQL .= ",get_address_by_language(place_id, $sLanguagePrefArraySQL) ";
1026 $sSQL .= ",get_name_by_language(name, $sLanguagePrefArraySQL) ";
1027 $sSQL .= ",get_name_by_language(name, ARRAY['ref']) ";
1029 $sSQL .= "select 'T' as osm_type,place_id as osm_id,'place' as class,'house' as type,null as admin_level,30 as rank_search,30 as rank_address,min(place_id) as place_id,'us' as country_code,";
1030 $sSQL .= "get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,";
1031 $sSQL .= "null as placename,";
1032 $sSQL .= "null as ref,";
1033 $sSQL .= "avg(ST_X(centroid)) as lon,avg(ST_Y(centroid)) as lat, ";
1034 // $sSQL .= $sOrderSQL." as porder, ";
1035 $sSQL .= "-0.15 as importance ";
1036 $sSQL .= "from location_property_tiger where place_id in ($sPlaceIDs) ";
1037 $sSQL .= "and 30 between $iMinAddressRank and $iMaxAddressRank ";
1038 $sSQL .= "group by place_id";
1039 if (!$bDeDupe) $sSQL .= ",place_id";
1041 $sSQL .= "select 'L' as osm_type,place_id as osm_id,'place' as class,'house' as type,null as admin_level,30 as rank_search,30 as rank_address,min(place_id) as place_id,'us' as country_code,";
1042 $sSQL .= "get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,";
1043 $sSQL .= "null as placename,";
1044 $sSQL .= "null as ref,";
1045 $sSQL .= "avg(ST_X(centroid)) as lon,avg(ST_Y(centroid)) as lat, ";
1046 // $sSQL .= $sOrderSQL." as porder, ";
1047 $sSQL .= "-0.10 as importance ";
1048 $sSQL .= "from location_property_aux where place_id in ($sPlaceIDs) ";
1049 $sSQL .= "and 30 between $iMinAddressRank and $iMaxAddressRank ";
1050 $sSQL .= "group by place_id";
1051 if (!$bDeDupe) $sSQL .= ",place_id";
1052 $sSQL .= ",get_address_by_language(place_id, $sLanguagePrefArraySQL) ";
1053 $sSQL .= "order by importance desc";
1054 // $sSQL .= "order by rank_search,rank_address,porder asc";
1055 if (CONST_Debug) var_dump('<hr>',$sSQL);
1056 $aSearchResults = $oDB->getAll($sSQL);
1057 //var_dump($sSQL,$aSearchResults);exit;
1059 if (PEAR::IsError($aSearchResults))
1061 failInternalError("Could not get details for place.", $sSQL, $aSearchResults);
1064 } // end if ($sQuery)
1067 if (isset($_GET['nearlat']) && trim($_GET['nearlat'])!=='' && isset($_GET['nearlon']) && trim($_GET['nearlon']) !== '')
1069 $iPlaceID = geocodeReverse($_GET['nearlat'], $_GET['nearlon']);
1070 $aResultPlaceIDs = array($iPlaceID);
1072 // TODO: this needs refactoring!
1074 // Get the details for display (is this a redundant extra step?)
1075 $sPlaceIDs = join(',',$aResultPlaceIDs);
1076 $sOrderSQL = 'CASE ';
1077 foreach(array_keys($aResultPlaceIDs) as $iOrder => $iPlaceID)
1079 $sOrderSQL .= 'when min(place_id) = '.$iPlaceID.' then '.$iOrder.' ';
1081 $sOrderSQL .= ' ELSE 10000000 END';
1082 $sSQL = "select osm_type,osm_id,class,type,admin_level,rank_search,rank_address,min(place_id) as place_id,country_code,";
1083 $sSQL .= "get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,";
1084 $sSQL .= "get_name_by_language(name, $sLanguagePrefArraySQL) as placename,";
1085 $sSQL .= "get_name_by_language(name, ARRAY['ref']) as ref,";
1086 $sSQL .= "avg(ST_X(ST_Centroid(geometry))) as lon,avg(ST_Y(ST_Centroid(geometry))) as lat, ";
1087 // $sSQL .= $sOrderSQL." as porder, ";
1088 $sSQL .= "coalesce(importance,0.9-(rank_search::float/30)) as importance ";
1089 $sSQL .= "from placex where place_id in ($sPlaceIDs) ";
1090 $sSQL .= "and placex.rank_address between $iMinAddressRank and $iMaxAddressRank ";
1091 $sSQL .= "group by osm_type,osm_id,class,type,admin_level,rank_search,rank_address,country_code,importance";
1092 if (!$bDeDupe) $sSQL .= ",place_id";
1093 $sSQL .= ",get_address_by_language(place_id, $sLanguagePrefArraySQL) ";
1094 $sSQL .= ",get_name_by_language(name, $sLanguagePrefArraySQL) ";
1095 $sSQL .= ",get_name_by_language(name, ARRAY['ref']) ";
1097 $sSQL .= "select 'T' as osm_type,place_id as osm_id,'place' as class,'house' as type,null as admin_level,30 as rank_search,30 as rank_address,min(place_id) as place_id,'us' as country_code,";
1098 $sSQL .= "get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,";
1099 $sSQL .= "null as placename,";
1100 $sSQL .= "null as ref,";
1101 $sSQL .= "avg(ST_X(centroid)) as lon,avg(ST_Y(centroid)) as lat, ";
1102 // $sSQL .= $sOrderSQL." as porder, ";
1103 $sSQL .= "-0.15 as importance ";
1104 $sSQL .= "from location_property_tiger where place_id in ($sPlaceIDs) ";
1105 $sSQL .= "and 30 between $iMinAddressRank and $iMaxAddressRank ";
1106 $sSQL .= "group by place_id";
1107 if (!$bDeDupe) $sSQL .= ",place_id";
1109 $sSQL .= "select 'L' as osm_type,place_id as osm_id,'place' as class,'house' as type,null as admin_level,30 as rank_search,30 as rank_address,min(place_id) as place_id,'us' as country_code,";
1110 $sSQL .= "get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,";
1111 $sSQL .= "null as placename,";
1112 $sSQL .= "null as ref,";
1113 $sSQL .= "avg(ST_X(centroid)) as lon,avg(ST_Y(centroid)) as lat, ";
1114 // $sSQL .= $sOrderSQL." as porder, ";
1115 $sSQL .= "-0.10 as importance ";
1116 $sSQL .= "from location_property_aux where place_id in ($sPlaceIDs) ";
1117 $sSQL .= "and 30 between $iMinAddressRank and $iMaxAddressRank ";
1118 $sSQL .= "group by place_id";
1119 if (!$bDeDupe) $sSQL .= ",place_id";
1120 $sSQL .= ",get_address_by_language(place_id, $sLanguagePrefArraySQL) ";
1121 $sSQL .= "order by importance desc";
1122 // $sSQL .= "order by rank_search,rank_address,porder asc";
1123 if (CONST_Debug) var_dump('<hr>',$sSQL);
1124 $aSearchResults = $oDB->getAll($sSQL);
1125 //var_dump($sSQL,$aSearchResults);exit;
1127 if (PEAR::IsError($aSearchResults))
1129 failInternalError("Could not get details for place (near).", $sSQL, $aSearchResults);
1135 $sSearchResult = '';
1136 if (!sizeof($aSearchResults) && isset($_GET['q']) && $_GET['q'])
1138 $sSearchResult = 'No Results Found';
1140 //var_Dump($aSearchResults);
1142 $aClassType = getClassTypesWithImportance();
1143 $aRecheckWords = preg_split('/\b/',$sQuery);
1144 foreach($aRecheckWords as $i => $sWord)
1146 if (!$sWord) unset($aRecheckWords[$i]);
1148 foreach($aSearchResults as $iResNum => $aResult)
1150 if (CONST_Search_AreaPolygons)
1152 // Get the bounding box and outline polygon
1153 $sSQL = "select place_id,numfeatures,area,outline,";
1154 $sSQL .= "ST_Y(ST_PointN(ST_ExteriorRing(Box2D(outline)),4)) as minlat,ST_Y(ST_PointN(ST_ExteriorRing(Box2D(outline)),2)) as maxlat,";
1155 $sSQL .= "ST_X(ST_PointN(ST_ExteriorRing(Box2D(outline)),1)) as minlon,ST_X(ST_PointN(ST_ExteriorRing(Box2D(outline)),3)) as maxlon,";
1156 $sSQL .= "ST_AsText(outline) as outlinestring from get_place_boundingbox_quick(".$aResult['place_id'].")";
1158 $sSQL = "select place_id,0 as numfeatures,st_area(geometry) as area,";
1159 $sSQL .= "ST_Y(centroid) as centrelat,ST_X(centroid) as centrelon,";
1160 $sSQL .= "ST_Y(ST_PointN(ST_ExteriorRing(Box2D(geometry)),4)) as minlat,ST_Y(ST_PointN(ST_ExteriorRing(Box2D(geometry)),2)) as maxlat,";
1161 $sSQL .= "ST_X(ST_PointN(ST_ExteriorRing(Box2D(geometry)),1)) as minlon,ST_X(ST_PointN(ST_ExteriorRing(Box2D(geometry)),3)) as maxlon,";
1162 $sSQL .= "ST_AsText(geometry) as outlinestring from placex where place_id = ".$aResult['place_id'].' and st_geometrytype(Box2D(geometry)) = \'ST_Polygon\'';
1163 $aPointPolygon = $oDB->getRow($sSQL);
1164 if (PEAR::IsError($aPointPolygon))
1166 failInternalError("Could not get outline.", $sSQL, $aPointPolygon);
1168 if ($aPointPolygon['place_id'])
1170 if ($aPointPolygon['centrelon'] !== null && $aPointPolygon['centrelat'] !== null ) {
1171 $aResult['lat'] = $aPointPolygon['centrelat'];
1172 $aResult['lon'] = $aPointPolygon['centrelon'];
1174 // Translate geometary string to point array
1175 if (preg_match('#POLYGON\\(\\(([- 0-9.,]+)#',$aPointPolygon['outlinestring'],$aMatch))
1177 preg_match_all('/(-?[0-9.]+) (-?[0-9.]+)/',$aMatch[1],$aPolyPoints,PREG_SET_ORDER);
1179 elseif (preg_match('#POINT\\((-?[0-9.]+) (-?[0-9.]+)\\)#',$aPointPolygon['outlinestring'],$aMatch))
1182 $iSteps = ($fRadius * 40000)^2;
1183 $fStepSize = (2*pi())/$iSteps;
1184 $aPolyPoints = array();
1185 for($f = 0; $f < 2*pi(); $f += $fStepSize)
1187 $aPolyPoints[] = array('',$aMatch[1]+($fRadius*sin($f)),$aMatch[2]+($fRadius*cos($f)));
1189 $aPointPolygon['minlat'] = $aPointPolygon['minlat'] - $fRadius;
1190 $aPointPolygon['maxlat'] = $aPointPolygon['maxlat'] + $fRadius;
1191 $aPointPolygon['minlon'] = $aPointPolygon['minlon'] - $fRadius;
1192 $aPointPolygon['maxlon'] = $aPointPolygon['maxlon'] + $fRadius;
1195 // Output data suitable for display (points and a bounding box)
1196 if ($bShowPolygons && isset($aPolyPoints))
1198 $aResult['aPolyPoints'] = array();
1199 foreach($aPolyPoints as $aPoint)
1201 $aResult['aPolyPoints'][] = array($aPoint[1], $aPoint[2]);
1204 $aResult['aBoundingBox'] = array($aPointPolygon['minlat'],$aPointPolygon['maxlat'],$aPointPolygon['minlon'],$aPointPolygon['maxlon']);
1208 if (!isset($aResult['aBoundingBox']))
1211 $fDiameter = 0.0001;
1213 if (isset($aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['defdiameter'])
1214 && $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['defdiameter'])
1216 $fDiameter = $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['defzoom'];
1218 elseif (isset($aClassType[$aResult['class'].':'.$aResult['type']]['defdiameter'])
1219 && $aClassType[$aResult['class'].':'.$aResult['type']]['defdiameter'])
1221 $fDiameter = $aClassType[$aResult['class'].':'.$aResult['type']]['defdiameter'];
1223 $fRadius = $fDiameter / 2;
1225 $iSteps = max(8,min(100,$fRadius * 3.14 * 100000));
1226 $fStepSize = (2*pi())/$iSteps;
1227 $aPolyPoints = array();
1228 for($f = 0; $f < 2*pi(); $f += $fStepSize)
1230 $aPolyPoints[] = array('',$aResult['lon']+($fRadius*sin($f)),$aResult['lat']+($fRadius*cos($f)));
1232 $aPointPolygon['minlat'] = $aResult['lat'] - $fRadius;
1233 $aPointPolygon['maxlat'] = $aResult['lat'] + $fRadius;
1234 $aPointPolygon['minlon'] = $aResult['lon'] - $fRadius;
1235 $aPointPolygon['maxlon'] = $aResult['lon'] + $fRadius;
1237 // Output data suitable for display (points and a bounding box)
1240 $aResult['aPolyPoints'] = array();
1241 foreach($aPolyPoints as $aPoint)
1243 $aResult['aPolyPoints'][] = array($aPoint[1], $aPoint[2]);
1246 $aResult['aBoundingBox'] = array($aPointPolygon['minlat'],$aPointPolygon['maxlat'],$aPointPolygon['minlon'],$aPointPolygon['maxlon']);
1249 // Is there an icon set for this type of result?
1250 if (isset($aClassType[$aResult['class'].':'.$aResult['type']]['icon'])
1251 && $aClassType[$aResult['class'].':'.$aResult['type']]['icon'])
1253 $aResult['icon'] = CONST_Website_BaseURL.'images/mapicons/'.$aClassType[$aResult['class'].':'.$aResult['type']]['icon'].'.p.20.png';
1256 if (isset($aClassType[$aResult['class'].':'.$aResult['type']]['label'])
1257 && $aClassType[$aResult['class'].':'.$aResult['type']]['label'])
1259 $aResult['label'] = $aClassType[$aResult['class'].':'.$aResult['type']]['label'];
1262 if ($bShowAddressDetails)
1264 $aResult['address'] = getAddressDetails($oDB, $sLanguagePrefArraySQL, $aResult['place_id'], $aResult['country_code']);
1265 //var_dump($aResult['address']);
1269 // Adjust importance for the number of exact string matches in the result
1270 $aResult['importance'] = max(0.001,$aResult['importance']);
1272 $sAddress = $aResult['langaddress'];
1273 foreach($aRecheckWords as $i => $sWord)
1275 if (stripos($sAddress, $sWord)!==false) $iCountWords++;
1277 $aResult['importance'] = $aResult['importance'] + ($iCountWords*0.1); // 0.1 is a completely arbitrary number but something in the range 0.1 to 0.5 would seem right
1279 //if (CONST_Debug) var_dump($aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']);
1281 if (isset($aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['importance'])
1282 && $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['importance'])
1284 $aResult['importance'] = $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['importance'];
1286 elseif (isset($aClassType[$aResult['class'].':'.$aResult['type']]['importance'])
1287 && $aClassType[$aResult['class'].':'.$aResult['type']]['importance'])
1289 $aResult['importance'] = $aClassType[$aResult['class'].':'.$aResult['type']]['importance'];
1293 $aResult['importance'] = 1000000000000000;
1296 $aResult['name'] = $aResult['langaddress'];
1297 $aResult['foundorder'] = $iResNum;
1298 $aSearchResults[$iResNum] = $aResult;
1300 uasort($aSearchResults, 'byImportance');
1302 //var_dump($aSearchResults);exit;
1304 $aOSMIDDone = array();
1305 $aClassTypeNameDone = array();
1306 $aToFilter = $aSearchResults;
1307 $aSearchResults = array();
1310 foreach($aToFilter as $iResNum => $aResult)
1312 if ($aResult['type'] == 'adminitrative') $aResult['type'] = 'administrative';
1313 $aExcludePlaceIDs[$aResult['place_id']] = $aResult['place_id'];
1316 $fLat = $aResult['lat'];
1317 $fLon = $aResult['lon'];
1318 if (isset($aResult['zoom'])) $iZoom = $aResult['zoom'];
1321 if (!$bDeDupe || (!isset($aOSMIDDone[$aResult['osm_type'].$aResult['osm_id']])
1322 && !isset($aClassTypeNameDone[$aResult['osm_type'].$aResult['class'].$aResult['name']])))
1324 $aOSMIDDone[$aResult['osm_type'].$aResult['osm_id']] = true;
1325 $aClassTypeNameDone[$aResult['osm_type'].$aResult['class'].$aResult['name']] = true;
1326 $aSearchResults[] = $aResult;
1329 // Absolute limit on number of results
1330 if (sizeof($aSearchResults) >= $iLimit) break;
1333 $sDataDate = $oDB->getOne("select TO_CHAR(lastimportdate - '1 day'::interval,'YYYY/MM/DD') from import_status limit 1");
1335 if (isset($_GET['nearlat']) && isset($_GET['nearlon']))
1337 $sQuery .= ' ['.$_GET['nearlat'].','.$_GET['nearlon'].']';
1342 logEnd($oDB, $hLog, sizeof($aToFilter));
1344 $sMoreURL = CONST_Website_BaseURL.'search?format='.urlencode($sOutputFormat).'&exclude_place_ids='.join(',',$aExcludePlaceIDs);
1345 $sMoreURL .= '&accept-language='.$_SERVER["HTTP_ACCEPT_LANGUAGE"];
1346 if ($bShowPolygons) $sMoreURL .= '&polygon=1';
1347 if ($bShowAddressDetails) $sMoreURL .= '&addressdetails=1';
1348 if (isset($_GET['viewbox']) && $_GET['viewbox']) $sMoreURL .= '&viewbox='.urlencode($_GET['viewbox']);
1349 if (isset($_GET['nearlat']) && isset($_GET['nearlon'])) $sMoreURL .= '&nearlat='.(float)$_GET['nearlat'].'&nearlon='.(float)$_GET['nearlon'];
1352 $sSuggestionURL = $sMoreURL.'&q='.urlencode($sSuggestion);
1354 $sMoreURL .= '&q='.urlencode($sQuery);
1356 if (CONST_Debug) exit;
1358 include(CONST_BasePath.'/lib/template/search-'.$sOutputFormat.'.php');