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);
853 $sNormQuery = $this->normTerm($this->sQuery);
854 $sLanguagePrefArraySQL = getArraySQL(
855 array_map("getDBQuoted", $this->aLangPrefOrder)
857 $sCountryCodesSQL = false;
858 if ($this->aCountryCodes) {
859 $sCountryCodesSQL = join(',', array_map('addQuotes', $this->aCountryCodes));
862 $sQuery = $this->sQuery;
863 if (!preg_match('//u', $sQuery)) {
864 userError("Query string is not UTF-8 encoded.");
867 // Conflicts between US state abreviations and various words for 'the' in different languages
868 if (isset($this->aLangPrefOrder['name:en'])) {
869 $sQuery = preg_replace('/(^|,)\s*il\s*(,|$)/', '\1illinois\2', $sQuery);
870 $sQuery = preg_replace('/(^|,)\s*al\s*(,|$)/', '\1alabama\2', $sQuery);
871 $sQuery = preg_replace('/(^|,)\s*la\s*(,|$)/', '\1louisiana\2', $sQuery);
874 // Do we have anything that looks like a lat/lon pair?
875 $sQuery = $oCtx->setNearPointFromQuery($sQuery);
877 $aSearchResults = array();
878 if ($sQuery || $this->aStructuredQuery) {
879 // Start with a single blank search
880 $aSearches = array(new SearchDescription($oCtx));
883 $sQuery = $aSearches[0]->extractKeyValuePairs($sQuery);
889 '/\\[([\\w ]*)\\]/u',
894 foreach ($aSpecialTermsRaw as $aSpecialTerm) {
895 $sQuery = str_replace($aSpecialTerm[0], ' ', $sQuery);
896 if (!$sSpecialTerm) {
897 $sSpecialTerm = $aSpecialTerm[1];
901 if (!$sSpecialTerm && $this->aStructuredQuery
902 && isset($this->aStructuredQuery['amenity'])) {
903 $sSpecialTerm = $this->aStructuredQuery['amenity'];
904 unset($this->aStructuredQuery['amenity']);
907 if ($sSpecialTerm && !$aSearches[0]->hasOperator()) {
908 $sSpecialTerm = pg_escape_string($sSpecialTerm);
910 $this->oDB->getOne("SELECT make_standard_name('$sSpecialTerm')"),
911 "Cannot decode query. Wrong encoding?"
913 $sSQL = 'SELECT class, type FROM word ';
914 $sSQL .= ' WHERE word_token in (\' '.$sToken.'\')';
915 $sSQL .= ' AND class is not null AND class not in (\'place\')';
916 if (CONST_Debug) var_Dump($sSQL);
917 $aSearchWords = chksql($this->oDB->getAll($sSQL));
918 $aNewSearches = array();
919 foreach ($aSearches as $oSearch) {
920 foreach ($aSearchWords as $aSearchTerm) {
921 $oNewSearch = clone $oSearch;
922 $oNewSearch->setPoiSearch(
924 $aSearchTerm['class'],
927 $aNewSearches[] = $oNewSearch;
930 $aSearches = $aNewSearches;
933 // Split query into phrases
934 // Commas are used to reduce the search space by indicating where phrases split
935 if ($this->aStructuredQuery) {
936 $aPhrases = $this->aStructuredQuery;
937 $bStructuredPhrases = true;
939 $aPhrases = explode(',', $sQuery);
940 $bStructuredPhrases = false;
943 // Convert each phrase to standard form
944 // Create a list of standard words
945 // Get all 'sets' of words
946 // Generate a complete list of all
948 foreach ($aPhrases as $iPhrase => $sPhrase) {
950 $this->oDB->getRow("SELECT make_standard_name('".pg_escape_string($sPhrase)."') as string"),
951 "Cannot normalize query string (is it a UTF-8 string?)"
953 if (trim($aPhrase['string'])) {
954 $aPhrases[$iPhrase] = $aPhrase;
955 $aPhrases[$iPhrase]['words'] = explode(' ', $aPhrases[$iPhrase]['string']);
956 $aPhrases[$iPhrase]['wordsets'] = getWordSets($aPhrases[$iPhrase]['words'], 0);
957 $aTokens = array_merge($aTokens, getTokensFromSets($aPhrases[$iPhrase]['wordsets']));
959 unset($aPhrases[$iPhrase]);
963 // Reindex phrases - we make assumptions later on that they are numerically keyed in order
964 $aPhraseTypes = array_keys($aPhrases);
965 $aPhrases = array_values($aPhrases);
967 if (sizeof($aTokens)) {
968 // Check which tokens we have, get the ID numbers
969 $sSQL = 'SELECT word_id, word_token, word, class, type, country_code, operator, search_name_count';
970 $sSQL .= ' FROM word ';
971 $sSQL .= ' WHERE word_token in ('.join(',', array_map("getDBQuoted", $aTokens)).')';
973 if (CONST_Debug) var_Dump($sSQL);
975 $aValidTokens = array();
976 $aDatabaseWords = chksql(
977 $this->oDB->getAll($sSQL),
978 "Could not get word tokens."
980 $aPossibleMainWordIDs = array();
981 $aWordFrequencyScores = array();
982 foreach ($aDatabaseWords as $aToken) {
983 // Very special case - require 2 letter country param to match the country code found
984 if ($bStructuredPhrases && $aToken['country_code'] && !empty($this->aStructuredQuery['country'])
985 && strlen($this->aStructuredQuery['country']) == 2 && strtolower($this->aStructuredQuery['country']) != $aToken['country_code']
990 if (isset($aValidTokens[$aToken['word_token']])) {
991 $aValidTokens[$aToken['word_token']][] = $aToken;
993 $aValidTokens[$aToken['word_token']] = array($aToken);
995 if (!$aToken['class'] && !$aToken['country_code']) $aPossibleMainWordIDs[$aToken['word_id']] = 1;
996 $aWordFrequencyScores[$aToken['word_id']] = $aToken['search_name_count'] + 1;
998 if (CONST_Debug) var_Dump($aPhrases, $aValidTokens);
1000 // US ZIP+4 codes - if there is no token, merge in the 5-digit ZIP code
1001 foreach ($aTokens as $sToken) {
1002 if (!isset($aValidTokens[$sToken]) && preg_match('/^([0-9]{5}) [0-9]{4}$/', $sToken, $aData)) {
1003 if (isset($aValidTokens[$aData[1]])) {
1004 foreach ($aValidTokens[$aData[1]] as $aToken) {
1005 if (!$aToken['class']) {
1006 if (isset($aValidTokens[$sToken])) {
1007 $aValidTokens[$sToken][] = $aToken;
1009 $aValidTokens[$sToken] = array($aToken);
1017 foreach ($aTokens as $sToken) {
1018 // Unknown single word token with a number - assume it is a house number
1019 if (!isset($aValidTokens[' '.$sToken]) && strpos($sToken, ' ') === false && preg_match('/^[0-9]+$/', $sToken)) {
1020 $aValidTokens[' '.$sToken] = array(array('class' => 'place', 'type' => 'house', 'word_token' => ' '.$sToken));
1024 // Any words that have failed completely?
1025 // TODO: suggestions
1027 // Start the search process
1028 // array with: placeid => -1 | tiger-housenumber
1029 $aResultPlaceIDs = array();
1031 $aGroupedSearches = $this->getGroupedSearches($aSearches, $aPhraseTypes, $aPhrases, $aValidTokens, $aWordFrequencyScores, $bStructuredPhrases, $sNormQuery);
1033 if ($this->bReverseInPlan) {
1034 // Reverse phrase array and also reverse the order of the wordsets in
1035 // the first and final phrase. Don't bother about phrases in the middle
1036 // because order in the address doesn't matter.
1037 $aPhrases = array_reverse($aPhrases);
1038 $aPhrases[0]['wordsets'] = getInverseWordSets($aPhrases[0]['words'], 0);
1039 if (sizeof($aPhrases) > 1) {
1040 $aFinalPhrase = end($aPhrases);
1041 $aPhrases[sizeof($aPhrases)-1]['wordsets'] = getInverseWordSets($aFinalPhrase['words'], 0);
1043 $aReverseGroupedSearches = $this->getGroupedSearches($aSearches, null, $aPhrases, $aValidTokens, $aWordFrequencyScores, false, $sNormQuery);
1045 foreach ($aGroupedSearches as $aSearches) {
1046 foreach ($aSearches as $aSearch) {
1047 if (!isset($aReverseGroupedSearches[$aSearch->getRank()])) {
1048 $aReverseGroupedSearches[$aSearch->getRank()] = array();
1050 $aReverseGroupedSearches[$aSearch->getRank()][] = $aSearch;
1054 $aGroupedSearches = $aReverseGroupedSearches;
1055 ksort($aGroupedSearches);
1058 // Re-group the searches by their score, junk anything over 20 as just not worth trying
1059 $aGroupedSearches = array();
1060 foreach ($aSearches as $aSearch) {
1061 if ($aSearch->getRank() < $this->iMaxRank) {
1062 if (!isset($aGroupedSearches[$aSearch->getRank()])) $aGroupedSearches[$aSearch->getRank()] = array();
1063 $aGroupedSearches[$aSearch->getRank()][] = $aSearch;
1066 ksort($aGroupedSearches);
1069 // Filter out duplicate searches
1070 $aSearchHash = array();
1071 foreach ($aGroupedSearches as $iGroup => $aSearches) {
1072 foreach ($aSearches as $iSearch => $aSearch) {
1073 $sHash = serialize($aSearch);
1074 if (isset($aSearchHash[$sHash])) {
1075 unset($aGroupedSearches[$iGroup][$iSearch]);
1076 if (sizeof($aGroupedSearches[$iGroup]) == 0) unset($aGroupedSearches[$iGroup]);
1078 $aSearchHash[$sHash] = 1;
1083 if (CONST_Debug) _debugDumpGroupedSearches($aGroupedSearches, $aValidTokens);
1087 foreach ($aGroupedSearches as $iGroupedRank => $aSearches) {
1089 foreach ($aSearches as $oSearch) {
1091 $searchedHousenumber = -1;
1093 if (CONST_Debug) echo "<hr><b>Search Loop, group $iGroupLoop, loop $iQueryLoop</b>";
1094 if (CONST_Debug) _debugDumpGroupedSearches(array($iGroupedRank => array($oSearch)), $aValidTokens);
1096 $aPlaceIDs = array();
1097 if ($oSearch->isCountrySearch()) {
1098 // Just looking for a country - look it up
1099 if (4 >= $this->iMinAddressRank && 4 <= $this->iMaxAddressRank) {
1100 $aPlaceIDs = $oSearch->queryCountry($this->oDB);
1102 } elseif (!$oSearch->isNamedSearch()) {
1103 // looking for a POI in a geographic area
1104 if (!$oCtx->isBoundedSearch()) {
1108 $aPlaceIDs = $oSearch->queryNearbyPoi(
1111 $this->aExcludePlaceIDs ? join(',', $this->aExcludePlaceIDs) : '',
1114 } elseif ($oSearch->isOperator(Operator::POSTCODE)) {
1115 $aPlaceIDs = $oSearch->queryPostcode(
1122 // First search for places according to name and address.
1123 $aNamedPlaceIDs = $oSearch->queryNamedPlace(
1125 $aWordFrequencyScores,
1127 $this->iMinAddressRank,
1128 $this->iMaxAddressRank,
1129 $this->aExcludePlaceIDs ? join(',', $this->aExcludePlaceIDs) : '',
1133 if (sizeof($aNamedPlaceIDs)) {
1134 foreach ($aNamedPlaceIDs as $aRow) {
1135 $aPlaceIDs[] = $aRow['place_id'];
1136 $this->exactMatchCache[$aRow['place_id']] = $aRow['exactmatch'];
1140 //now search for housenumber, if housenumber provided
1141 if ($oSearch->hasHouseNumber() && sizeof($aPlaceIDs)) {
1142 $aResult = $oSearch->queryHouseNumber(
1145 $this->aExcludePlaceIDs ? join(',', $this->aExcludePlaceIDs) : '',
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(
1162 $this->aExcludePlaceIDs ? join(',', $this->aExcludePlaceIDs) : '',
1169 echo "<br><b>Place IDs:</b> ";
1170 var_Dump($aPlaceIDs);
1173 if (sizeof($aPlaceIDs) && $oSearch->getPostcode()) {
1174 $sSQL = 'SELECT place_id FROM placex';
1175 $sSQL .= ' WHERE place_id in ('.join(',', $aPlaceIDs).')';
1176 $sSQL .= " AND postcode = '".$oSearch->getPostcode()."'";
1177 if (CONST_Debug) var_dump($sSQL);
1178 $aFilteredPlaceIDs = chksql($this->oDB->getCol($sSQL));
1179 if ($aFilteredPlaceIDs) {
1180 $aPlaceIDs = $aFilteredPlaceIDs;
1182 echo "<br><b>Place IDs after postcode filtering:</b> ";
1183 var_Dump($aPlaceIDs);
1188 foreach ($aPlaceIDs as $iPlaceID) {
1189 // array for placeID => -1 | Tiger housenumber
1190 $aResultPlaceIDs[$iPlaceID] = $searchedHousenumber;
1192 if ($iQueryLoop > 20) break;
1195 if (isset($aResultPlaceIDs) && sizeof($aResultPlaceIDs) && ($this->iMinAddressRank != 0 || $this->iMaxAddressRank != 30)) {
1196 // Need to verify passes rank limits before dropping out of the loop (yuk!)
1197 // reduces the number of place ids, like a filter
1198 // rank_address is 30 for interpolated housenumbers
1199 $sWherePlaceId = 'WHERE place_id in (';
1200 $sWherePlaceId .= join(',', array_keys($aResultPlaceIDs)).') ';
1202 $sSQL = "SELECT place_id ";
1203 $sSQL .= "FROM placex ".$sWherePlaceId;
1205 $sSQL .= " placex.rank_address between $this->iMinAddressRank and $this->iMaxAddressRank ";
1206 if (14 >= $this->iMinAddressRank && 14 <= $this->iMaxAddressRank) {
1207 $sSQL .= " OR (extratags->'place') = 'city'";
1209 if ($this->aAddressRankList) {
1210 $sSQL .= " OR placex.rank_address in (".join(',', $this->aAddressRankList).")";
1212 $sSQL .= " ) UNION ";
1213 $sSQL .= " SELECT place_id FROM location_postcode lp ".$sWherePlaceId;
1214 $sSQL .= " AND (lp.rank_address between $this->iMinAddressRank and $this->iMaxAddressRank ";
1215 if ($this->aAddressRankList) {
1216 $sSQL .= " OR lp.rank_address in (".join(',', $this->aAddressRankList).")";
1219 if (CONST_Use_US_Tiger_Data && $this->iMaxAddressRank == 30) {
1221 $sSQL .= " SELECT place_id ";
1222 $sSQL .= " FROM location_property_tiger ".$sWherePlaceId;
1224 if ($this->iMaxAddressRank == 30) {
1226 $sSQL .= " SELECT place_id ";
1227 $sSQL .= " FROM location_property_osmline ".$sWherePlaceId;
1229 if (CONST_Debug) var_dump($sSQL);
1230 $aFilteredPlaceIDs = chksql($this->oDB->getCol($sSQL));
1232 foreach ($aFilteredPlaceIDs as $placeID) {
1233 $tempIDs[$placeID] = $aResultPlaceIDs[$placeID]; //assign housenumber to placeID
1235 $aResultPlaceIDs = $tempIDs;
1239 if (isset($aResultPlaceIDs) && sizeof($aResultPlaceIDs)) break;
1240 if ($iGroupLoop > 4) break;
1241 if ($iQueryLoop > 30) break;
1244 // Did we find anything?
1245 if (isset($aResultPlaceIDs) && sizeof($aResultPlaceIDs)) {
1246 $aSearchResults = $this->getDetails($aResultPlaceIDs, $oCtx);
1249 // Just interpret as a reverse geocode
1250 $oReverse = new ReverseGeocode($this->oDB);
1251 $oReverse->setZoom(18);
1253 $aLookup = $oReverse->lookupPoint($oCtx->sqlNear, false);
1255 if (CONST_Debug) var_dump("Reverse search", $aLookup);
1257 if ($aLookup['place_id']) {
1258 $aSearchResults = $this->getDetails(array($aLookup['place_id'] => -1), $oCtx);
1259 $aResultPlaceIDs[$aLookup['place_id']] = -1;
1261 $aSearchResults = array();
1266 if (!sizeof($aSearchResults)) {
1267 if ($this->bFallback) {
1268 if ($this->fallbackStructuredQuery()) {
1269 return $this->lookup();
1276 $aClassType = getClassTypesWithImportance();
1277 $aRecheckWords = preg_split('/\b[\s,\\-]*/u', $sQuery);
1278 foreach ($aRecheckWords as $i => $sWord) {
1279 if (!preg_match('/[\pL\pN]/', $sWord)) unset($aRecheckWords[$i]);
1283 echo '<i>Recheck words:<\i>';
1284 var_dump($aRecheckWords);
1287 $oPlaceLookup = new PlaceLookup($this->oDB);
1288 $oPlaceLookup->setIncludePolygonAsPoints($this->bIncludePolygonAsPoints);
1289 $oPlaceLookup->setIncludePolygonAsText($this->bIncludePolygonAsText);
1290 $oPlaceLookup->setIncludePolygonAsGeoJSON($this->bIncludePolygonAsGeoJSON);
1291 $oPlaceLookup->setIncludePolygonAsKML($this->bIncludePolygonAsKML);
1292 $oPlaceLookup->setIncludePolygonAsSVG($this->bIncludePolygonAsSVG);
1293 $oPlaceLookup->setPolygonSimplificationThreshold($this->fPolygonSimplificationThreshold);
1295 foreach ($aSearchResults as $iResNum => $aResult) {
1297 $fDiameter = getResultDiameter($aResult);
1299 $aOutlineResult = $oPlaceLookup->getOutlines($aResult['place_id'], $aResult['lon'], $aResult['lat'], $fDiameter/2);
1300 if ($aOutlineResult) {
1301 $aResult = array_merge($aResult, $aOutlineResult);
1304 if ($aResult['extra_place'] == 'city') {
1305 $aResult['class'] = 'place';
1306 $aResult['type'] = 'city';
1307 $aResult['rank_search'] = 16;
1310 // Is there an icon set for this type of result?
1311 if (isset($aClassType[$aResult['class'].':'.$aResult['type']]['icon'])
1312 && $aClassType[$aResult['class'].':'.$aResult['type']]['icon']
1314 $aResult['icon'] = CONST_Website_BaseURL.'images/mapicons/'.$aClassType[$aResult['class'].':'.$aResult['type']]['icon'].'.p.20.png';
1317 if (isset($aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['label'])
1318 && $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['label']
1320 $aResult['label'] = $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['label'];
1321 } elseif (isset($aClassType[$aResult['class'].':'.$aResult['type']]['label'])
1322 && $aClassType[$aResult['class'].':'.$aResult['type']]['label']
1324 $aResult['label'] = $aClassType[$aResult['class'].':'.$aResult['type']]['label'];
1326 // if tag '&addressdetails=1' is set in query
1327 if ($this->bIncludeAddressDetails) {
1328 // getAddressDetails() is defined in lib.php and uses the SQL function get_addressdata in functions.sql
1329 $aResult['address'] = getAddressDetails($this->oDB, $sLanguagePrefArraySQL, $aResult['place_id'], $aResult['country_code'], $aResultPlaceIDs[$aResult['place_id']]);
1330 if ($aResult['extra_place'] == 'city' && !isset($aResult['address']['city'])) {
1331 $aResult['address'] = array_merge(array('city' => array_values($aResult['address'])[0]), $aResult['address']);
1335 if ($this->bIncludeExtraTags) {
1336 if ($aResult['extra']) {
1337 $aResult['sExtraTags'] = json_decode($aResult['extra']);
1339 $aResult['sExtraTags'] = (object) array();
1343 if ($this->bIncludeNameDetails) {
1344 if ($aResult['names']) {
1345 $aResult['sNameDetails'] = json_decode($aResult['names']);
1347 $aResult['sNameDetails'] = (object) array();
1351 // Adjust importance for the number of exact string matches in the result
1352 $aResult['importance'] = max(0.001, $aResult['importance']);
1354 $sAddress = $aResult['langaddress'];
1355 foreach ($aRecheckWords as $i => $sWord) {
1356 if (stripos($sAddress, $sWord)!==false) {
1358 if (preg_match("/(^|,)\s*".preg_quote($sWord, '/')."\s*(,|$)/", $sAddress)) $iCountWords += 0.1;
1362 $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
1364 $aResult['name'] = $aResult['langaddress'];
1365 // secondary ordering (for results with same importance (the smaller the better):
1366 // - approximate importance of address parts
1367 $aResult['foundorder'] = -$aResult['addressimportance']/10;
1368 // - number of exact matches from the query
1369 if (isset($this->exactMatchCache[$aResult['place_id']])) {
1370 $aResult['foundorder'] -= $this->exactMatchCache[$aResult['place_id']];
1371 } elseif (isset($this->exactMatchCache[$aResult['parent_place_id']])) {
1372 $aResult['foundorder'] -= $this->exactMatchCache[$aResult['parent_place_id']];
1374 // - importance of the class/type
1375 if (isset($aClassType[$aResult['class'].':'.$aResult['type']]['importance'])
1376 && $aClassType[$aResult['class'].':'.$aResult['type']]['importance']
1378 $aResult['foundorder'] += 0.0001 * $aClassType[$aResult['class'].':'.$aResult['type']]['importance'];
1380 $aResult['foundorder'] += 0.01;
1382 if (CONST_Debug) var_dump($aResult);
1383 $aSearchResults[$iResNum] = $aResult;
1385 uasort($aSearchResults, 'byImportance');
1387 $aOSMIDDone = array();
1388 $aClassTypeNameDone = array();
1389 $aToFilter = $aSearchResults;
1390 $aSearchResults = array();
1393 foreach ($aToFilter as $iResNum => $aResult) {
1394 $this->aExcludePlaceIDs[$aResult['place_id']] = $aResult['place_id'];
1396 $fLat = $aResult['lat'];
1397 $fLon = $aResult['lon'];
1398 if (isset($aResult['zoom'])) $iZoom = $aResult['zoom'];
1401 if (!$this->bDeDupe || (!isset($aOSMIDDone[$aResult['osm_type'].$aResult['osm_id']])
1402 && !isset($aClassTypeNameDone[$aResult['osm_type'].$aResult['class'].$aResult['type'].$aResult['name'].$aResult['admin_level']]))
1404 $aOSMIDDone[$aResult['osm_type'].$aResult['osm_id']] = true;
1405 $aClassTypeNameDone[$aResult['osm_type'].$aResult['class'].$aResult['type'].$aResult['name'].$aResult['admin_level']] = true;
1406 $aSearchResults[] = $aResult;
1409 // Absolute limit on number of results
1410 if (sizeof($aSearchResults) >= $this->iFinalLimit) break;
1413 return $aSearchResults;