5 require_once(CONST_BasePath.'/lib/PlaceLookup.php');
6 require_once(CONST_BasePath.'/lib/ReverseGeocode.php');
7 require_once(CONST_BasePath.'/lib/SearchDescription.php');
8 require_once(CONST_BasePath.'/lib/SearchContext.php');
14 protected $aLangPrefOrder = array();
16 protected $bIncludeAddressDetails = false;
17 protected $bIncludeExtraTags = false;
18 protected $bIncludeNameDetails = false;
20 protected $bIncludePolygonAsPoints = false;
21 protected $bIncludePolygonAsText = false;
22 protected $bIncludePolygonAsGeoJSON = false;
23 protected $bIncludePolygonAsKML = false;
24 protected $bIncludePolygonAsSVG = false;
25 protected $fPolygonSimplificationThreshold = 0.0;
27 protected $aExcludePlaceIDs = array();
28 protected $bDeDupe = true;
29 protected $bReverseInPlan = false;
31 protected $iLimit = 20;
32 protected $iFinalLimit = 10;
33 protected $iOffset = 0;
34 protected $bFallback = false;
36 protected $aCountryCodes = false;
38 protected $bBoundedSearch = false;
39 protected $aViewBox = false;
40 protected $aRoutePoints = false;
41 protected $aRouteWidth = false;
43 protected $iMaxRank = 20;
44 protected $iMinAddressRank = 0;
45 protected $iMaxAddressRank = 30;
46 protected $aAddressRankList = array();
47 protected $exactMatchCache = array();
49 protected $sAllowedTypesSQLList = false;
51 protected $sQuery = false;
52 protected $aStructuredQuery = false;
54 protected $oNormalizer = null;
57 public function __construct(&$oDB)
60 $this->oNormalizer = \Transliterator::createFromRules(CONST_Term_Normalization_Rules);
63 private function normTerm($sTerm)
65 if ($this->oNormalizer === null) {
69 return $this->oNormalizer->transliterate($sTerm);
72 public function setReverseInPlan($bReverse)
74 $this->bReverseInPlan = $bReverse;
77 public function setLanguagePreference($aLangPref)
79 $this->aLangPrefOrder = $aLangPref;
82 public function getMoreUrlParams()
84 if ($this->aStructuredQuery) {
85 $aParams = $this->aStructuredQuery;
87 $aParams = array('q' => $this->sQuery);
90 if ($this->aExcludePlaceIDs) {
91 $aParams['exclude_place_ids'] = implode(',', $this->aExcludePlaceIDs);
94 if ($this->bIncludeAddressDetails) $aParams['addressdetails'] = '1';
95 if ($this->bIncludeExtraTags) $aParams['extratags'] = '1';
96 if ($this->bIncludeNameDetails) $aParams['namedetails'] = '1';
98 if ($this->bIncludePolygonAsPoints) $aParams['polygon'] = '1';
99 if ($this->bIncludePolygonAsText) $aParams['polygon_text'] = '1';
100 if ($this->bIncludePolygonAsGeoJSON) $aParams['polygon_geojson'] = '1';
101 if ($this->bIncludePolygonAsKML) $aParams['polygon_kml'] = '1';
102 if ($this->bIncludePolygonAsSVG) $aParams['polygon_svg'] = '1';
104 if ($this->fPolygonSimplificationThreshold > 0.0) {
105 $aParams['polygon_threshold'] = $this->fPolygonSimplificationThreshold;
108 if ($this->bBoundedSearch) $aParams['bounded'] = '1';
109 if (!$this->bDeDupe) $aParams['dedupe'] = '0';
111 if ($this->aCountryCodes) {
112 $aParams['countrycodes'] = implode(',', $this->aCountryCodes);
115 if ($this->aViewBox) {
116 $aParams['viewbox'] = $this->aViewBox[0].','.$this->aViewBox[3]
117 .','.$this->aViewBox[2].','.$this->aViewBox[1];
123 public function setIncludePolygonAsPoints($b = true)
125 $this->bIncludePolygonAsPoints = $b;
128 public function setIncludePolygonAsText($b = true)
130 $this->bIncludePolygonAsText = $b;
133 public function setIncludePolygonAsGeoJSON($b = true)
135 $this->bIncludePolygonAsGeoJSON = $b;
138 public function setIncludePolygonAsKML($b = true)
140 $this->bIncludePolygonAsKML = $b;
143 public function setIncludePolygonAsSVG($b = true)
145 $this->bIncludePolygonAsSVG = $b;
148 public function setPolygonSimplificationThreshold($f)
150 $this->fPolygonSimplificationThreshold = $f;
153 public function setLimit($iLimit = 10)
155 if ($iLimit > 50) $iLimit = 50;
156 if ($iLimit < 1) $iLimit = 1;
158 $this->iFinalLimit = $iLimit;
159 $this->iLimit = $iLimit + min($iLimit, 10);
162 public function setFeatureType($sFeatureType)
164 switch ($sFeatureType) {
166 $this->setRankRange(4, 4);
169 $this->setRankRange(8, 8);
172 $this->setRankRange(14, 16);
175 $this->setRankRange(8, 20);
180 public function setRankRange($iMin, $iMax)
182 $this->iMinAddressRank = $iMin;
183 $this->iMaxAddressRank = $iMax;
186 public function setViewbox($aViewbox)
188 $this->aViewBox = array_map('floatval', $aViewbox);
190 $this->aViewBox[0] = max(-180.0, min(180, $this->aViewBox[0]));
191 $this->aViewBox[1] = max(-90.0, min(90, $this->aViewBox[1]));
192 $this->aViewBox[2] = max(-180.0, min(180, $this->aViewBox[2]));
193 $this->aViewBox[3] = max(-90.0, min(90, $this->aViewBox[3]));
195 if (abs($this->aViewBox[0] - $this->aViewBox[2]) < 0.000000001
196 || abs($this->aViewBox[1] - $this->aViewBox[3]) < 0.000000001
198 userError("Bad parameter 'viewbox'. Not a box.");
202 public function setQuery($sQueryString)
204 $this->sQuery = $sQueryString;
205 $this->aStructuredQuery = false;
208 public function getQueryString()
210 return $this->sQuery;
214 public function loadParamArray($oParams)
216 $this->bIncludeAddressDetails
217 = $oParams->getBool('addressdetails', $this->bIncludeAddressDetails);
218 $this->bIncludeExtraTags
219 = $oParams->getBool('extratags', $this->bIncludeExtraTags);
220 $this->bIncludeNameDetails
221 = $oParams->getBool('namedetails', $this->bIncludeNameDetails);
223 $this->bBoundedSearch = $oParams->getBool('bounded', $this->bBoundedSearch);
224 $this->bDeDupe = $oParams->getBool('dedupe', $this->bDeDupe);
226 $this->setLimit($oParams->getInt('limit', $this->iFinalLimit));
227 $this->iOffset = $oParams->getInt('offset', $this->iOffset);
229 $this->bFallback = $oParams->getBool('fallback', $this->bFallback);
231 // List of excluded Place IDs - used for more acurate pageing
232 $sExcluded = $oParams->getStringList('exclude_place_ids');
234 foreach ($sExcluded as $iExcludedPlaceID) {
235 $iExcludedPlaceID = (int)$iExcludedPlaceID;
236 if ($iExcludedPlaceID)
237 $aExcludePlaceIDs[$iExcludedPlaceID] = $iExcludedPlaceID;
240 if (isset($aExcludePlaceIDs))
241 $this->aExcludePlaceIDs = $aExcludePlaceIDs;
244 // Only certain ranks of feature
245 $sFeatureType = $oParams->getString('featureType');
246 if (!$sFeatureType) $sFeatureType = $oParams->getString('featuretype');
247 if ($sFeatureType) $this->setFeatureType($sFeatureType);
250 $sCountries = $oParams->getStringList('countrycodes');
252 foreach ($sCountries as $sCountryCode) {
253 if (preg_match('/^[a-zA-Z][a-zA-Z]$/', $sCountryCode)) {
254 $aCountries[] = strtolower($sCountryCode);
257 if (isset($aCountries))
258 $this->aCountryCodes = $aCountries;
261 $aViewbox = $oParams->getStringList('viewboxlbrt');
263 if (count($aViewbox) != 4) {
264 userError("Bad parmater 'viewboxlbrt'. Expected 4 coordinates.");
266 $this->setViewbox($aViewbox);
268 $aViewbox = $oParams->getStringList('viewbox');
270 if (count($aViewbox) != 4) {
271 userError("Bad parmater 'viewbox'. Expected 4 coordinates.");
273 $this->setViewBox($aViewbox);
275 $aRoute = $oParams->getStringList('route');
276 $fRouteWidth = $oParams->getFloat('routewidth');
277 if ($aRoute && $fRouteWidth) {
278 $this->aRoutePoints = $aRoute;
279 $this->aRouteWidth = $fRouteWidth;
285 public function setQueryFromParams($oParams)
288 $sQuery = $oParams->getString('q');
290 $this->setStructuredQuery(
291 $oParams->getString('amenity'),
292 $oParams->getString('street'),
293 $oParams->getString('city'),
294 $oParams->getString('county'),
295 $oParams->getString('state'),
296 $oParams->getString('country'),
297 $oParams->getString('postalcode')
299 $this->setReverseInPlan(false);
301 $this->setQuery($sQuery);
305 public function loadStructuredAddressElement($sValue, $sKey, $iNewMinAddressRank, $iNewMaxAddressRank, $aItemListValues)
307 $sValue = trim($sValue);
308 if (!$sValue) return false;
309 $this->aStructuredQuery[$sKey] = $sValue;
310 if ($this->iMinAddressRank == 0 && $this->iMaxAddressRank == 30) {
311 $this->iMinAddressRank = $iNewMinAddressRank;
312 $this->iMaxAddressRank = $iNewMaxAddressRank;
314 if ($aItemListValues) $this->aAddressRankList = array_merge($this->aAddressRankList, $aItemListValues);
318 public function setStructuredQuery($sAmenity = false, $sStreet = false, $sCity = false, $sCounty = false, $sState = false, $sCountry = false, $sPostalCode = false)
320 $this->sQuery = false;
323 $this->iMinAddressRank = 0;
324 $this->iMaxAddressRank = 30;
325 $this->aAddressRankList = array();
327 $this->aStructuredQuery = array();
328 $this->sAllowedTypesSQLList = false;
330 $this->loadStructuredAddressElement($sAmenity, 'amenity', 26, 30, false);
331 $this->loadStructuredAddressElement($sStreet, 'street', 26, 30, false);
332 $this->loadStructuredAddressElement($sCity, 'city', 14, 24, false);
333 $this->loadStructuredAddressElement($sCounty, 'county', 9, 13, false);
334 $this->loadStructuredAddressElement($sState, 'state', 8, 8, false);
335 $this->loadStructuredAddressElement($sPostalCode, 'postalcode', 5, 11, array(5, 11));
336 $this->loadStructuredAddressElement($sCountry, 'country', 4, 4, false);
338 if (sizeof($this->aStructuredQuery) > 0) {
339 $this->sQuery = join(', ', $this->aStructuredQuery);
340 if ($this->iMaxAddressRank < 30) {
341 $this->sAllowedTypesSQLList = '(\'place\',\'boundary\')';
346 public function fallbackStructuredQuery()
348 if (!$this->aStructuredQuery) return false;
350 $aParams = $this->aStructuredQuery;
352 if (sizeof($aParams) == 1) return false;
354 $aOrderToFallback = array('postalcode', 'street', 'city', 'county', 'state');
356 foreach ($aOrderToFallback as $sType) {
357 if (isset($aParams[$sType])) {
358 unset($aParams[$sType]);
359 $this->setStructuredQuery(@$aParams['amenity'], @$aParams['street'], @$aParams['city'], @$aParams['county'], @$aParams['state'], @$aParams['country'], @$aParams['postalcode']);
367 public function getDetails($aPlaceIDs, $oCtx)
369 //$aPlaceIDs is an array with key: placeID and value: tiger-housenumber, if found, else -1
370 if (sizeof($aPlaceIDs) == 0) return array();
372 $sLanguagePrefArraySQL = getArraySQL(
373 array_map("getDBQuoted", $this->aLangPrefOrder)
376 // Get the details for display (is this a redundant extra step?)
377 $sPlaceIDs = join(',', array_keys($aPlaceIDs));
379 $sImportanceSQL = $oCtx->viewboxImportanceSQL('ST_Collect(centroid)');
380 $sImportanceSQLGeom = $oCtx->viewboxImportanceSQL('geometry');
383 $sSQL .= " osm_type,";
387 $sSQL .= " admin_level,";
388 $sSQL .= " rank_search,";
389 $sSQL .= " rank_address,";
390 $sSQL .= " min(place_id) AS place_id, ";
391 $sSQL .= " min(parent_place_id) AS parent_place_id, ";
392 $sSQL .= " country_code, ";
393 $sSQL .= " get_address_by_language(place_id, -1, $sLanguagePrefArraySQL) AS langaddress,";
394 $sSQL .= " get_name_by_language(name, $sLanguagePrefArraySQL) AS placename,";
395 $sSQL .= " get_name_by_language(name, ARRAY['ref']) AS ref,";
396 if ($this->bIncludeExtraTags) $sSQL .= "hstore_to_json(extratags)::text AS extra,";
397 if ($this->bIncludeNameDetails) $sSQL .= "hstore_to_json(name)::text AS names,";
398 $sSQL .= " avg(ST_X(centroid)) AS lon, ";
399 $sSQL .= " avg(ST_Y(centroid)) AS lat, ";
400 $sSQL .= " COALESCE(importance,0.75-(rank_search::float/40)) $sImportanceSQL AS importance, ";
402 $sSQL .= " SELECT max(p.importance*(p.rank_address+2))";
404 $sSQL .= " place_addressline s, ";
405 $sSQL .= " placex p";
406 $sSQL .= " WHERE s.place_id = min(CASE WHEN placex.rank_search < 28 THEN placex.place_id ELSE placex.parent_place_id END)";
407 $sSQL .= " AND p.place_id = s.address_place_id ";
408 $sSQL .= " AND s.isaddress ";
409 $sSQL .= " AND p.importance is not null ";
410 $sSQL .= " ) AS addressimportance, ";
411 $sSQL .= " (extratags->'place') AS extra_place ";
412 $sSQL .= " FROM placex";
413 $sSQL .= " WHERE place_id in ($sPlaceIDs) ";
415 $sSQL .= " placex.rank_address between $this->iMinAddressRank and $this->iMaxAddressRank ";
416 if (14 >= $this->iMinAddressRank && 14 <= $this->iMaxAddressRank) {
417 $sSQL .= " OR (extratags->'place') = 'city'";
419 if ($this->aAddressRankList) {
420 $sSQL .= " OR placex.rank_address in (".join(',', $this->aAddressRankList).")";
423 if ($this->sAllowedTypesSQLList) {
424 $sSQL .= "AND placex.class in $this->sAllowedTypesSQLList ";
426 $sSQL .= " AND linked_place_id is null ";
427 $sSQL .= " GROUP BY ";
428 $sSQL .= " osm_type, ";
429 $sSQL .= " osm_id, ";
432 $sSQL .= " admin_level, ";
433 $sSQL .= " rank_search, ";
434 $sSQL .= " rank_address, ";
435 $sSQL .= " country_code, ";
436 $sSQL .= " importance, ";
437 if (!$this->bDeDupe) $sSQL .= "place_id,";
438 $sSQL .= " langaddress, ";
439 $sSQL .= " placename, ";
441 if ($this->bIncludeExtraTags) $sSQL .= "extratags, ";
442 if ($this->bIncludeNameDetails) $sSQL .= "name, ";
443 $sSQL .= " extratags->'place' ";
448 $sSQL .= " 'P' as osm_type,";
449 $sSQL .= " (SELECT osm_id from placex p WHERE p.place_id = lp.parent_place_id) as osm_id,";
450 $sSQL .= " 'place' as class, 'postcode' as type,";
451 $sSQL .= " null as admin_level, rank_search, rank_address,";
452 $sSQL .= " place_id, parent_place_id, country_code,";
453 $sSQL .= " get_address_by_language(place_id, -1, $sLanguagePrefArraySQL) AS langaddress,";
454 $sSQL .= " postcode as placename,";
455 $sSQL .= " postcode as ref,";
456 if ($this->bIncludeExtraTags) $sSQL .= "null AS extra,";
457 if ($this->bIncludeNameDetails) $sSQL .= "null AS names,";
458 $sSQL .= " ST_x(st_centroid(geometry)) AS lon, ST_y(st_centroid(geometry)) AS lat,";
459 $sSQL .= " (0.75-(rank_search::float/40)) $sImportanceSQLGeom AS importance, ";
461 $sSQL .= " SELECT max(p.importance*(p.rank_address+2))";
463 $sSQL .= " place_addressline s, ";
464 $sSQL .= " placex p";
465 $sSQL .= " WHERE s.place_id = lp.parent_place_id";
466 $sSQL .= " AND p.place_id = s.address_place_id ";
467 $sSQL .= " AND s.isaddress";
468 $sSQL .= " AND p.importance is not null";
469 $sSQL .= " ) AS addressimportance, ";
470 $sSQL .= " null AS extra_place ";
471 $sSQL .= "FROM location_postcode lp";
472 $sSQL .= " WHERE place_id in ($sPlaceIDs) ";
474 if (30 >= $this->iMinAddressRank && 30 <= $this->iMaxAddressRank) {
475 // only Tiger housenumbers and interpolation lines need to be interpolated, because they are saved as lines
476 // with start- and endnumber, the common osm housenumbers are usually saved as points
479 $length = count($aPlaceIDs);
480 foreach ($aPlaceIDs as $placeID => $housenumber) {
482 $sHousenumbers .= "(".$placeID.", ".$housenumber.")";
483 if ($i<$length) $sHousenumbers .= ", ";
486 if (CONST_Use_US_Tiger_Data) {
487 // Tiger search only if a housenumber was searched and if it was found (i.e. aPlaceIDs[placeID] = housenumber != -1) (realized through a join)
490 $sSQL .= " 'T' AS osm_type, ";
491 $sSQL .= " (SELECT osm_id from placex p WHERE p.place_id=min(blub.parent_place_id)) as osm_id, ";
492 $sSQL .= " 'place' AS class, ";
493 $sSQL .= " 'house' AS type, ";
494 $sSQL .= " null AS admin_level, ";
495 $sSQL .= " 30 AS rank_search, ";
496 $sSQL .= " 30 AS rank_address, ";
497 $sSQL .= " min(place_id) AS place_id, ";
498 $sSQL .= " min(parent_place_id) AS parent_place_id, ";
499 $sSQL .= " 'us' AS country_code, ";
500 $sSQL .= " get_address_by_language(place_id, housenumber_for_place, $sLanguagePrefArraySQL) AS langaddress,";
501 $sSQL .= " null AS placename, ";
502 $sSQL .= " null AS ref, ";
503 if ($this->bIncludeExtraTags) $sSQL .= "null AS extra,";
504 if ($this->bIncludeNameDetails) $sSQL .= "null AS names,";
505 $sSQL .= " avg(st_x(centroid)) AS lon, ";
506 $sSQL .= " avg(st_y(centroid)) AS lat,";
507 $sSQL .= " -1.15".$sImportanceSQL." AS importance, ";
509 $sSQL .= " SELECT max(p.importance*(p.rank_address+2))";
511 $sSQL .= " place_addressline s, ";
512 $sSQL .= " placex p";
513 $sSQL .= " WHERE s.place_id = min(blub.parent_place_id)";
514 $sSQL .= " AND p.place_id = s.address_place_id ";
515 $sSQL .= " AND s.isaddress";
516 $sSQL .= " AND p.importance is not null";
517 $sSQL .= " ) AS addressimportance, ";
518 $sSQL .= " null AS extra_place ";
520 $sSQL .= " SELECT place_id, "; // interpolate the Tiger housenumbers here
521 $sSQL .= " ST_LineInterpolatePoint(linegeo, (housenumber_for_place-startnumber::float)/(endnumber-startnumber)::float) AS centroid, ";
522 $sSQL .= " parent_place_id, ";
523 $sSQL .= " housenumber_for_place";
525 $sSQL .= " location_property_tiger ";
526 $sSQL .= " JOIN (values ".$sHousenumbers.") AS housenumbers(place_id, housenumber_for_place) USING(place_id)) ";
528 $sSQL .= " housenumber_for_place>=0";
529 $sSQL .= " AND 30 between $this->iMinAddressRank AND $this->iMaxAddressRank";
530 $sSQL .= " ) AS blub"; //postgres wants an alias here
531 $sSQL .= " GROUP BY";
532 $sSQL .= " place_id, ";
533 $sSQL .= " housenumber_for_place"; //is this group by really needed?, place_id + housenumber (in combination) are unique
534 if (!$this->bDeDupe) $sSQL .= ", place_id ";
537 // interpolation line search only if a housenumber was searched and if it was found (i.e. aPlaceIDs[placeID] = housenumber != -1) (realized through a join)
540 $sSQL .= " 'W' AS osm_type, ";
541 $sSQL .= " osm_id, ";
542 $sSQL .= " 'place' AS class, ";
543 $sSQL .= " 'house' AS type, ";
544 $sSQL .= " null AS admin_level, ";
545 $sSQL .= " 30 AS rank_search, ";
546 $sSQL .= " 30 AS rank_address, ";
547 $sSQL .= " min(place_id) as place_id, ";
548 $sSQL .= " min(parent_place_id) AS parent_place_id, ";
549 $sSQL .= " country_code, ";
550 $sSQL .= " get_address_by_language(place_id, housenumber_for_place, $sLanguagePrefArraySQL) AS langaddress, ";
551 $sSQL .= " null AS placename, ";
552 $sSQL .= " null AS ref, ";
553 if ($this->bIncludeExtraTags) $sSQL .= "null AS extra, ";
554 if ($this->bIncludeNameDetails) $sSQL .= "null AS names, ";
555 $sSQL .= " AVG(st_x(centroid)) AS lon, ";
556 $sSQL .= " AVG(st_y(centroid)) AS lat, ";
557 $sSQL .= " -0.1".$sImportanceSQL." AS importance, "; // slightly smaller than the importance for normal houses with rank 30, which is 0
560 $sSQL .= " MAX(p.importance*(p.rank_address+2)) ";
562 $sSQL .= " place_addressline s, ";
563 $sSQL .= " placex p";
564 $sSQL .= " WHERE s.place_id = min(blub.parent_place_id) ";
565 $sSQL .= " AND p.place_id = s.address_place_id ";
566 $sSQL .= " AND s.isaddress ";
567 $sSQL .= " AND p.importance is not null";
568 $sSQL .= " ) AS addressimportance,";
569 $sSQL .= " null AS extra_place ";
572 $sSQL .= " osm_id, ";
573 $sSQL .= " place_id, ";
574 $sSQL .= " country_code, ";
575 $sSQL .= " CASE "; // interpolate the housenumbers here
576 $sSQL .= " WHEN startnumber != endnumber ";
577 $sSQL .= " THEN ST_LineInterpolatePoint(linegeo, (housenumber_for_place-startnumber::float)/(endnumber-startnumber)::float) ";
578 $sSQL .= " ELSE ST_LineInterpolatePoint(linegeo, 0.5) ";
579 $sSQL .= " END as centroid, ";
580 $sSQL .= " parent_place_id, ";
581 $sSQL .= " housenumber_for_place ";
583 $sSQL .= " location_property_osmline ";
584 $sSQL .= " JOIN (values ".$sHousenumbers.") AS housenumbers(place_id, housenumber_for_place) USING(place_id)";
586 $sSQL .= " WHERE housenumber_for_place>=0 ";
587 $sSQL .= " AND 30 between $this->iMinAddressRank AND $this->iMaxAddressRank";
588 $sSQL .= " ) as blub"; //postgres wants an alias here
589 $sSQL .= " GROUP BY ";
590 $sSQL .= " osm_id, ";
591 $sSQL .= " place_id, ";
592 $sSQL .= " housenumber_for_place, ";
593 $sSQL .= " country_code "; //is this group by really needed?, place_id + housenumber (in combination) are unique
594 if (!$this->bDeDupe) $sSQL .= ", place_id ";
596 if (CONST_Use_Aux_Location_data) {
599 $sSQL .= " 'L' AS osm_type, ";
600 $sSQL .= " place_id AS osm_id, ";
601 $sSQL .= " 'place' AS class,";
602 $sSQL .= " 'house' AS type, ";
603 $sSQL .= " null AS admin_level, ";
604 $sSQL .= " 0 AS rank_search,";
605 $sSQL .= " 0 AS rank_address, ";
606 $sSQL .= " min(place_id) AS place_id,";
607 $sSQL .= " min(parent_place_id) AS parent_place_id, ";
608 $sSQL .= " 'us' AS country_code, ";
609 $sSQL .= " get_address_by_language(place_id, -1, $sLanguagePrefArraySQL) AS langaddress, ";
610 $sSQL .= " null AS placename, ";
611 $sSQL .= " null AS ref, ";
612 if ($this->bIncludeExtraTags) $sSQL .= "null AS extra, ";
613 if ($this->bIncludeNameDetails) $sSQL .= "null AS names, ";
614 $sSQL .= " avg(ST_X(centroid)) AS lon, ";
615 $sSQL .= " avg(ST_Y(centroid)) AS lat, ";
616 $sSQL .= " -1.10".$sImportanceSQL." AS importance, ";
618 $sSQL .= " SELECT max(p.importance*(p.rank_address+2))";
620 $sSQL .= " place_addressline s, ";
621 $sSQL .= " placex p";
622 $sSQL .= " WHERE s.place_id = min(location_property_aux.parent_place_id)";
623 $sSQL .= " AND p.place_id = s.address_place_id ";
624 $sSQL .= " AND s.isaddress";
625 $sSQL .= " AND p.importance is not null";
626 $sSQL .= " ) AS addressimportance, ";
627 $sSQL .= " null AS extra_place ";
628 $sSQL .= " FROM location_property_aux ";
629 $sSQL .= " WHERE place_id in ($sPlaceIDs) ";
630 $sSQL .= " AND 30 between $this->iMinAddressRank and $this->iMaxAddressRank ";
631 $sSQL .= " GROUP BY ";
632 $sSQL .= " place_id, ";
633 if (!$this->bDeDupe) $sSQL .= "place_id, ";
634 $sSQL .= " get_address_by_language(place_id, -1, $sLanguagePrefArraySQL) ";
638 $sSQL .= " order by importance desc";
643 $aSearchResults = chksql(
644 $this->oDB->getAll($sSQL),
645 "Could not get details for place."
648 return $aSearchResults;
651 public function getGroupedSearches($aSearches, $aPhraseTypes, $aPhrases, $aValidTokens, $aWordFrequencyScores, $bStructuredPhrases, $sNormQuery)
654 Calculate all searches using aValidTokens i.e.
655 'Wodsworth Road, Sheffield' =>
659 0 1 (wodsworth)(road)
662 Score how good the search is so they can be ordered
666 foreach ($aPhrases as $iPhrase => $aPhrase) {
667 $aNewPhraseSearches = array();
668 if ($bStructuredPhrases) {
669 $sPhraseType = $aPhraseTypes[$iPhrase];
674 foreach ($aPhrase['wordsets'] as $iWordSet => $aWordset) {
675 // Too many permutations - too expensive
676 if ($iWordSet > 120) break;
678 $aWordsetSearches = $aSearches;
680 // Add all words from this wordset
681 foreach ($aWordset as $iToken => $sToken) {
682 //echo "<br><b>$sToken</b>";
683 $aNewWordsetSearches = array();
685 foreach ($aWordsetSearches as $oCurrentSearch) {
687 //var_dump($oCurrentSearch);
690 // If the token is valid
691 if (isset($aValidTokens[' '.$sToken])) {
692 foreach ($aValidTokens[' '.$sToken] as $aSearchTerm) {
693 // Recheck if the original word shows up in the query.
694 $bWordInQuery = false;
695 if (isset($aSearchTerm['word']) && $aSearchTerm['word']) {
696 $bWordInQuery = strpos(
698 $this->normTerm($aSearchTerm['word'])
701 $aNewSearches = $oCurrentSearch->extendWithFullTerm(
704 isset($aValidTokens[$sToken])
705 && strpos($sToken, ' ') === false,
707 $iToken == 0 && $iPhrase == 0,
709 $iToken + 1 == sizeof($aWordset)
710 && $iPhrase + 1 == sizeof($aPhrases),
714 foreach ($aNewSearches as $oSearch) {
715 if ($oSearch->getRank() < $this->iMaxRank) {
716 $aNewWordsetSearches[] = $oSearch;
721 // Look for partial matches.
722 // Note that there is no point in adding country terms here
723 // because country is omitted in the address.
724 if (isset($aValidTokens[$sToken]) && $sPhraseType != 'country') {
725 // Allow searching for a word - but at extra cost
726 foreach ($aValidTokens[$sToken] as $aSearchTerm) {
727 $aNewSearches = $oCurrentSearch->extendWithPartialTerm(
731 $aWordFrequencyScores,
732 isset($aValidTokens[' '.$sToken]) ? $aValidTokens[' '.$sToken] : array()
735 foreach ($aNewSearches as $oSearch) {
736 if ($oSearch->getRank() < $this->iMaxRank) {
737 $aNewWordsetSearches[] = $oSearch;
744 usort($aNewWordsetSearches, array('Nominatim\SearchDescription', 'bySearchRank'));
745 $aWordsetSearches = array_slice($aNewWordsetSearches, 0, 50);
747 //var_Dump('<hr>',sizeof($aWordsetSearches)); exit;
749 $aNewPhraseSearches = array_merge($aNewPhraseSearches, $aNewWordsetSearches);
750 usort($aNewPhraseSearches, array('Nominatim\SearchDescription', 'bySearchRank'));
752 $aSearchHash = array();
753 foreach ($aNewPhraseSearches as $iSearch => $aSearch) {
754 $sHash = serialize($aSearch);
755 if (isset($aSearchHash[$sHash])) unset($aNewPhraseSearches[$iSearch]);
756 else $aSearchHash[$sHash] = 1;
759 $aNewPhraseSearches = array_slice($aNewPhraseSearches, 0, 50);
762 // Re-group the searches by their score, junk anything over 20 as just not worth trying
763 $aGroupedSearches = array();
764 foreach ($aNewPhraseSearches as $aSearch) {
765 $iRank = $aSearch->getRank();
766 if ($iRank < $this->iMaxRank) {
767 if (!isset($aGroupedSearches[$iRank])) {
768 $aGroupedSearches[$iRank] = array();
770 $aGroupedSearches[$iRank][] = $aSearch;
773 ksort($aGroupedSearches);
776 $aSearches = array();
777 foreach ($aGroupedSearches as $iScore => $aNewSearches) {
778 $iSearchCount += sizeof($aNewSearches);
779 $aSearches = array_merge($aSearches, $aNewSearches);
780 if ($iSearchCount > 50) break;
783 //if (CONST_Debug) _debugDumpGroupedSearches($aGroupedSearches, $aValidTokens);
786 // Revisit searches, drop bad searches and give penalty to unlikely combinations.
787 $aGroupedSearches = array();
788 foreach ($aSearches as $oSearch) {
789 if (!$oSearch->isValidSearch($this->aCountryCodes)) {
793 $iRank = $oSearch->addToRank($iGlobalRank);
794 if (!isset($aGroupedSearches[$iRank])) {
795 $aGroupedSearches[$iRank] = array();
797 $aGroupedSearches[$iRank][] = $oSearch;
799 ksort($aGroupedSearches);
801 return $aGroupedSearches;
804 /* Perform the actual query lookup.
806 Returns an ordered list of results, each with the following fields:
807 osm_type: type of corresponding OSM object
811 P - postcode (internally computed)
812 osm_id: id of corresponding OSM object
813 class: general object class (corresponds to tag key of primary OSM tag)
814 type: subclass of object (corresponds to tag value of primary OSM tag)
815 admin_level: see http://wiki.openstreetmap.org/wiki/Admin_level
816 rank_search: rank in search hierarchy
817 (see also http://wiki.openstreetmap.org/wiki/Nominatim/Development_overview#Country_to_street_level)
818 rank_address: rank in address hierarchy (determines orer in address)
819 place_id: internal key (may differ between different instances)
820 country_code: ISO country code
821 langaddress: localized full address
822 placename: localized name of object
823 ref: content of ref tag (if available)
826 importance: importance of place based on Wikipedia link count
827 addressimportance: cumulated importance of address elements
828 extra_place: type of place (for admin boundaries, if there is a place tag)
829 aBoundingBox: bounding Box
830 label: short description of the object class/type (English only)
831 name: full name (currently the same as langaddress)
832 foundorder: secondary ordering for places with same importance
836 public function lookup()
838 if (!$this->sQuery && !$this->aStructuredQuery) return array();
840 $oCtx = new SearchContext();
842 if ($this->aRoutePoints) {
843 $oCtx->setViewboxFromRoute(
847 $this->bBoundedSearch
849 } else if ($this->aViewBox) {
850 $oCtx->setViewboxFromBox($this->aViewBox, $this->bBoundedSearch);
852 if ($this->aExcludePlaceIDs) {
853 $oCtx->setExcludeList($this->aExcludePlaceIDs);
856 $sNormQuery = $this->normTerm($this->sQuery);
857 $sLanguagePrefArraySQL = getArraySQL(
858 array_map("getDBQuoted", $this->aLangPrefOrder)
860 $sCountryCodesSQL = false;
861 if ($this->aCountryCodes) {
862 $sCountryCodesSQL = join(',', array_map('addQuotes', $this->aCountryCodes));
865 $sQuery = $this->sQuery;
866 if (!preg_match('//u', $sQuery)) {
867 userError("Query string is not UTF-8 encoded.");
870 // Conflicts between US state abreviations and various words for 'the' in different languages
871 if (isset($this->aLangPrefOrder['name:en'])) {
872 $sQuery = preg_replace('/(^|,)\s*il\s*(,|$)/', '\1illinois\2', $sQuery);
873 $sQuery = preg_replace('/(^|,)\s*al\s*(,|$)/', '\1alabama\2', $sQuery);
874 $sQuery = preg_replace('/(^|,)\s*la\s*(,|$)/', '\1louisiana\2', $sQuery);
877 // Do we have anything that looks like a lat/lon pair?
878 $sQuery = $oCtx->setNearPointFromQuery($sQuery);
880 $aSearchResults = array();
881 if ($sQuery || $this->aStructuredQuery) {
882 // Start with a single blank search
883 $aSearches = array(new SearchDescription($oCtx));
886 $sQuery = $aSearches[0]->extractKeyValuePairs($sQuery);
892 '/\\[([\\w ]*)\\]/u',
897 foreach ($aSpecialTermsRaw as $aSpecialTerm) {
898 $sQuery = str_replace($aSpecialTerm[0], ' ', $sQuery);
899 if (!$sSpecialTerm) {
900 $sSpecialTerm = $aSpecialTerm[1];
904 if (!$sSpecialTerm && $this->aStructuredQuery
905 && isset($this->aStructuredQuery['amenity'])) {
906 $sSpecialTerm = $this->aStructuredQuery['amenity'];
907 unset($this->aStructuredQuery['amenity']);
910 if ($sSpecialTerm && !$aSearches[0]->hasOperator()) {
911 $sSpecialTerm = pg_escape_string($sSpecialTerm);
913 $this->oDB->getOne("SELECT make_standard_name('$sSpecialTerm')"),
914 "Cannot decode query. Wrong encoding?"
916 $sSQL = 'SELECT class, type FROM word ';
917 $sSQL .= ' WHERE word_token in (\' '.$sToken.'\')';
918 $sSQL .= ' AND class is not null AND class not in (\'place\')';
919 if (CONST_Debug) var_Dump($sSQL);
920 $aSearchWords = chksql($this->oDB->getAll($sSQL));
921 $aNewSearches = array();
922 foreach ($aSearches as $oSearch) {
923 foreach ($aSearchWords as $aSearchTerm) {
924 $oNewSearch = clone $oSearch;
925 $oNewSearch->setPoiSearch(
927 $aSearchTerm['class'],
930 $aNewSearches[] = $oNewSearch;
933 $aSearches = $aNewSearches;
936 // Split query into phrases
937 // Commas are used to reduce the search space by indicating where phrases split
938 if ($this->aStructuredQuery) {
939 $aPhrases = $this->aStructuredQuery;
940 $bStructuredPhrases = true;
942 $aPhrases = explode(',', $sQuery);
943 $bStructuredPhrases = false;
946 // Convert each phrase to standard form
947 // Create a list of standard words
948 // Get all 'sets' of words
949 // Generate a complete list of all
951 foreach ($aPhrases as $iPhrase => $sPhrase) {
953 $this->oDB->getRow("SELECT make_standard_name('".pg_escape_string($sPhrase)."') as string"),
954 "Cannot normalize query string (is it a UTF-8 string?)"
956 if (trim($aPhrase['string'])) {
957 $aPhrases[$iPhrase] = $aPhrase;
958 $aPhrases[$iPhrase]['words'] = explode(' ', $aPhrases[$iPhrase]['string']);
959 $aPhrases[$iPhrase]['wordsets'] = getWordSets($aPhrases[$iPhrase]['words'], 0);
960 $aTokens = array_merge($aTokens, getTokensFromSets($aPhrases[$iPhrase]['wordsets']));
962 unset($aPhrases[$iPhrase]);
966 // Reindex phrases - we make assumptions later on that they are numerically keyed in order
967 $aPhraseTypes = array_keys($aPhrases);
968 $aPhrases = array_values($aPhrases);
970 if (sizeof($aTokens)) {
971 // Check which tokens we have, get the ID numbers
972 $sSQL = 'SELECT word_id, word_token, word, class, type, country_code, operator, search_name_count';
973 $sSQL .= ' FROM word ';
974 $sSQL .= ' WHERE word_token in ('.join(',', array_map("getDBQuoted", $aTokens)).')';
976 if (CONST_Debug) var_Dump($sSQL);
978 $aValidTokens = array();
979 $aDatabaseWords = chksql(
980 $this->oDB->getAll($sSQL),
981 "Could not get word tokens."
983 $aPossibleMainWordIDs = array();
984 $aWordFrequencyScores = array();
985 foreach ($aDatabaseWords as $aToken) {
986 // Very special case - require 2 letter country param to match the country code found
987 if ($bStructuredPhrases && $aToken['country_code'] && !empty($this->aStructuredQuery['country'])
988 && strlen($this->aStructuredQuery['country']) == 2 && strtolower($this->aStructuredQuery['country']) != $aToken['country_code']
993 if (isset($aValidTokens[$aToken['word_token']])) {
994 $aValidTokens[$aToken['word_token']][] = $aToken;
996 $aValidTokens[$aToken['word_token']] = array($aToken);
998 if (!$aToken['class'] && !$aToken['country_code']) $aPossibleMainWordIDs[$aToken['word_id']] = 1;
999 $aWordFrequencyScores[$aToken['word_id']] = $aToken['search_name_count'] + 1;
1001 if (CONST_Debug) var_Dump($aPhrases, $aValidTokens);
1003 // US ZIP+4 codes - if there is no token, merge in the 5-digit ZIP code
1004 foreach ($aTokens as $sToken) {
1005 if (!isset($aValidTokens[$sToken]) && preg_match('/^([0-9]{5}) [0-9]{4}$/', $sToken, $aData)) {
1006 if (isset($aValidTokens[$aData[1]])) {
1007 foreach ($aValidTokens[$aData[1]] as $aToken) {
1008 if (!$aToken['class']) {
1009 if (isset($aValidTokens[$sToken])) {
1010 $aValidTokens[$sToken][] = $aToken;
1012 $aValidTokens[$sToken] = array($aToken);
1020 foreach ($aTokens as $sToken) {
1021 // Unknown single word token with a number - assume it is a house number
1022 if (!isset($aValidTokens[' '.$sToken]) && strpos($sToken, ' ') === false && preg_match('/^[0-9]+$/', $sToken)) {
1023 $aValidTokens[' '.$sToken] = array(array('class' => 'place', 'type' => 'house', 'word_token' => ' '.$sToken));
1027 // Any words that have failed completely?
1028 // TODO: suggestions
1030 // Start the search process
1031 // array with: placeid => -1 | tiger-housenumber
1032 $aResultPlaceIDs = array();
1034 $aGroupedSearches = $this->getGroupedSearches($aSearches, $aPhraseTypes, $aPhrases, $aValidTokens, $aWordFrequencyScores, $bStructuredPhrases, $sNormQuery);
1036 if ($this->bReverseInPlan) {
1037 // Reverse phrase array and also reverse the order of the wordsets in
1038 // the first and final phrase. Don't bother about phrases in the middle
1039 // because order in the address doesn't matter.
1040 $aPhrases = array_reverse($aPhrases);
1041 $aPhrases[0]['wordsets'] = getInverseWordSets($aPhrases[0]['words'], 0);
1042 if (sizeof($aPhrases) > 1) {
1043 $aFinalPhrase = end($aPhrases);
1044 $aPhrases[sizeof($aPhrases)-1]['wordsets'] = getInverseWordSets($aFinalPhrase['words'], 0);
1046 $aReverseGroupedSearches = $this->getGroupedSearches($aSearches, null, $aPhrases, $aValidTokens, $aWordFrequencyScores, false, $sNormQuery);
1048 foreach ($aGroupedSearches as $aSearches) {
1049 foreach ($aSearches as $aSearch) {
1050 if (!isset($aReverseGroupedSearches[$aSearch->getRank()])) {
1051 $aReverseGroupedSearches[$aSearch->getRank()] = array();
1053 $aReverseGroupedSearches[$aSearch->getRank()][] = $aSearch;
1057 $aGroupedSearches = $aReverseGroupedSearches;
1058 ksort($aGroupedSearches);
1061 // Re-group the searches by their score, junk anything over 20 as just not worth trying
1062 $aGroupedSearches = array();
1063 foreach ($aSearches as $aSearch) {
1064 if ($aSearch->getRank() < $this->iMaxRank) {
1065 if (!isset($aGroupedSearches[$aSearch->getRank()])) $aGroupedSearches[$aSearch->getRank()] = array();
1066 $aGroupedSearches[$aSearch->getRank()][] = $aSearch;
1069 ksort($aGroupedSearches);
1072 // Filter out duplicate searches
1073 $aSearchHash = array();
1074 foreach ($aGroupedSearches as $iGroup => $aSearches) {
1075 foreach ($aSearches as $iSearch => $aSearch) {
1076 $sHash = serialize($aSearch);
1077 if (isset($aSearchHash[$sHash])) {
1078 unset($aGroupedSearches[$iGroup][$iSearch]);
1079 if (sizeof($aGroupedSearches[$iGroup]) == 0) unset($aGroupedSearches[$iGroup]);
1081 $aSearchHash[$sHash] = 1;
1086 if (CONST_Debug) _debugDumpGroupedSearches($aGroupedSearches, $aValidTokens);
1090 foreach ($aGroupedSearches as $iGroupedRank => $aSearches) {
1092 foreach ($aSearches as $oSearch) {
1094 $searchedHousenumber = -1;
1096 if (CONST_Debug) echo "<hr><b>Search Loop, group $iGroupLoop, loop $iQueryLoop</b>";
1097 if (CONST_Debug) _debugDumpGroupedSearches(array($iGroupedRank => array($oSearch)), $aValidTokens);
1099 $aPlaceIDs = array();
1100 if ($oSearch->isCountrySearch()) {
1101 // Just looking for a country - look it up
1102 if (4 >= $this->iMinAddressRank && 4 <= $this->iMaxAddressRank) {
1103 $aPlaceIDs = $oSearch->queryCountry($this->oDB);
1105 } elseif (!$oSearch->isNamedSearch()) {
1106 // looking for a POI in a geographic area
1107 if (!$oCtx->isBoundedSearch()) {
1111 $aPlaceIDs = $oSearch->queryNearbyPoi(
1116 } elseif ($oSearch->isOperator(Operator::POSTCODE)) {
1117 $aPlaceIDs = $oSearch->queryPostcode(
1124 // First search for places according to name and address.
1125 $aNamedPlaceIDs = $oSearch->queryNamedPlace(
1127 $aWordFrequencyScores,
1129 $this->iMinAddressRank,
1130 $this->iMaxAddressRank,
1134 if (sizeof($aNamedPlaceIDs)) {
1135 foreach ($aNamedPlaceIDs as $aRow) {
1136 $aPlaceIDs[] = $aRow['place_id'];
1137 $this->exactMatchCache[$aRow['place_id']] = $aRow['exactmatch'];
1141 //now search for housenumber, if housenumber provided
1142 if ($oSearch->hasHouseNumber() && sizeof($aPlaceIDs)) {
1143 $aResult = $oSearch->queryHouseNumber(
1149 if (sizeof($aResult)) {
1150 $searchedHousenumber = $aResult['iHouseNumber'];
1151 $aPlaceIDs = $aResult['aPlaceIDs'];
1152 } elseif (!$oSearch->looksLikeFullAddress()) {
1153 $aPlaceIDs = array();
1157 // finally get POIs if requested
1158 if ($oSearch->isPoiSearch() && sizeof($aPlaceIDs)) {
1159 $aPlaceIDs = $oSearch->queryPoiByOperator(
1168 echo "<br><b>Place IDs:</b> ";
1169 var_Dump($aPlaceIDs);
1172 if (sizeof($aPlaceIDs) && $oSearch->getPostcode()) {
1173 $sSQL = 'SELECT place_id FROM placex';
1174 $sSQL .= ' WHERE place_id in ('.join(',', $aPlaceIDs).')';
1175 $sSQL .= " AND postcode = '".$oSearch->getPostcode()."'";
1176 if (CONST_Debug) var_dump($sSQL);
1177 $aFilteredPlaceIDs = chksql($this->oDB->getCol($sSQL));
1178 if ($aFilteredPlaceIDs) {
1179 $aPlaceIDs = $aFilteredPlaceIDs;
1181 echo "<br><b>Place IDs after postcode filtering:</b> ";
1182 var_Dump($aPlaceIDs);
1187 foreach ($aPlaceIDs as $iPlaceID) {
1188 // array for placeID => -1 | Tiger housenumber
1189 $aResultPlaceIDs[$iPlaceID] = $searchedHousenumber;
1191 if ($iQueryLoop > 20) break;
1194 if (isset($aResultPlaceIDs) && sizeof($aResultPlaceIDs) && ($this->iMinAddressRank != 0 || $this->iMaxAddressRank != 30)) {
1195 // Need to verify passes rank limits before dropping out of the loop (yuk!)
1196 // reduces the number of place ids, like a filter
1197 // rank_address is 30 for interpolated housenumbers
1198 $sWherePlaceId = 'WHERE place_id in (';
1199 $sWherePlaceId .= join(',', array_keys($aResultPlaceIDs)).') ';
1201 $sSQL = "SELECT place_id ";
1202 $sSQL .= "FROM placex ".$sWherePlaceId;
1204 $sSQL .= " placex.rank_address between $this->iMinAddressRank and $this->iMaxAddressRank ";
1205 if (14 >= $this->iMinAddressRank && 14 <= $this->iMaxAddressRank) {
1206 $sSQL .= " OR (extratags->'place') = 'city'";
1208 if ($this->aAddressRankList) {
1209 $sSQL .= " OR placex.rank_address in (".join(',', $this->aAddressRankList).")";
1211 $sSQL .= " ) UNION ";
1212 $sSQL .= " SELECT place_id FROM location_postcode lp ".$sWherePlaceId;
1213 $sSQL .= " AND (lp.rank_address between $this->iMinAddressRank and $this->iMaxAddressRank ";
1214 if ($this->aAddressRankList) {
1215 $sSQL .= " OR lp.rank_address in (".join(',', $this->aAddressRankList).")";
1218 if (CONST_Use_US_Tiger_Data && $this->iMaxAddressRank == 30) {
1220 $sSQL .= " SELECT place_id ";
1221 $sSQL .= " FROM location_property_tiger ".$sWherePlaceId;
1223 if ($this->iMaxAddressRank == 30) {
1225 $sSQL .= " SELECT place_id ";
1226 $sSQL .= " FROM location_property_osmline ".$sWherePlaceId;
1228 if (CONST_Debug) var_dump($sSQL);
1229 $aFilteredPlaceIDs = chksql($this->oDB->getCol($sSQL));
1231 foreach ($aFilteredPlaceIDs as $placeID) {
1232 $tempIDs[$placeID] = $aResultPlaceIDs[$placeID]; //assign housenumber to placeID
1234 $aResultPlaceIDs = $tempIDs;
1238 if (isset($aResultPlaceIDs) && sizeof($aResultPlaceIDs)) break;
1239 if ($iGroupLoop > 4) break;
1240 if ($iQueryLoop > 30) break;
1243 // Did we find anything?
1244 if (isset($aResultPlaceIDs) && sizeof($aResultPlaceIDs)) {
1245 $aSearchResults = $this->getDetails($aResultPlaceIDs, $oCtx);
1248 // Just interpret as a reverse geocode
1249 $oReverse = new ReverseGeocode($this->oDB);
1250 $oReverse->setZoom(18);
1252 $aLookup = $oReverse->lookupPoint($oCtx->sqlNear, false);
1254 if (CONST_Debug) var_dump("Reverse search", $aLookup);
1256 if ($aLookup['place_id']) {
1257 $aSearchResults = $this->getDetails(array($aLookup['place_id'] => -1), $oCtx);
1258 $aResultPlaceIDs[$aLookup['place_id']] = -1;
1260 $aSearchResults = array();
1265 if (!sizeof($aSearchResults)) {
1266 if ($this->bFallback) {
1267 if ($this->fallbackStructuredQuery()) {
1268 return $this->lookup();
1275 $aClassType = getClassTypesWithImportance();
1276 $aRecheckWords = preg_split('/\b[\s,\\-]*/u', $sQuery);
1277 foreach ($aRecheckWords as $i => $sWord) {
1278 if (!preg_match('/[\pL\pN]/', $sWord)) unset($aRecheckWords[$i]);
1282 echo '<i>Recheck words:<\i>';
1283 var_dump($aRecheckWords);
1286 $oPlaceLookup = new PlaceLookup($this->oDB);
1287 $oPlaceLookup->setIncludePolygonAsPoints($this->bIncludePolygonAsPoints);
1288 $oPlaceLookup->setIncludePolygonAsText($this->bIncludePolygonAsText);
1289 $oPlaceLookup->setIncludePolygonAsGeoJSON($this->bIncludePolygonAsGeoJSON);
1290 $oPlaceLookup->setIncludePolygonAsKML($this->bIncludePolygonAsKML);
1291 $oPlaceLookup->setIncludePolygonAsSVG($this->bIncludePolygonAsSVG);
1292 $oPlaceLookup->setPolygonSimplificationThreshold($this->fPolygonSimplificationThreshold);
1294 foreach ($aSearchResults as $iResNum => $aResult) {
1296 $fDiameter = getResultDiameter($aResult);
1298 $aOutlineResult = $oPlaceLookup->getOutlines($aResult['place_id'], $aResult['lon'], $aResult['lat'], $fDiameter/2);
1299 if ($aOutlineResult) {
1300 $aResult = array_merge($aResult, $aOutlineResult);
1303 if ($aResult['extra_place'] == 'city') {
1304 $aResult['class'] = 'place';
1305 $aResult['type'] = 'city';
1306 $aResult['rank_search'] = 16;
1309 // Is there an icon set for this type of result?
1310 if (isset($aClassType[$aResult['class'].':'.$aResult['type']]['icon'])
1311 && $aClassType[$aResult['class'].':'.$aResult['type']]['icon']
1313 $aResult['icon'] = CONST_Website_BaseURL.'images/mapicons/'.$aClassType[$aResult['class'].':'.$aResult['type']]['icon'].'.p.20.png';
1316 if (isset($aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['label'])
1317 && $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['label']
1319 $aResult['label'] = $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['label'];
1320 } elseif (isset($aClassType[$aResult['class'].':'.$aResult['type']]['label'])
1321 && $aClassType[$aResult['class'].':'.$aResult['type']]['label']
1323 $aResult['label'] = $aClassType[$aResult['class'].':'.$aResult['type']]['label'];
1325 // if tag '&addressdetails=1' is set in query
1326 if ($this->bIncludeAddressDetails) {
1327 // getAddressDetails() is defined in lib.php and uses the SQL function get_addressdata in functions.sql
1328 $aResult['address'] = getAddressDetails($this->oDB, $sLanguagePrefArraySQL, $aResult['place_id'], $aResult['country_code'], $aResultPlaceIDs[$aResult['place_id']]);
1329 if ($aResult['extra_place'] == 'city' && !isset($aResult['address']['city'])) {
1330 $aResult['address'] = array_merge(array('city' => array_values($aResult['address'])[0]), $aResult['address']);
1334 if ($this->bIncludeExtraTags) {
1335 if ($aResult['extra']) {
1336 $aResult['sExtraTags'] = json_decode($aResult['extra']);
1338 $aResult['sExtraTags'] = (object) array();
1342 if ($this->bIncludeNameDetails) {
1343 if ($aResult['names']) {
1344 $aResult['sNameDetails'] = json_decode($aResult['names']);
1346 $aResult['sNameDetails'] = (object) array();
1350 // Adjust importance for the number of exact string matches in the result
1351 $aResult['importance'] = max(0.001, $aResult['importance']);
1353 $sAddress = $aResult['langaddress'];
1354 foreach ($aRecheckWords as $i => $sWord) {
1355 if (stripos($sAddress, $sWord)!==false) {
1357 if (preg_match("/(^|,)\s*".preg_quote($sWord, '/')."\s*(,|$)/", $sAddress)) $iCountWords += 0.1;
1361 $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
1363 $aResult['name'] = $aResult['langaddress'];
1364 // secondary ordering (for results with same importance (the smaller the better):
1365 // - approximate importance of address parts
1366 $aResult['foundorder'] = -$aResult['addressimportance']/10;
1367 // - number of exact matches from the query
1368 if (isset($this->exactMatchCache[$aResult['place_id']])) {
1369 $aResult['foundorder'] -= $this->exactMatchCache[$aResult['place_id']];
1370 } elseif (isset($this->exactMatchCache[$aResult['parent_place_id']])) {
1371 $aResult['foundorder'] -= $this->exactMatchCache[$aResult['parent_place_id']];
1373 // - importance of the class/type
1374 if (isset($aClassType[$aResult['class'].':'.$aResult['type']]['importance'])
1375 && $aClassType[$aResult['class'].':'.$aResult['type']]['importance']
1377 $aResult['foundorder'] += 0.0001 * $aClassType[$aResult['class'].':'.$aResult['type']]['importance'];
1379 $aResult['foundorder'] += 0.01;
1381 if (CONST_Debug) var_dump($aResult);
1382 $aSearchResults[$iResNum] = $aResult;
1384 uasort($aSearchResults, 'byImportance');
1386 $aOSMIDDone = array();
1387 $aClassTypeNameDone = array();
1388 $aToFilter = $aSearchResults;
1389 $aSearchResults = array();
1392 foreach ($aToFilter as $iResNum => $aResult) {
1393 $this->aExcludePlaceIDs[$aResult['place_id']] = $aResult['place_id'];
1395 $fLat = $aResult['lat'];
1396 $fLon = $aResult['lon'];
1397 if (isset($aResult['zoom'])) $iZoom = $aResult['zoom'];
1400 if (!$this->bDeDupe || (!isset($aOSMIDDone[$aResult['osm_type'].$aResult['osm_id']])
1401 && !isset($aClassTypeNameDone[$aResult['osm_type'].$aResult['class'].$aResult['type'].$aResult['name'].$aResult['admin_level']]))
1403 $aOSMIDDone[$aResult['osm_type'].$aResult['osm_id']] = true;
1404 $aClassTypeNameDone[$aResult['osm_type'].$aResult['class'].$aResult['type'].$aResult['name'].$aResult['admin_level']] = true;
1405 $aSearchResults[] = $aResult;
1408 // Absolute limit on number of results
1409 if (sizeof($aSearchResults) >= $this->iFinalLimit) break;
1412 return $aSearchResults;