2 @define('CONST_ConnectionBucket_PageType', 'Search');
4 require_once(dirname(dirname(__FILE__)).'/lib/init-website.php');
5 require_once(CONST_BasePath.'/lib/log.php');
7 ini_set('memory_limit', '200M');
12 $fLat = CONST_Default_Lat;
13 $fLon = CONST_Default_Lon;
14 $iZoom = CONST_Default_Zoom;
15 $bBoundingBoxSearch = isset($_GET['bounded'])?(bool)$_GET['bounded']:false;
16 $sOutputFormat = 'html';
17 $aSearchResults = array();
18 $aExcludePlaceIDs = array();
19 $sCountryCodesSQL = false;
20 $sSuggestion = $sSuggestionURL = false;
21 $bDeDupe = isset($_GET['dedupe'])?(bool)$_GET['dedupe']:true;
22 $bReverseInPlan = false;
23 $iFinalLimit = isset($_GET['limit'])?(int)$_GET['limit']:10;
24 $iOffset = isset($_GET['offset'])?(int)$_GET['offset']:0;
26 if ($iFinalLimit > 50) $iFinalLimit = 50;
27 $iLimit = $iFinalLimit + min($iFinalLimit, 10);
29 $iMaxAddressRank = 30;
30 $sAllowedTypesSQLList = false;
33 if (isset($_GET['format']) && ($_GET['format'] == 'html' || $_GET['format'] == 'xml' || $_GET['format'] == 'json' || $_GET['format'] == 'jsonv2'))
35 $sOutputFormat = $_GET['format'];
38 // Show / use polygons
39 $bShowPolygons = (boolean)isset($_GET['polygon']) && $_GET['polygon'];
40 if ($sOutputFormat == 'html') {
41 $bAsText = $bShowPolygons;
42 $bShowPolygons = false;
47 $bAsGeoJSON = (boolean)isset($_GET['polygon_geojson']) && $_GET['polygon_geojson'];
48 $bAsKML = (boolean)isset($_GET['polygon_kml']) && $_GET['polygon_kml'];
49 $bAsSVG = (boolean)isset($_GET['polygon_svg']) && $_GET['polygon_svg'];
50 $bAsText = (boolean)isset($_GET['polygon_text']) && $_GET['polygon_text'];
51 if ((($bShowPolygons?1:0)
56 ) > CONST_PolygonOutput_MaximumTypes) {
57 if (CONST_PolygonOutput_MaximumTypes) {
58 userError("Select only ".CONST_PolygonOutput_MaximumTypes." polgyon output option");
60 userError("Polygon output is disabled");
66 // Show address breakdown
67 $bShowAddressDetails = isset($_GET['addressdetails']) && $_GET['addressdetails'];
70 $aLangPrefOrder = getPreferredLanguages();
71 if (isset($aLangPrefOrder['name:de'])) $bReverseInPlan = true;
72 if (isset($aLangPrefOrder['name:ru'])) $bReverseInPlan = true;
73 if (isset($aLangPrefOrder['name:ja'])) $bReverseInPlan = true;
75 $sLanguagePrefArraySQL = "ARRAY[".join(',',array_map("getDBQuoted",$aLangPrefOrder))."]";
77 if (isset($_GET['exclude_place_ids']) && $_GET['exclude_place_ids'])
79 foreach(explode(',',$_GET['exclude_place_ids']) as $iExcludedPlaceID)
81 $iExcludedPlaceID = (int)$iExcludedPlaceID;
82 if ($iExcludedPlaceID) $aExcludePlaceIDs[$iExcludedPlaceID] = $iExcludedPlaceID;
86 // Only certain ranks of feature
87 if (isset($_GET['featureType']) && !isset($_GET['featuretype'])) $_GET['featuretype'] = $_GET['featureType'];
89 if (isset($_GET['featuretype']))
91 switch($_GET['featuretype'])
94 $iMinAddressRank = $iMaxAddressRank = 4;
97 $iMinAddressRank = $iMaxAddressRank = 8;
100 $iMinAddressRank = 14;
101 $iMaxAddressRank = 16;
104 $iMinAddressRank = 8;
105 $iMaxAddressRank = 20;
110 if (isset($_GET['countrycodes']))
112 $aCountryCodes = array();
113 foreach(explode(',',$_GET['countrycodes']) as $sCountryCode)
115 if (preg_match('/^[a-zA-Z][a-zA-Z]$/', $sCountryCode))
117 $aCountryCodes[] = "'".strtolower($sCountryCode)."'";
120 $sCountryCodesSQL = join(',', $aCountryCodes);
124 $sQuery = (isset($_GET['q'])?trim($_GET['q']):'');
125 if (!$sQuery && isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'][0] == '/')
127 $sQuery = substr($_SERVER['PATH_INFO'], 1);
129 // reverse order of '/' separated string
130 $aPhrases = explode('/', $sQuery);
131 $aPhrases = array_reverse($aPhrases);
132 $sQuery = join(', ',$aPhrases);
135 function structuredAddressElement(&$aStructuredQuery, &$iMinAddressRank, &$iMaxAddressRank, $aParams, $sKey, $iNewMinAddressRank, $iNewMaxAddressRank)
137 if (!isset($_GET[$sKey])) return false;
138 $sValue = trim($_GET[$sKey]);
139 if (!$sValue) return false;
140 $aStructuredQuery[$sKey] = $sValue;
141 if ($iMinAddressRank == 0 && $iMaxAddressRank == 30) {
142 $iMinAddressRank = $iNewMinAddressRank;
143 $iMaxAddressRank = $iNewMaxAddressRank;
149 $aStructuredOptions = array(
150 array('amenity', 26, 30),
151 array('street', 26, 30),
152 array('city', 14, 24),
153 array('county', 9, 13),
154 array('state', 8, 8),
155 array('country', 4, 4),
156 array('postalcode', 16, 25),
158 $aStructuredQuery = array();
159 $sAllowedTypesSQLList = '';
160 foreach($aStructuredOptions as $aStructuredOption)
162 loadStructuredAddressElement($aStructuredQuery, $iMinAddressRank, $iMaxAddressRank, $_GET, $aStructuredOption[0], $aStructuredOption[1], $aStructuredOption[2]);
164 if (sizeof($aStructuredQuery) > 0) {
165 $sQuery = join(', ', $aStructuredQuery);
166 if ($iMaxAddressRank < 30)
168 $sAllowedTypesSQLList = '(\'place\',\'boundary\')';
174 $hLog = logStart($oDB, 'search', $sQuery, $aLangPrefOrder);
176 // Hack to make it handle "new york, ny" (and variants) correctly
177 $sQuery = str_ireplace(array('New York, ny','new york, new york', 'New York ny','new york new york'), 'new york city, ny', $sQuery);
178 if (isset($aLangPrefOrder['name:en']))
180 $sQuery = preg_replace('/,\s*il\s*(,|$)/',', illinois\1', $sQuery);
181 $sQuery = preg_replace('/,\s*al\s*(,|$)/',', alabama\1', $sQuery);
182 $sQuery = preg_replace('/,\s*la\s*(,|$)/',', louisiana\1', $sQuery);
185 // If we have a view box create the SQL
186 // Small is the actual view box, Large is double (on each axis) that
187 $sViewboxCentreSQL = $sViewboxSmallSQL = $sViewboxLargeSQL = false;
188 if (isset($_GET['viewboxlbrt']) && $_GET['viewboxlbrt'])
190 $aCoOrdinatesLBRT = explode(',',$_GET['viewboxlbrt']);
191 $_GET['viewbox'] = $aCoOrdinatesLBRT[0].','.$aCoOrdinatesLBRT[3].','.$aCoOrdinatesLBRT[2].','.$aCoOrdinatesLBRT[1];
193 if (isset($_GET['viewbox']) && $_GET['viewbox'])
195 $aCoOrdinates = explode(',',$_GET['viewbox']);
196 $sViewboxSmallSQL = "ST_SetSRID(ST_MakeBox2D(ST_Point(".(float)$aCoOrdinates[0].",".(float)$aCoOrdinates[1]."),ST_Point(".(float)$aCoOrdinates[2].",".(float)$aCoOrdinates[3].")),4326)";
197 $fHeight = $aCoOrdinates[0]-$aCoOrdinates[2];
198 $fWidth = $aCoOrdinates[1]-$aCoOrdinates[3];
199 $aCoOrdinates[0] += $fHeight;
200 $aCoOrdinates[2] -= $fHeight;
201 $aCoOrdinates[1] += $fWidth;
202 $aCoOrdinates[3] -= $fWidth;
203 $sViewboxLargeSQL = "ST_SetSRID(ST_MakeBox2D(ST_Point(".(float)$aCoOrdinates[0].",".(float)$aCoOrdinates[1]."),ST_Point(".(float)$aCoOrdinates[2].",".(float)$aCoOrdinates[3].")),4326)";
205 $bBoundingBoxSearch = false;
207 if (isset($_GET['route']) && $_GET['route'] && isset($_GET['routewidth']) && $_GET['routewidth'])
209 $aPoints = explode(',',$_GET['route']);
210 if (sizeof($aPoints) % 2 != 0)
212 userError("Uneven number of points");
215 $sViewboxCentreSQL = "ST_SetSRID('LINESTRING(";
217 foreach($aPoints as $i => $fPoint)
221 if ($i != 1) $sViewboxCentreSQL .= ",";
222 $sViewboxCentreSQL .= ((float)$fPoint).' '.$fPrevCoord;
226 $fPrevCoord = (float)$fPoint;
229 $sViewboxCentreSQL .= ")'::geometry,4326)";
231 $sSQL = "select st_buffer(".$sViewboxCentreSQL.",".(float)($_GET['routewidth']/69).")";
232 $sViewboxSmallSQL = $oDB->getOne($sSQL);
233 if (PEAR::isError($sViewboxSmallSQL))
235 failInternalError("Could not get small viewbox.", $sSQL, $sViewboxSmallSQL);
237 $sViewboxSmallSQL = "'".$sViewboxSmallSQL."'::geometry";
239 $sSQL = "select st_buffer(".$sViewboxCentreSQL.",".(float)($_GET['routewidth']/30).")";
240 $sViewboxLargeSQL = $oDB->getOne($sSQL);
241 if (PEAR::isError($sViewboxLargeSQL))
243 failInternalError("Could not get large viewbox.", $sSQL, $sViewboxLargeSQL);
245 $sViewboxLargeSQL = "'".$sViewboxLargeSQL."'::geometry";
246 $bBoundingBoxSearch = true;
249 // Do we have anything that looks like a lat/lon pair?
250 if (preg_match('/\\b([NS])[ ]+([0-9]+[0-9.]*)[ ]+([0-9.]+)?[, ]+([EW])[ ]+([0-9]+)[ ]+([0-9]+[0-9.]*)?\\b/', $sQuery, $aData))
252 $fQueryLat = ($aData[1]=='N'?1:-1) * ($aData[2] + $aData[3]/60);
253 $fQueryLon = ($aData[4]=='E'?1:-1) * ($aData[5] + $aData[6]/60);
254 if ($fQueryLat <= 90.1 && $fQueryLat >= -90.1 && $fQueryLon <= 180.1 && $fQueryLon >= -180.1)
256 $_GET['nearlat'] = $fQueryLat;
257 $_GET['nearlon'] = $fQueryLon;
258 $sQuery = trim(str_replace($aData[0], ' ', $sQuery));
261 elseif (preg_match('/\\b([0-9]+)[ ]+([0-9]+[0-9.]*)?[ ]+([NS])[, ]+([0-9]+)[ ]+([0-9]+[0-9.]*)?[ ]+([EW])\\b/', $sQuery, $aData))
263 $fQueryLat = ($aData[3]=='N'?1:-1) * ($aData[1] + $aData[2]/60);
264 $fQueryLon = ($aData[6]=='E'?1:-1) * ($aData[4] + $aData[5]/60);
265 if ($fQueryLat <= 90.1 && $fQueryLat >= -90.1 && $fQueryLon <= 180.1 && $fQueryLon >= -180.1)
267 $_GET['nearlat'] = $fQueryLat;
268 $_GET['nearlon'] = $fQueryLon;
269 $sQuery = trim(str_replace($aData[0], ' ', $sQuery));
272 elseif (preg_match('/(\\[|^|\\b)(-?[0-9]+[0-9.]*)[, ]+(-?[0-9]+[0-9.]*)(\\]|$|\\b)/', $sQuery, $aData))
274 $fQueryLat = $aData[2];
275 $fQueryLon = $aData[3];
276 if ($fQueryLat <= 90.1 && $fQueryLat >= -90.1 && $fQueryLon <= 180.1 && $fQueryLon >= -180.1)
278 $_GET['nearlat'] = $fQueryLat;
279 $_GET['nearlon'] = $fQueryLon;
280 $sQuery = trim(str_replace($aData[0], ' ', $sQuery));
284 if ($sQuery || $aStructuredQuery)
286 // Start with a blank search
288 array('iSearchRank' => 0, 'iNamePhrase' => -1, 'sCountryCode' => false, 'aName'=>array(), 'aAddress'=>array(),
289 'sOperator'=>'', 'aFeatureName' => array(), 'sClass'=>'', 'sType'=>'', 'sHouseNumber'=>'', 'fLat'=>'', 'fLon'=>'', 'fRadius'=>'')
292 $sNearPointSQL = false;
293 if (isset($_GET['nearlat']) && isset($_GET['nearlon']))
295 $sNearPointSQL = "ST_SetSRID(ST_Point(".(float)$_GET['nearlon'].",".$_GET['nearlat']."),4326)";
296 $aSearches[0]['fLat'] = (float)$_GET['nearlat'];
297 $aSearches[0]['fLon'] = (float)$_GET['nearlon'];
298 $aSearches[0]['fRadius'] = 0.1;
301 $bSpecialTerms = false;
302 preg_match_all('/\\[(.*)=(.*)\\]/', $sQuery, $aSpecialTermsRaw, PREG_SET_ORDER);
303 $aSpecialTerms = array();
304 foreach($aSpecialTermsRaw as $aSpecialTerm)
306 $sQuery = str_replace($aSpecialTerm[0], ' ', $sQuery);
307 $aSpecialTerms[strtolower($aSpecialTerm[1])] = $aSpecialTerm[2];
310 preg_match_all('/\\[([a-zA-Z]*)\\]/', $sQuery, $aSpecialTermsRaw, PREG_SET_ORDER);
311 $aSpecialTerms = array();
312 if (isset($aStructuredQuery['amenity']) && $aStructuredQuery['amenity'])
314 $aSpecialTermsRaw[] = array('['.$aStructuredQuery['amenity'].']', $aStructuredQuery['amenity']);
315 unset($aStructuredQuery['amenity']);
317 foreach($aSpecialTermsRaw as $aSpecialTerm)
319 $sQuery = str_replace($aSpecialTerm[0], ' ', $sQuery);
320 $sToken = $oDB->getOne("select make_standard_name('".$aSpecialTerm[1]."') as string");
321 $sSQL = 'select * from (select word_id,word_token, word, class, type, location, country_code, operator';
322 $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';
323 if (CONST_Debug) var_Dump($sSQL);
324 $aSearchWords = $oDB->getAll($sSQL);
325 $aNewSearches = array();
326 foreach($aSearches as $aSearch)
328 foreach($aSearchWords as $aSearchTerm)
330 $aNewSearch = $aSearch;
331 if ($aSearchTerm['country_code'])
333 $aNewSearch['sCountryCode'] = strtolower($aSearchTerm['country_code']);
334 $aNewSearches[] = $aNewSearch;
335 $bSpecialTerms = true;
337 if ($aSearchTerm['class'])
339 $aNewSearch['sClass'] = $aSearchTerm['class'];
340 $aNewSearch['sType'] = $aSearchTerm['type'];
341 $aNewSearches[] = $aNewSearch;
342 $bSpecialTerms = true;
346 $aSearches = $aNewSearches;
349 // Split query into phrases
350 // Commas are used to reduce the search space by indicating where phrases split
351 if (sizeof($aStructuredQuery) > 0)
353 $aPhrases = $aStructuredQuery;
354 $bStructuredPhrases = true;
358 $aPhrases = explode(',',$sQuery);
359 $bStructuredPhrases = false;
363 // Convert each phrase to standard form
364 // Create a list of standard words
365 // Get all 'sets' of words
366 // Generate a complete list of all
368 foreach($aPhrases as $iPhrase => $sPhrase)
370 $aPhrase = $oDB->getRow("select make_standard_name('".pg_escape_string($sPhrase)."') as string");
371 if (PEAR::isError($aPhrase))
373 userError("Illegal query string (not an UTF-8 string): ".$sPhrase);
374 if (CONST_Debug) var_dump($aPhrase);
377 if (trim($aPhrase['string']))
379 $aPhrases[$iPhrase] = $aPhrase;
380 $aPhrases[$iPhrase]['words'] = explode(' ',$aPhrases[$iPhrase]['string']);
381 $aPhrases[$iPhrase]['wordsets'] = getWordSets($aPhrases[$iPhrase]['words']);
382 $aTokens = array_merge($aTokens, getTokensFromSets($aPhrases[$iPhrase]['wordsets']));
386 unset($aPhrases[$iPhrase]);
390 // reindex phrases - we make assumptions later on
391 $aPhraseTypes = array_keys($aPhrases);
392 $aPhrases = array_values($aPhrases);
394 if (sizeof($aTokens))
397 // Check which tokens we have, get the ID numbers
398 $sSQL = 'select word_id,word_token, word, class, type, location, country_code, operator, search_name_count';
399 $sSQL .= ' from word where word_token in ('.join(',',array_map("getDBQuoted",$aTokens)).')';
400 $sSQL .= ' and search_name_count < '.CONST_Max_Word_Frequency;
401 // $sSQL .= ' group by word_token, word, class, type, location, country_code';
403 if (CONST_Debug) var_Dump($sSQL);
405 $aValidTokens = array();
406 if (sizeof($aTokens))
407 $aDatabaseWords = $oDB->getAll($sSQL);
409 $aDatabaseWords = array();
410 if (PEAR::IsError($aDatabaseWords))
412 failInternalError("Could not get word tokens.", $sSQL, $aDatabaseWords);
414 $aPossibleMainWordIDs = array();
415 foreach($aDatabaseWords as $aToken)
417 if (isset($aValidTokens[$aToken['word_token']]))
419 $aValidTokens[$aToken['word_token']][] = $aToken;
423 $aValidTokens[$aToken['word_token']] = array($aToken);
425 if ($aToken['word_token'][0]==' ' && !$aToken['class'] && !$aToken['country_code']) $aPossibleMainWordIDs[$aToken['word_id']] = 1 + $aToken['search_name_count'];
427 if (CONST_Debug) var_Dump($aPhrases, $aValidTokens);
429 $aSuggestion = array();
430 $bSuggestion = false;
431 if (CONST_Suggestions_Enabled)
433 foreach($aPhrases as $iPhrase => $aPhrase)
435 if (!isset($aValidTokens[' '.$aPhrase['wordsets'][0][0]]))
437 $sQuotedPhrase = getDBQuoted(' '.$aPhrase['wordsets'][0][0]);
438 $aSuggestionWords = getWordSuggestions($oDB, $aPhrase['wordsets'][0][0]);
439 $aRow = $aSuggestionWords[0];
440 if ($aRow && $aRow['word'])
442 $aSuggestion[] = $aRow['word'];
447 $aSuggestion[] = $aPhrase['string'];
452 $aSuggestion[] = $aPhrase['string'];
456 if ($bSuggestion) $sSuggestion = join(', ',$aSuggestion);
458 // Try and calculate GB postcodes we might be missing
459 foreach($aTokens as $sToken)
461 // Source of gb postcodes is now definitive - always use
462 if (preg_match('/^([A-Z][A-Z]?[0-9][0-9A-Z]? ?[0-9])([A-Z][A-Z])$/', strtoupper(trim($sToken)), $aData))
464 if (substr($aData[1],-2,1) != ' ')
466 $aData[0] = substr($aData[0],0,strlen($aData[1]-1)).' '.substr($aData[0],strlen($aData[1]-1));
467 $aData[1] = substr($aData[1],0,-1).' '.substr($aData[1],-1,1);
469 $aGBPostcodeLocation = gbPostcodeCalculate($aData[0], $aData[1], $aData[2], $oDB);
470 if ($aGBPostcodeLocation)
472 $aValidTokens[$sToken] = $aGBPostcodeLocation;
477 foreach($aTokens as $sToken)
479 // Unknown single word token with a number - assume it is a house number
480 if (!isset($aValidTokens[' '.$sToken]) && strpos($sToken,' ') === false && preg_match('/[0-9]/', $sToken))
482 $aValidTokens[' '.$sToken] = array(array('class'=>'place','type'=>'house'));
486 // Any words that have failed completely?
489 // Start the search process
490 $aResultPlaceIDs = array();
493 Calculate all searches using aValidTokens i.e.
495 'Wodsworth Road, Sheffield' =>
499 0 1 (wodsworth)(road)
502 Score how good the search is so they can be ordered
504 foreach($aPhrases as $iPhrase => $sPhrase)
506 $aNewPhraseSearches = array();
507 if ($bStructuredPhrases) $sPhraseType = $aPhraseTypes[$iPhrase];
508 else $sPhraseType = '';
510 foreach($aPhrases[$iPhrase]['wordsets'] as $aWordset)
512 $aWordsetSearches = $aSearches;
514 // Add all words from this wordset
515 foreach($aWordset as $iToken => $sToken)
517 //echo "<br><b>$sToken</b>";
518 $aNewWordsetSearches = array();
520 foreach($aWordsetSearches as $aCurrentSearch)
523 //var_dump($aCurrentSearch);
526 // If the token is valid
527 if (isset($aValidTokens[' '.$sToken]))
529 foreach($aValidTokens[' '.$sToken] as $aSearchTerm)
531 $aSearch = $aCurrentSearch;
532 $aSearch['iSearchRank']++;
533 if (($sPhraseType == '' || $sPhraseType == 'country') && !empty($aSearchTerm['country_code']) && $aSearchTerm['country_code'] != '0')
535 if ($aSearch['sCountryCode'] === false)
537 $aSearch['sCountryCode'] = strtolower($aSearchTerm['country_code']);
538 // Country is almost always at the end of the string - increase score for finding it anywhere else (optimisation)
539 // If reverse order is enabled, it may appear at the beginning as well.
540 if (($iToken+1 != sizeof($aWordset) || $iPhrase+1 != sizeof($aPhrases)) &&
541 (!$bReverseInPlan || $iToken > 0 || $iPhrase > 0))
543 $aSearch['iSearchRank'] += 5;
545 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
548 elseif (isset($aSearchTerm['lat']) && $aSearchTerm['lat'] !== '' && $aSearchTerm['lat'] !== null)
550 if ($aSearch['fLat'] === '')
552 $aSearch['fLat'] = $aSearchTerm['lat'];
553 $aSearch['fLon'] = $aSearchTerm['lon'];
554 $aSearch['fRadius'] = $aSearchTerm['radius'];
555 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
558 elseif (($sPhraseType == '' || $sPhraseType == 'street') && $aSearchTerm['class'] == 'place' && $aSearchTerm['type'] == 'house')
560 if ($aSearch['sHouseNumber'] === '')
562 $aSearch['sHouseNumber'] = $sToken;
563 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
565 // Fall back to not searching for this item (better than nothing)
566 $aSearch = $aCurrentSearch;
567 $aSearch['iSearchRank'] += 1;
568 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
572 elseif ($sPhraseType == '' && $aSearchTerm['class'] !== '' && $aSearchTerm['class'] !== null)
574 if ($aSearch['sClass'] === '')
576 $aSearch['sOperator'] = $aSearchTerm['operator'];
577 $aSearch['sClass'] = $aSearchTerm['class'];
578 $aSearch['sType'] = $aSearchTerm['type'];
579 if (sizeof($aSearch['aName'])) $aSearch['sOperator'] = 'name';
580 else $aSearch['sOperator'] = 'near'; // near = in for the moment
582 // Do we have a shortcut id?
583 if ($aSearch['sOperator'] == 'name')
585 $sSQL = "select get_tagpair('".$aSearch['sClass']."', '".$aSearch['sType']."')";
586 if ($iAmenityID = $oDB->getOne($sSQL))
588 $aValidTokens[$aSearch['sClass'].':'.$aSearch['sType']] = array('word_id' => $iAmenityID);
589 $aSearch['aName'][$iAmenityID] = $iAmenityID;
590 $aSearch['sClass'] = '';
591 $aSearch['sType'] = '';
594 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
597 elseif (isset($aSearchTerm['word_id']) && $aSearchTerm['word_id'])
599 if (sizeof($aSearch['aName']))
601 if (($sPhraseType != 'street' && $sPhraseType != 'country') && (!isset($aValidTokens[$sToken]) || strlen($sToken) < 4 || strpos($sToken, ' ') !== false))
603 $aSearch['aAddress'][$aSearchTerm['word_id']] = $aSearchTerm['word_id'];
607 $aSearch['iSearchRank'] += 1000; // skip;
612 $aSearch['aName'][$aSearchTerm['word_id']] = $aSearchTerm['word_id'];
613 // $aSearch['iNamePhrase'] = $iPhrase;
615 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
619 if (isset($aValidTokens[$sToken]))
621 // Allow searching for a word - but at extra cost
622 foreach($aValidTokens[$sToken] as $aSearchTerm)
624 if (isset($aSearchTerm['word_id']) && $aSearchTerm['word_id'])
626 if (($sPhraseType != 'street') && sizeof($aCurrentSearch['aName']) && strlen($sToken) >= 4)
628 $aSearch = $aCurrentSearch;
629 $aSearch['iSearchRank'] += 1;
630 $aSearch['aAddress'][$aSearchTerm['word_id']] = $aSearchTerm['word_id'];
631 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
634 if (!sizeof($aCurrentSearch['aName']) || $aCurrentSearch['iNamePhrase'] == $iPhrase)
636 $aSearch = $aCurrentSearch;
637 $aSearch['iSearchRank'] += 2;
638 if (preg_match('#^[0-9]+$#', $sToken)) $aSearch['iSearchRank'] += 2;
639 $aSearch['aName'][$aSearchTerm['word_id']] = $aSearchTerm['word_id'];
640 $aSearch['iNamePhrase'] = $iPhrase;
641 if ($aSearch['iSearchRank'] < $iMaxRank) $aNewWordsetSearches[] = $aSearch;
648 // Allow skipping a word - but at EXTREAM cost
649 //$aSearch = $aCurrentSearch;
650 //$aSearch['iSearchRank']+=100;
651 //$aNewWordsetSearches[] = $aSearch;
655 usort($aNewWordsetSearches, 'bySearchRank');
656 $aWordsetSearches = array_slice($aNewWordsetSearches, 0, 50);
658 // var_Dump('<hr>',sizeof($aWordsetSearches)); exit;
660 $aNewPhraseSearches = array_merge($aNewPhraseSearches, $aNewWordsetSearches);
661 usort($aNewPhraseSearches, 'bySearchRank');
663 $aSearchHash = array();
664 foreach($aNewPhraseSearches as $iSearch => $aSearch)
666 $sHash = serialize($aSearch);
667 if (isset($aSearchHash[$sHash]))
669 unset($aNewPhraseSearches[$iSearch]);
673 $aSearchHash[$sHash] = 1;
677 $aNewPhraseSearches = array_slice($aNewPhraseSearches, 0, 50);
680 // Re-group the searches by their score, junk anything over 20 as just not worth trying
681 $aGroupedSearches = array();
682 foreach($aNewPhraseSearches as $aSearch)
684 if ($aSearch['iSearchRank'] < $iMaxRank)
686 if (!isset($aGroupedSearches[$aSearch['iSearchRank']])) $aGroupedSearches[$aSearch['iSearchRank']] = array();
687 $aGroupedSearches[$aSearch['iSearchRank']][] = $aSearch;
690 ksort($aGroupedSearches);
693 $aSearches = array();
694 foreach($aGroupedSearches as $iScore => $aNewSearches)
696 $iSearchCount += sizeof($aNewSearches);
697 $aSearches = array_merge($aSearches, $aNewSearches);
698 if ($iSearchCount > 50) break;
701 // if (CONST_Debug) _debugDumpGroupedSearches($aGroupedSearches, $aValidTokens);
707 // Re-group the searches by their score, junk anything over 20 as just not worth trying
708 $aGroupedSearches = array();
709 foreach($aSearches as $aSearch)
711 if ($aSearch['iSearchRank'] < $iMaxRank)
713 if (!isset($aGroupedSearches[$aSearch['iSearchRank']])) $aGroupedSearches[$aSearch['iSearchRank']] = array();
714 $aGroupedSearches[$aSearch['iSearchRank']][] = $aSearch;
717 ksort($aGroupedSearches);
720 if (CONST_Debug) var_Dump($aGroupedSearches);
724 $aCopyGroupedSearches = $aGroupedSearches;
725 foreach($aCopyGroupedSearches as $iGroup => $aSearches)
727 foreach($aSearches as $iSearch => $aSearch)
729 if (sizeof($aSearch['aAddress']))
731 $iReverseItem = array_pop($aSearch['aAddress']);
732 if (isset($aPossibleMainWordIDs[$iReverseItem]))
734 $aSearch['aAddress'] = array_merge($aSearch['aAddress'], $aSearch['aName']);
735 $aSearch['aName'] = array($iReverseItem);
736 $aGroupedSearches[$iGroup][] = $aSearch;
738 // $aReverseSearch['aName'][$iReverseItem] = $iReverseItem;
739 // $aGroupedSearches[$iGroup][] = $aReverseSearch;
745 if (CONST_Search_TryDroppedAddressTerms && sizeof($aStructuredQuery) > 0)
747 $aCopyGroupedSearches = $aGroupedSearches;
748 foreach($aCopyGroupedSearches as $iGroup => $aSearches)
750 foreach($aSearches as $iSearch => $aSearch)
752 $aReductionsList = array($aSearch['aAddress']);
753 $iSearchRank = $aSearch['iSearchRank'];
754 while(sizeof($aReductionsList) > 0)
757 if ($iSearchRank > iMaxRank) break 3;
758 $aNewReductionsList = array();
759 foreach($aReductionsList as $aReductionsWordList)
761 for ($iReductionWord = 0; $iReductionWord < sizeof($aReductionsWordList); $iReductionWord++)
763 $aReductionsWordListResult = array_merge(array_slice($aReductionsWordList, 0, $iReductionWord), array_slice($aReductionsWordList, $iReductionWord+1));
764 $aReverseSearch = $aSearch;
765 $aSearch['aAddress'] = $aReductionsWordListResult;
766 $aSearch['iSearchRank'] = $iSearchRank;
767 $aGroupedSearches[$iSearchRank][] = $aReverseSearch;
768 if (sizeof($aReductionsWordListResult) > 0)
770 $aNewReductionsList[] = $aReductionsWordListResult;
774 $aReductionsList = $aNewReductionsList;
778 ksort($aGroupedSearches);
781 // Filter out duplicate searches
782 $aSearchHash = array();
783 foreach($aGroupedSearches as $iGroup => $aSearches)
785 foreach($aSearches as $iSearch => $aSearch)
787 $sHash = serialize($aSearch);
788 if (isset($aSearchHash[$sHash]))
790 unset($aGroupedSearches[$iGroup][$iSearch]);
791 if (sizeof($aGroupedSearches[$iGroup]) == 0) unset($aGroupedSearches[$iGroup]);
795 $aSearchHash[$sHash] = 1;
800 if (CONST_Debug) _debugDumpGroupedSearches($aGroupedSearches, $aValidTokens);
804 foreach($aGroupedSearches as $iGroupedRank => $aSearches)
807 foreach($aSearches as $aSearch)
811 if (CONST_Debug) { echo "<hr><b>Search Loop, group $iGroupLoop, loop $iQueryLoop</b>"; }
812 if (CONST_Debug) _debugDumpGroupedSearches(array($iGroupedRank => array($aSearch)), $aValidTokens);
815 // Must have a location term
816 if (!sizeof($aSearch['aName']) && !sizeof($aSearch['aAddress']) && !$aSearch['fLon'])
818 if ($aSearch['sCountryCode'] && !$aSearch['sClass'] && !$aSearch['sHouseNumber'])
820 if (4 >= $iMinAddressRank && 4 <= $iMaxAddressRank)
822 $sSQL = "select place_id from placex where country_code='".$aSearch['sCountryCode']."' and rank_search = 4";
823 if ($sCountryCodesSQL) $sSQL .= " and country_code in ($sCountryCodesSQL)";
824 $sSQL .= " order by st_area(geometry) desc limit 1";
825 if (CONST_Debug) var_dump($sSQL);
826 $aPlaceIDs = $oDB->getCol($sSQL);
831 if (!$bBoundingBoxSearch && !$aSearch['fLon']) continue;
832 if (!$aSearch['sClass']) continue;
833 $sSQL = "select count(*) from pg_tables where tablename = 'place_classtype_".$aSearch['sClass']."_".$aSearch['sType']."'";
834 if ($oDB->getOne($sSQL))
836 $sSQL = "select place_id from place_classtype_".$aSearch['sClass']."_".$aSearch['sType']." ct";
837 if ($sCountryCodesSQL) $sSQL .= " join placex using (place_id)";
838 $sSQL .= " where st_contains($sViewboxSmallSQL, ct.centroid)";
839 if ($sCountryCodesSQL) $sSQL .= " and country_code in ($sCountryCodesSQL)";
840 if (sizeof($aExcludePlaceIDs))
842 $sSQL .= " and place_id not in (".join(',',$aExcludePlaceIDs).")";
844 if ($sViewboxCentreSQL) $sSQL .= " order by st_distance($sViewboxCentreSQL, ct.centroid) asc";
845 $sSQL .= " limit $iLimit";
846 if (CONST_Debug) var_dump($sSQL);
847 $aPlaceIDs = $oDB->getCol($sSQL);
849 // If excluded place IDs are given, it is fair to assume that
850 // there have been results in the small box, so no further
851 // expansion in that case.
852 if (!sizeof($aPlaceIDs) && !sizeof($aExcludePlaceIDs))
854 $sSQL = "select place_id from place_classtype_".$aSearch['sClass']."_".$aSearch['sType']." ct";
855 if ($sCountryCodesSQL) $sSQL .= " join placex using (place_id)";
856 $sSQL .= " where st_contains($sViewboxLargeSQL, ct.centroid)";
857 if ($sCountryCodesSQL) $sSQL .= " and country_code in ($sCountryCodesSQL)";
858 if ($sViewboxCentreSQL) $sSQL .= " order by st_distance($sViewboxCentreSQL, ct.centroid) asc";
859 $sSQL .= " limit $iLimit";
860 if (CONST_Debug) var_dump($sSQL);
861 $aPlaceIDs = $oDB->getCol($sSQL);
866 $sSQL = "select place_id from placex where class='".$aSearch['sClass']."' and type='".$aSearch['sType']."'";
867 $sSQL .= " and st_contains($sViewboxSmallSQL, geometry) and linked_place_id is null";
868 if ($sCountryCodesSQL) $sSQL .= " and country_code in ($sCountryCodesSQL)";
869 if ($sViewboxCentreSQL) $sSQL .= " order by st_distance($sViewboxCentreSQL, centroid) asc";
870 $sSQL .= " limit $iLimit";
871 if (CONST_Debug) var_dump($sSQL);
872 $aPlaceIDs = $oDB->getCol($sSQL);
878 $aPlaceIDs = array();
880 // First we need a position, either aName or fLat or both
884 // TODO: filter out the pointless search terms (2 letter name tokens and less)
885 // they might be right - but they are just too darned expensive to run
886 if (sizeof($aSearch['aName'])) $aTerms[] = "name_vector @> ARRAY[".join($aSearch['aName'],",")."]";
887 if (sizeof($aSearch['aAddress']) && $aSearch['aName'] != $aSearch['aAddress'])
889 // For infrequent name terms disable index usage for address
890 if (CONST_Search_NameOnlySearchFrequencyThreshold &&
891 sizeof($aSearch['aName']) == 1 &&
892 $aPossibleMainWordIDs[$aSearch['aName'][reset($aSearch['aName'])]] < CONST_Search_NameOnlySearchFrequencyThreshold)
894 $aTerms[] = "array_cat(nameaddress_vector,ARRAY[]::integer[]) @> ARRAY[".join($aSearch['aAddress'],",")."]";
898 $aTerms[] = "nameaddress_vector @> ARRAY[".join($aSearch['aAddress'],",")."]";
901 if ($aSearch['sCountryCode']) $aTerms[] = "country_code = '".pg_escape_string($aSearch['sCountryCode'])."'";
902 if ($aSearch['sHouseNumber']) $aTerms[] = "address_rank in (26,27)";
903 if ($aSearch['fLon'] && $aSearch['fLat'])
905 $aTerms[] = "ST_DWithin(centroid, ST_SetSRID(ST_Point(".$aSearch['fLon'].",".$aSearch['fLat']."),4326), ".$aSearch['fRadius'].")";
906 $aOrder[] = "ST_Distance(centroid, ST_SetSRID(ST_Point(".$aSearch['fLon'].",".$aSearch['fLat']."),4326)) ASC";
908 if (sizeof($aExcludePlaceIDs))
910 $aTerms[] = "place_id not in (".join(',',$aExcludePlaceIDs).")";
912 if ($sCountryCodesSQL)
914 $aTerms[] = "country_code in ($sCountryCodesSQL)";
917 if ($bBoundingBoxSearch) $aTerms[] = "centroid && $sViewboxSmallSQL";
918 if ($sNearPointSQL) $aOrder[] = "ST_Distance($sNearPointSQL, centroid) asc";
920 $sImportanceSQL = 'case when importance = 0 OR importance IS NULL then 0.75-(search_rank::float/40) else importance end';
922 if ($sViewboxSmallSQL) $sImportanceSQL .= " * case when ST_Contains($sViewboxSmallSQL, centroid) THEN 1 ELSE 0.5 END";
923 if ($sViewboxLargeSQL) $sImportanceSQL .= " * case when ST_Contains($sViewboxLargeSQL, centroid) THEN 1 ELSE 0.5 END";
924 $aOrder[] = "$sImportanceSQL DESC";
928 $sSQL = "select place_id";
929 $sSQL .= " from search_name";
930 $sSQL .= " where ".join(' and ',$aTerms);
931 $sSQL .= " order by ".join(', ',$aOrder);
932 if ($aSearch['sHouseNumber'] || $aSearch['sClass'])
933 $sSQL .= " limit 50";
934 elseif (!sizeof($aSearch['aName']) && !sizeof($aSearch['aAddress']) && $aSearch['sClass'])
937 $sSQL .= " limit ".$iLimit;
939 if (CONST_Debug) { var_dump($sSQL); }
940 $aViewBoxPlaceIDs = $oDB->getAll($sSQL);
941 if (PEAR::IsError($aViewBoxPlaceIDs))
943 failInternalError("Could not get places for search terms.", $sSQL, $aViewBoxPlaceIDs);
945 //var_dump($aViewBoxPlaceIDs);
946 // Did we have an viewbox matches?
947 $aPlaceIDs = array();
948 $bViewBoxMatch = false;
949 foreach($aViewBoxPlaceIDs as $aViewBoxRow)
951 // if ($bViewBoxMatch == 1 && $aViewBoxRow['in_small'] == 'f') break;
952 // if ($bViewBoxMatch == 2 && $aViewBoxRow['in_large'] == 'f') break;
953 // if ($aViewBoxRow['in_small'] == 't') $bViewBoxMatch = 1;
954 // else if ($aViewBoxRow['in_large'] == 't') $bViewBoxMatch = 2;
955 $aPlaceIDs[] = $aViewBoxRow['place_id'];
958 //var_Dump($aPlaceIDs);
961 if ($aSearch['sHouseNumber'] && sizeof($aPlaceIDs))
963 $aRoadPlaceIDs = $aPlaceIDs;
964 $sPlaceIDs = join(',',$aPlaceIDs);
966 // Now they are indexed look for a house attached to a street we found
967 $sHouseNumberRegex = '\\\\m'.str_replace(' ','[-,/ ]',$aSearch['sHouseNumber']).'\\\\M';
968 $sSQL = "select place_id from placex where parent_place_id in (".$sPlaceIDs.") and housenumber ~* E'".$sHouseNumberRegex."'";
969 if (sizeof($aExcludePlaceIDs))
971 $sSQL .= " and place_id not in (".join(',',$aExcludePlaceIDs).")";
973 $sSQL .= " limit $iLimit";
974 if (CONST_Debug) var_dump($sSQL);
975 $aPlaceIDs = $oDB->getCol($sSQL);
977 // If not try the aux fallback table
978 if (!sizeof($aPlaceIDs))
980 $sSQL = "select place_id from location_property_aux where parent_place_id in (".$sPlaceIDs.") and housenumber = '".pg_escape_string($aSearch['sHouseNumber'])."'";
981 if (sizeof($aExcludePlaceIDs))
983 $sSQL .= " and place_id not in (".join(',',$aExcludePlaceIDs).")";
985 // $sSQL .= " limit $iLimit";
986 if (CONST_Debug) var_dump($sSQL);
987 $aPlaceIDs = $oDB->getCol($sSQL);
990 if (!sizeof($aPlaceIDs))
992 $sSQL = "select place_id from location_property_tiger where parent_place_id in (".$sPlaceIDs.") and housenumber = '".pg_escape_string($aSearch['sHouseNumber'])."'";
993 if (sizeof($aExcludePlaceIDs))
995 $sSQL .= " and place_id not in (".join(',',$aExcludePlaceIDs).")";
997 // $sSQL .= " limit $iLimit";
998 if (CONST_Debug) var_dump($sSQL);
999 $aPlaceIDs = $oDB->getCol($sSQL);
1002 // Fallback to the road
1003 if (!sizeof($aPlaceIDs) && preg_match('/[0-9]+/', $aSearch['sHouseNumber']))
1005 $aPlaceIDs = $aRoadPlaceIDs;
1010 if ($aSearch['sClass'] && sizeof($aPlaceIDs))
1012 $sPlaceIDs = join(',',$aPlaceIDs);
1014 $aClassPlaceIDs = array();
1016 if (!$aSearch['sOperator'] || $aSearch['sOperator'] == 'name')
1018 // If they were searching for a named class (i.e. 'Kings Head pub') then we might have an extra match
1019 $sSQL = "select place_id from placex where place_id in ($sPlaceIDs) and class='".$aSearch['sClass']."' and type='".$aSearch['sType']."'";
1020 $sSQL .= " and linked_place_id is null";
1021 if ($sCountryCodesSQL) $sSQL .= " and country_code in ($sCountryCodesSQL)";
1022 $sSQL .= " order by rank_search asc limit $iLimit";
1023 if (CONST_Debug) var_dump($sSQL);
1024 $aClassPlaceIDs = $oDB->getCol($sSQL);
1027 if (!$aSearch['sOperator'] || $aSearch['sOperator'] == 'near') // & in
1029 $sSQL = "select count(*) from pg_tables where tablename = 'place_classtype_".$aSearch['sClass']."_".$aSearch['sType']."'";
1030 $bCacheTable = $oDB->getOne($sSQL);
1032 $sSQL = "select min(rank_search) from placex where place_id in ($sPlaceIDs)";
1034 if (CONST_Debug) var_dump($sSQL);
1035 $iMaxRank = ((int)$oDB->getOne($sSQL));
1037 // For state / country level searches the normal radius search doesn't work very well
1038 $sPlaceGeom = false;
1039 if ($iMaxRank < 9 && $bCacheTable)
1041 // Try and get a polygon to search in instead
1042 $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";
1043 if (CONST_Debug) var_dump($sSQL);
1044 $sPlaceGeom = $oDB->getOne($sSQL);
1054 $sSQL = "select place_id from placex where place_id in ($sPlaceIDs) and rank_search < $iMaxRank";
1055 if (CONST_Debug) var_dump($sSQL);
1056 $aPlaceIDs = $oDB->getCol($sSQL);
1057 $sPlaceIDs = join(',',$aPlaceIDs);
1060 if ($sPlaceIDs || $sPlaceGeom)
1066 // More efficient - can make the range bigger
1070 if ($sNearPointSQL) $sOrderBySQL = "ST_Distance($sNearPointSQL, l.centroid)";
1071 else if ($sPlaceIDs) $sOrderBySQL = "ST_Distance(l.centroid, f.geometry)";
1072 else if ($sPlaceGeom) $sOrderBysSQL = "ST_Distance(st_centroid('".$sPlaceGeom."'), l.centroid)";
1074 $sSQL = "select distinct l.place_id".($sOrderBySQL?','.$sOrderBySQL:'')." from place_classtype_".$aSearch['sClass']."_".$aSearch['sType']." as l";
1075 if ($sCountryCodesSQL) $sSQL .= " join placex as lp using (place_id)";
1078 $sSQL .= ",placex as f where ";
1079 $sSQL .= "f.place_id in ($sPlaceIDs) and ST_DWithin(l.centroid, f.centroid, $fRange) ";
1084 $sSQL .= "ST_Contains('".$sPlaceGeom."', l.centroid) ";
1086 if (sizeof($aExcludePlaceIDs))
1088 $sSQL .= " and l.place_id not in (".join(',',$aExcludePlaceIDs).")";
1090 if ($sCountryCodesSQL) $sSQL .= " and lp.country_code in ($sCountryCodesSQL)";
1091 if ($sOrderBySQL) $sSQL .= "order by ".$sOrderBySQL." asc";
1092 if ($iOffset) $sSQL .= " offset $iOffset";
1093 $sSQL .= " limit $iLimit";
1094 if (CONST_Debug) var_dump($sSQL);
1095 $aClassPlaceIDs = array_merge($aClassPlaceIDs, $oDB->getCol($sSQL));
1099 if (isset($aSearch['fRadius']) && $aSearch['fRadius']) $fRange = $aSearch['fRadius'];
1102 if ($sNearPointSQL) $sOrderBySQL = "ST_Distance($sNearPointSQL, l.geometry)";
1103 else $sOrderBySQL = "ST_Distance(l.geometry, f.geometry)";
1105 $sSQL = "select distinct l.place_id".($sOrderBysSQL?','.$sOrderBysSQL:'')." from placex as l,placex as f where ";
1106 $sSQL .= "f.place_id in ( $sPlaceIDs) and ST_DWithin(l.geometry, f.centroid, $fRange) ";
1107 $sSQL .= "and l.class='".$aSearch['sClass']."' and l.type='".$aSearch['sType']."' ";
1108 if (sizeof($aExcludePlaceIDs))
1110 $sSQL .= " and l.place_id not in (".join(',',$aExcludePlaceIDs).")";
1112 if ($sCountryCodesSQL) $sSQL .= " and l.country_code in ($sCountryCodesSQL)";
1113 if ($sOrderBy) $sSQL .= "order by ".$OrderBysSQL." asc";
1114 if ($iOffset) $sSQL .= " offset $iOffset";
1115 $sSQL .= " limit $iLimit";
1116 if (CONST_Debug) var_dump($sSQL);
1117 $aClassPlaceIDs = array_merge($aClassPlaceIDs, $oDB->getCol($sSQL));
1122 $aPlaceIDs = $aClassPlaceIDs;
1128 if (PEAR::IsError($aPlaceIDs))
1130 failInternalError("Could not get place IDs from tokens." ,$sSQL, $aPlaceIDs);
1133 if (CONST_Debug) { echo "<br><b>Place IDs:</b> "; var_Dump($aPlaceIDs); }
1135 foreach($aPlaceIDs as $iPlaceID)
1137 $aResultPlaceIDs[$iPlaceID] = $iPlaceID;
1139 if ($iQueryLoop > 20) break;
1143 if (isset($aResultPlaceIDs) && sizeof($aResultPlaceIDs)) break;
1144 if ($iGroupLoop > 4) break;
1145 if ($iQueryLoop > 30) break;
1148 // Did we find anything?
1149 if (isset($aResultPlaceIDs) && sizeof($aResultPlaceIDs))
1151 //var_Dump($aResultPlaceIDs);exit;
1152 // Get the details for display (is this a redundant extra step?)
1153 $sPlaceIDs = join(',',$aResultPlaceIDs);
1154 $sOrderSQL = 'CASE ';
1155 foreach(array_keys($aResultPlaceIDs) as $iOrder => $iPlaceID)
1157 $sOrderSQL .= 'when min(place_id) = '.$iPlaceID.' then '.$iOrder.' ';
1159 $sOrderSQL .= ' ELSE 10000000 END';
1160 $sSQL = "select osm_type,osm_id,class,type,admin_level,rank_search,rank_address,min(place_id) as place_id,country_code,";
1161 $sSQL .= "get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,";
1162 $sSQL .= "get_name_by_language(name, $sLanguagePrefArraySQL) as placename,";
1163 $sSQL .= "get_name_by_language(name, ARRAY['ref']) as ref,";
1164 $sSQL .= "avg(ST_X(centroid)) as lon,avg(ST_Y(centroid)) as lat, ";
1165 // $sSQL .= $sOrderSQL." as porder, ";
1166 $sSQL .= "coalesce(importance,0.75-(rank_search::float/40)) as importance ";
1167 $sSQL .= "from placex where place_id in ($sPlaceIDs) ";
1168 $sSQL .= "and placex.rank_address between $iMinAddressRank and $iMaxAddressRank ";
1169 if ($sAllowedTypesSQLList) $sSQL .= "and placex.class in $sAllowedTypesSQLList ";
1170 $sSQL .= "and linked_place_id is null ";
1171 $sSQL .= "group by osm_type,osm_id,class,type,admin_level,rank_search,rank_address,country_code,importance";
1172 if (!$bDeDupe) $sSQL .= ",place_id";
1173 $sSQL .= ",get_address_by_language(place_id, $sLanguagePrefArraySQL) ";
1174 $sSQL .= ",get_name_by_language(name, $sLanguagePrefArraySQL) ";
1175 $sSQL .= ",get_name_by_language(name, ARRAY['ref']) ";
1177 $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,";
1178 $sSQL .= "get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,";
1179 $sSQL .= "null as placename,";
1180 $sSQL .= "null as ref,";
1181 $sSQL .= "avg(ST_X(centroid)) as lon,avg(ST_Y(centroid)) as lat, ";
1182 // $sSQL .= $sOrderSQL." as porder, ";
1183 $sSQL .= "-0.15 as importance ";
1184 $sSQL .= "from location_property_tiger where place_id in ($sPlaceIDs) ";
1185 $sSQL .= "and 30 between $iMinAddressRank and $iMaxAddressRank ";
1186 $sSQL .= "group by place_id";
1187 if (!$bDeDupe) $sSQL .= ",place_id";
1189 $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,";
1190 $sSQL .= "get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,";
1191 $sSQL .= "null as placename,";
1192 $sSQL .= "null as ref,";
1193 $sSQL .= "avg(ST_X(centroid)) as lon,avg(ST_Y(centroid)) as lat, ";
1194 // $sSQL .= $sOrderSQL." as porder, ";
1195 $sSQL .= "-0.10 as importance ";
1196 $sSQL .= "from location_property_aux where place_id in ($sPlaceIDs) ";
1197 $sSQL .= "and 30 between $iMinAddressRank and $iMaxAddressRank ";
1198 $sSQL .= "group by place_id";
1199 if (!$bDeDupe) $sSQL .= ",place_id";
1200 $sSQL .= ",get_address_by_language(place_id, $sLanguagePrefArraySQL) ";
1201 $sSQL .= "order by importance desc";
1202 // $sSQL .= "order by rank_search,rank_address,porder asc";
1203 if (CONST_Debug) { echo "<hr>"; var_dump($sSQL); }
1204 $aSearchResults = $oDB->getAll($sSQL);
1205 //var_dump($sSQL,$aSearchResults);exit;
1207 if (PEAR::IsError($aSearchResults))
1209 failInternalError("Could not get details for place.", $sSQL, $aSearchResults);
1212 } // end if ($sQuery)
1215 if (isset($_GET['nearlat']) && trim($_GET['nearlat'])!=='' && isset($_GET['nearlon']) && trim($_GET['nearlon']) !== '')
1217 $iPlaceID = geocodeReverse($_GET['nearlat'], $_GET['nearlon']);
1218 $aResultPlaceIDs = array($iPlaceID);
1220 // TODO: this needs refactoring!
1222 // Get the details for display (is this a redundant extra step?)
1223 $sPlaceIDs = join(',',$aResultPlaceIDs);
1224 $sOrderSQL = 'CASE ';
1225 foreach(array_keys($aResultPlaceIDs) as $iOrder => $iPlaceID)
1227 $sOrderSQL .= 'when min(place_id) = '.$iPlaceID.' then '.$iOrder.' ';
1229 $sOrderSQL .= ' ELSE 10000000 END';
1230 $sSQL = "select osm_type,osm_id,class,type,admin_level,rank_search,rank_address,min(place_id) as place_id,country_code,";
1231 $sSQL .= "get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,";
1232 $sSQL .= "get_name_by_language(name, $sLanguagePrefArraySQL) as placename,";
1233 $sSQL .= "get_name_by_language(name, ARRAY['ref']) as ref,";
1234 $sSQL .= "avg(ST_X(centroid)) as lon,avg(ST_Y(centroid)) as lat, ";
1235 // $sSQL .= $sOrderSQL." as porder, ";
1236 $sSQL .= "coalesce(importance,0.75-(rank_search::float/40)) as importance ";
1237 $sSQL .= "from placex where place_id in ($sPlaceIDs) ";
1238 $sSQL .= "and placex.rank_address between $iMinAddressRank and $iMaxAddressRank ";
1239 $sSQL .= "group by osm_type,osm_id,class,type,admin_level,rank_search,rank_address,country_code,importance";
1240 if (!$bDeDupe) $sSQL .= ",place_id";
1241 $sSQL .= ",get_address_by_language(place_id, $sLanguagePrefArraySQL) ";
1242 $sSQL .= ",get_name_by_language(name, $sLanguagePrefArraySQL) ";
1243 $sSQL .= ",get_name_by_language(name, ARRAY['ref']) ";
1245 $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,";
1246 $sSQL .= "get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,";
1247 $sSQL .= "null as placename,";
1248 $sSQL .= "null as ref,";
1249 $sSQL .= "avg(ST_X(centroid)) as lon,avg(ST_Y(centroid)) as lat, ";
1250 // $sSQL .= $sOrderSQL." as porder, ";
1251 $sSQL .= "-0.15 as importance ";
1252 $sSQL .= "from location_property_tiger where place_id in ($sPlaceIDs) ";
1253 $sSQL .= "and 30 between $iMinAddressRank and $iMaxAddressRank ";
1254 $sSQL .= "group by place_id";
1255 if (!$bDeDupe) $sSQL .= ",place_id";
1257 $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,";
1258 $sSQL .= "get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,";
1259 $sSQL .= "null as placename,";
1260 $sSQL .= "null as ref,";
1261 $sSQL .= "avg(ST_X(centroid)) as lon,avg(ST_Y(centroid)) as lat, ";
1262 // $sSQL .= $sOrderSQL." as porder, ";
1263 $sSQL .= "-0.10 as importance ";
1264 $sSQL .= "from location_property_aux where place_id in ($sPlaceIDs) ";
1265 $sSQL .= "and 30 between $iMinAddressRank and $iMaxAddressRank ";
1266 $sSQL .= "group by place_id";
1267 if (!$bDeDupe) $sSQL .= ",place_id";
1268 $sSQL .= ",get_address_by_language(place_id, $sLanguagePrefArraySQL) ";
1269 $sSQL .= "order by importance desc";
1270 // $sSQL .= "order by rank_search,rank_address,porder asc";
1271 if (CONST_Debug) { echo "<hr>", var_dump($sSQL); }
1272 $aSearchResults = $oDB->getAll($sSQL);
1273 //var_dump($sSQL,$aSearchResults);exit;
1275 if (PEAR::IsError($aSearchResults))
1277 failInternalError("Could not get details for place (near).", $sSQL, $aSearchResults);
1283 $sSearchResult = '';
1284 if (!sizeof($aSearchResults) && isset($_GET['q']) && $_GET['q'])
1286 $sSearchResult = 'No Results Found';
1288 //var_Dump($aSearchResults);
1290 $aClassType = getClassTypesWithImportance();
1291 $aRecheckWords = preg_split('/\b/',$sQuery);
1292 foreach($aRecheckWords as $i => $sWord)
1294 if (!$sWord) unset($aRecheckWords[$i]);
1296 foreach($aSearchResults as $iResNum => $aResult)
1298 if (CONST_Search_AreaPolygons)
1300 // Get the bounding box and outline polygon
1301 $sSQL = "select place_id,numfeatures,area,outline,";
1302 $sSQL .= "ST_Y(ST_PointN(ST_ExteriorRing(Box2D(outline)),4)) as minlat,ST_Y(ST_PointN(ST_ExteriorRing(Box2D(outline)),2)) as maxlat,";
1303 $sSQL .= "ST_X(ST_PointN(ST_ExteriorRing(Box2D(outline)),1)) as minlon,ST_X(ST_PointN(ST_ExteriorRing(Box2D(outline)),3)) as maxlon,";
1304 $sSQL .= "ST_AsText(outline) as outlinestring from get_place_boundingbox_quick(".$aResult['place_id'].")";
1306 $sSQL = "select place_id,0 as numfeatures,st_area(geometry) as area,";
1307 $sSQL .= "ST_Y(centroid) as centrelat,ST_X(centroid) as centrelon,";
1308 $sSQL .= "ST_Y(ST_PointN(ST_ExteriorRing(Box2D(geometry)),4)) as minlat,ST_Y(ST_PointN(ST_ExteriorRing(Box2D(geometry)),2)) as maxlat,";
1309 $sSQL .= "ST_X(ST_PointN(ST_ExteriorRing(Box2D(geometry)),1)) as minlon,ST_X(ST_PointN(ST_ExteriorRing(Box2D(geometry)),3)) as maxlon";
1310 if ($bAsGeoJSON) $sSQL .= ",ST_AsGeoJSON(geometry) as asgeojson";
1311 if ($bAsKML) $sSQL .= ",ST_AsKML(geometry) as askml";
1312 if ($bAsSVG) $sSQL .= ",ST_AsSVG(geometry) as assvg";
1313 if ($bAsText || $bShowPolygons) $sSQL .= ",ST_AsText(geometry) as astext";
1314 $sSQL .= " from placex where place_id = ".$aResult['place_id'].' and st_geometrytype(Box2D(geometry)) = \'ST_Polygon\'';
1315 $aPointPolygon = $oDB->getRow($sSQL);
1316 if (PEAR::IsError($aPointPolygon))
1318 failInternalError("Could not get outline.", $sSQL, $aPointPolygon);
1320 if ($aPointPolygon['place_id'])
1322 if ($bAsGeoJSON) $aResult['asgeojson'] = $aPointPolygon['asgeojson'];
1323 if ($bAsKML) $aResult['askml'] = $aPointPolygon['askml'];
1324 if ($bAsSVG) $aResult['assvg'] = $aPointPolygon['assvg'];
1325 if ($bAsText) $aResult['astext'] = $aPointPolygon['astext'];
1327 if ($aPointPolygon['centrelon'] !== null && $aPointPolygon['centrelat'] !== null ) {
1328 $aResult['lat'] = $aPointPolygon['centrelat'];
1329 $aResult['lon'] = $aPointPolygon['centrelon'];
1333 // Translate geometary string to point array
1334 if (preg_match('#POLYGON\\(\\(([- 0-9.,]+)#',$aPointPolygon['astext'],$aMatch))
1336 preg_match_all('/(-?[0-9.]+) (-?[0-9.]+)/',$aMatch[1],$aPolyPoints,PREG_SET_ORDER);
1338 elseif (preg_match('#MULTIPOLYGON\\(\\(\\(([- 0-9.,]+)#',$aPointPolygon['astext'],$aMatch))
1340 preg_match_all('/(-?[0-9.]+) (-?[0-9.]+)/',$aMatch[1],$aPolyPoints,PREG_SET_ORDER);
1342 elseif (preg_match('#POINT\\((-?[0-9.]+) (-?[0-9.]+)\\)#',$aPointPolygon['astext'],$aMatch))
1345 $iSteps = ($fRadius * 40000)^2;
1346 $fStepSize = (2*pi())/$iSteps;
1347 $aPolyPoints = array();
1348 for($f = 0; $f < 2*pi(); $f += $fStepSize)
1350 $aPolyPoints[] = array('',$aMatch[1]+($fRadius*sin($f)),$aMatch[2]+($fRadius*cos($f)));
1352 $aPointPolygon['minlat'] = $aPointPolygon['minlat'] - $fRadius;
1353 $aPointPolygon['maxlat'] = $aPointPolygon['maxlat'] + $fRadius;
1354 $aPointPolygon['minlon'] = $aPointPolygon['minlon'] - $fRadius;
1355 $aPointPolygon['maxlon'] = $aPointPolygon['maxlon'] + $fRadius;
1359 // Output data suitable for display (points and a bounding box)
1360 if ($bShowPolygons && isset($aPolyPoints))
1362 $aResult['aPolyPoints'] = array();
1363 foreach($aPolyPoints as $aPoint)
1365 $aResult['aPolyPoints'][] = array($aPoint[1], $aPoint[2]);
1368 $aResult['aBoundingBox'] = array($aPointPolygon['minlat'],$aPointPolygon['maxlat'],$aPointPolygon['minlon'],$aPointPolygon['maxlon']);
1372 if (!isset($aResult['aBoundingBox']))
1375 $fDiameter = 0.0001;
1377 if (isset($aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['defdiameter'])
1378 && $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['defdiameter'])
1380 $fDiameter = $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['defzoom'];
1382 elseif (isset($aClassType[$aResult['class'].':'.$aResult['type']]['defdiameter'])
1383 && $aClassType[$aResult['class'].':'.$aResult['type']]['defdiameter'])
1385 $fDiameter = $aClassType[$aResult['class'].':'.$aResult['type']]['defdiameter'];
1387 $fRadius = $fDiameter / 2;
1389 $iSteps = max(8,min(100,$fRadius * 3.14 * 100000));
1390 $fStepSize = (2*pi())/$iSteps;
1391 $aPolyPoints = array();
1392 for($f = 0; $f < 2*pi(); $f += $fStepSize)
1394 $aPolyPoints[] = array('',$aResult['lon']+($fRadius*sin($f)),$aResult['lat']+($fRadius*cos($f)));
1396 $aPointPolygon['minlat'] = $aResult['lat'] - $fRadius;
1397 $aPointPolygon['maxlat'] = $aResult['lat'] + $fRadius;
1398 $aPointPolygon['minlon'] = $aResult['lon'] - $fRadius;
1399 $aPointPolygon['maxlon'] = $aResult['lon'] + $fRadius;
1401 // Output data suitable for display (points and a bounding box)
1404 $aResult['aPolyPoints'] = array();
1405 foreach($aPolyPoints as $aPoint)
1407 $aResult['aPolyPoints'][] = array($aPoint[1], $aPoint[2]);
1410 $aResult['aBoundingBox'] = array($aPointPolygon['minlat'],$aPointPolygon['maxlat'],$aPointPolygon['minlon'],$aPointPolygon['maxlon']);
1413 // Is there an icon set for this type of result?
1414 if (isset($aClassType[$aResult['class'].':'.$aResult['type']]['icon'])
1415 && $aClassType[$aResult['class'].':'.$aResult['type']]['icon'])
1417 $aResult['icon'] = CONST_Website_BaseURL.'images/mapicons/'.$aClassType[$aResult['class'].':'.$aResult['type']]['icon'].'.p.20.png';
1420 if (isset($aClassType[$aResult['class'].':'.$aResult['type']]['label'])
1421 && $aClassType[$aResult['class'].':'.$aResult['type']]['label'])
1423 $aResult['label'] = $aClassType[$aResult['class'].':'.$aResult['type']]['label'];
1426 if ($bShowAddressDetails)
1428 $aResult['address'] = getAddressDetails($oDB, $sLanguagePrefArraySQL, $aResult['place_id'], $aResult['country_code']);
1429 //var_dump($aResult['address']);
1433 // Adjust importance for the number of exact string matches in the result
1434 $aResult['importance'] = max(0.001,$aResult['importance']);
1436 $sAddress = $aResult['langaddress'];
1437 foreach($aRecheckWords as $i => $sWord)
1439 if (stripos($sAddress, $sWord)!==false) $iCountWords++;
1441 $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
1443 //if (CONST_Debug) var_dump($aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']);
1445 if (isset($aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['importance'])
1446 && $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['importance'])
1448 $aResult['importance'] = $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['importance'];
1450 elseif (isset($aClassType[$aResult['class'].':'.$aResult['type']]['importance'])
1451 && $aClassType[$aResult['class'].':'.$aResult['type']]['importance'])
1453 $aResult['importance'] = $aClassType[$aResult['class'].':'.$aResult['type']]['importance'];
1457 $aResult['importance'] = 1000000000000000;
1460 $aResult['name'] = $aResult['langaddress'];
1461 $aResult['foundorder'] = $iResNum;
1462 $aSearchResults[$iResNum] = $aResult;
1464 uasort($aSearchResults, 'byImportance');
1466 $aOSMIDDone = array();
1467 $aClassTypeNameDone = array();
1468 $aToFilter = $aSearchResults;
1469 $aSearchResults = array();
1472 foreach($aToFilter as $iResNum => $aResult)
1474 if ($aResult['type'] == 'adminitrative') $aResult['type'] = 'administrative';
1475 $aExcludePlaceIDs[$aResult['place_id']] = $aResult['place_id'];
1478 $fLat = $aResult['lat'];
1479 $fLon = $aResult['lon'];
1480 if (isset($aResult['zoom'])) $iZoom = $aResult['zoom'];
1483 if (!$bDeDupe || (!isset($aOSMIDDone[$aResult['osm_type'].$aResult['osm_id']])
1484 && !isset($aClassTypeNameDone[$aResult['osm_type'].$aResult['class'].$aResult['name']])))
1486 $aOSMIDDone[$aResult['osm_type'].$aResult['osm_id']] = true;
1487 $aClassTypeNameDone[$aResult['osm_type'].$aResult['class'].$aResult['name']] = true;
1488 $aSearchResults[] = $aResult;
1491 // Absolute limit on number of results
1492 if (sizeof($aSearchResults) >= $iFinalLimit) break;
1495 $sDataDate = $oDB->getOne("select TO_CHAR(lastimportdate - '1 day'::interval,'YYYY/MM/DD') from import_status limit 1");
1497 if (isset($_GET['nearlat']) && isset($_GET['nearlon']))
1499 $sQuery .= ' ['.$_GET['nearlat'].','.$_GET['nearlon'].']';
1504 logEnd($oDB, $hLog, sizeof($aToFilter));
1506 $sMoreURL = CONST_Website_BaseURL.'search?format='.urlencode($sOutputFormat).'&exclude_place_ids='.join(',',$aExcludePlaceIDs);
1507 if (isset($_SERVER["HTTP_ACCEPT_LANGUAGE"])) $sMoreURL .= '&accept-language='.$_SERVER["HTTP_ACCEPT_LANGUAGE"];
1508 if ($bShowPolygons) $sMoreURL .= '&polygon=1';
1509 if ($bShowAddressDetails) $sMoreURL .= '&addressdetails=1';
1510 if (isset($_GET['viewbox']) && $_GET['viewbox']) $sMoreURL .= '&viewbox='.urlencode($_GET['viewbox']);
1511 if (isset($_GET['nearlat']) && isset($_GET['nearlon'])) $sMoreURL .= '&nearlat='.(float)$_GET['nearlat'].'&nearlon='.(float)$_GET['nearlon'];
1514 $sSuggestionURL = $sMoreURL.'&q='.urlencode($sSuggestion);
1516 $sMoreURL .= '&q='.urlencode($sQuery);
1518 if (CONST_Debug) exit;
1520 include(CONST_BasePath.'/lib/template/search-'.$sOutputFormat.'.php');