]> git.openstreetmap.org Git - nominatim.git/blob - lib/lib.php
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / lib / lib.php
1 <?php
2
3         function failInternalError($sError, $sSQL = false, $vDumpVar = false)
4         {
5                 header('HTTP/1.0 500 Internal Server Error');
6                 header('Content-type: text/html; charset=utf-8');
7                 echo "<html><body><h1>Internal Server Error</h1>";
8                 echo '<p>Nominatim has encountered an internal error while processing your request. This is most likely because of a bug in the software.</p>';
9                 echo "<p><b>Details:</b> ".$sError,"</p>";
10                 echo '<p>Feel free to report the bug in the <a href="http://trac.openstreetmap.org">OSM bug database</a>. Please include the error message above and the URL you used.</p>';
11                 if (CONST_Debug)
12                 {
13                         echo "<hr><h2>Debugging Information</h2><br>";
14                         if ($sSQL)
15                         {
16                                 echo "<h3>SQL query</h3><code>".$sSQL."</code>";
17                         }
18                         if ($vDumpVar)
19                         {
20                                 echo "<h3>Result</h3> <code>";
21                                 var_dump($vDumpVar);
22                                 echo "</code>";
23                         }
24                 }
25                 echo "\n</body></html>\n";
26                 exit;
27         }
28
29
30         function userError($sError)
31         {
32                 header('HTTP/1.0 400 Bad Request');
33                 header('Content-type: text/html; charset=utf-8');
34                 echo "<html><body><h1>Bad Request</h1>";
35                 echo '<p>Nominatim has encountered an error with your request.</p>';
36                 echo "<p><b>Details:</b> ".$sError,"</p>";
37                 echo '<p>If you feel this error is incorrect feel free to report the bug in the <a href="http://trac.openstreetmap.org">OSM bug database</a>. Please include the error message above and the URL you used.</p>';
38                 echo "\n</body></html>\n";
39                 exit;
40         }
41
42
43         function fail($sError, $sUserError = false)
44         {
45                 if (!$sUserError) $sUserError = $sError;
46                 error_log('ERROR: '.$sError);
47                 echo $sUserError."\n";
48                 exit;
49         }
50
51
52         function getBlockingProcesses()
53         {
54                 $sStats = file_get_contents('/proc/stat');
55                 if (preg_match('/procs_blocked ([0-9]+)/i', $sStats, $aMatches))
56                 {
57                         return (int)$aMatches[1];
58                 }
59                 return 0;
60         }
61
62
63         function getLoadAverage()
64         {
65                 $sLoadAverage = file_get_contents('/proc/loadavg');
66                 $aLoadAverage = explode(' ',$sLoadAverage);
67                 return (float)$aLoadAverage[0];
68         }
69
70
71         function getProcessorCount()
72         {
73                 $sCPU = file_get_contents('/proc/cpuinfo');
74                 preg_match_all('#processor      : [0-9]+#', $sCPU, $aMatches);
75                 return sizeof($aMatches[0]);
76         }
77
78
79         function getTotalMemoryMB()
80         {
81                 $sCPU = file_get_contents('/proc/meminfo');
82                 preg_match('#MemTotal: +([0-9]+) kB#', $sCPU, $aMatches);
83                 return (int)($aMatches[1]/1024);
84         }
85
86
87         function getCacheMemoryMB()
88         {
89                 $sCPU = file_get_contents('/proc/meminfo');
90                 preg_match('#Cached: +([0-9]+) kB#', $sCPU, $aMatches);
91                 return (int)($aMatches[1]/1024);
92         }
93
94
95         function bySearchRank($a, $b)
96         {
97                 if ($a['iSearchRank'] == $b['iSearchRank']) return 0;
98                 return ($a['iSearchRank'] < $b['iSearchRank']?-1:1);
99         }
100
101
102         function byImportance($a, $b)
103         {
104                 if ($a['importance'] != $b['importance'])
105                         return ($a['importance'] > $b['importance']?-1:1);
106                 /*
107                    if ($a['aPointPolygon']['numfeatures'] != $b['aPointPolygon']['numfeatures'])
108                    return ($a['aPointPolygon']['numfeatures'] > $b['aPointPolygon']['numfeatures']?-1:1);
109                    if ($a['aPointPolygon']['area'] != $b['aPointPolygon']['area'])
110                    return ($a['aPointPolygon']['area'] > $b['aPointPolygon']['area']?-1:1);
111                 //              if ($a['levenshtein'] != $b['levenshtein'])
112                 //                      return ($a['levenshtein'] < $b['levenshtein']?-1:1);
113                 if ($a['rank_search'] != $b['rank_search'])
114                 return ($a['rank_search'] < $b['rank_search']?-1:1);
115                  */
116                 return ($a['foundorder'] < $b['foundorder']?-1:1);
117         }
118
119
120         function getPreferredLanguages()
121         {
122                 // If we have been provided the value in $_GET it overrides browser value
123                 if (isset($_GET['accept-language']) && $_GET['accept-language'])
124                 {
125                         $_SERVER["HTTP_ACCEPT_LANGUAGE"] = $_GET['accept-language'];
126                 }
127
128                 $aLanguages = array();
129                 if (isset($_SERVER["HTTP_ACCEPT_LANGUAGE"]))
130                 {
131                         if (preg_match_all('/(([a-z]{1,8})(-[a-z]{1,8})?)\s*(;\s*q\s*=\s*(1|0\.[0-9]+))?/i', $_SERVER['HTTP_ACCEPT_LANGUAGE'], $aLanguagesParse, PREG_SET_ORDER))
132                         {
133                                 foreach($aLanguagesParse as $iLang => $aLanguage)
134                                 {
135                                         $aLanguages[$aLanguage[1]] = isset($aLanguage[5])?(float)$aLanguage[5]:1 - ($iLang/100);
136                                         if (!isset($aLanguages[$aLanguage[2]])) $aLanguages[$aLanguage[2]] = $aLanguages[$aLanguage[1]]/10;
137                                 }
138                                 arsort($aLanguages);
139                         }
140                 }
141                 if (!sizeof($aLanguages) && CONST_Default_Language) $aLanguages = array(CONST_Default_Language=>1);
142                 foreach($aLanguages as $sLangauge => $fLangauagePref)
143                 {
144                         $aLangPrefOrder['short_name:'.$sLangauge] = 'short_name:'.$sLangauge;
145                 }
146                 foreach($aLanguages as $sLangauge => $fLangauagePref)
147                 {
148                         $aLangPrefOrder['name:'.$sLangauge] = 'name:'.$sLangauge;
149                 }
150                 foreach($aLanguages as $sLangauge => $fLangauagePref)
151                 {
152                         $aLangPrefOrder['place_name:'.$sLangauge] = 'place_name:'.$sLangauge;
153                 }
154                 foreach($aLanguages as $sLangauge => $fLangauagePref)
155                 {
156                         $aLangPrefOrder['official_name:'.$sLangauge] = 'official_name:'.$sLangauge;
157                 }
158                 $aLangPrefOrder['short_name'] = 'short_name';
159                 $aLangPrefOrder['name'] = 'name';
160                 $aLangPrefOrder['place_name'] = 'place_name';
161                 $aLangPrefOrder['official_name'] = 'official_name';
162                 $aLangPrefOrder['ref'] = 'ref';
163                 $aLangPrefOrder['type'] = 'type';
164                 return $aLangPrefOrder;
165         }
166
167
168         function getWordSets($aWords, $iDepth)
169         {
170                 $aResult = array(array(join(' ',$aWords)));
171                 $sFirstToken = '';
172                 if ($iDepth < 7) {
173                         while(sizeof($aWords) > 1)
174                         {
175                                 $sWord = array_shift($aWords);
176                                 $sFirstToken .= ($sFirstToken?' ':'').$sWord;
177                                 $aRest = getWordSets($aWords, $iDepth+1);
178                                 foreach($aRest as $aSet)
179                                 {
180                                         $aResult[] = array_merge(array($sFirstToken),$aSet);
181                                 }
182                         }
183                 }
184                 return $aResult;
185         }
186
187
188         function getTokensFromSets($aSets)
189         {
190                 $aTokens = array();
191                 foreach($aSets as $aSet)
192                 {
193                         foreach($aSet as $sWord)
194                         {
195                                 $aTokens[' '.$sWord] = ' '.$sWord;
196                                 $aTokens[$sWord] = $sWord;
197                                 //if (!strpos($sWord,' ')) $aTokens[$sWord] = $sWord;
198                         }
199                 }
200                 return $aTokens;
201         }
202
203
204         /*
205            GB Postcode functions
206          */
207
208         function gbPostcodeAlphaDifference($s1, $s2)
209         {
210                 $aValues = array(
211                                 'A'=>0,
212                                 'B'=>1,
213                                 'D'=>2,
214                                 'E'=>3,
215                                 'F'=>4,
216                                 'G'=>5,
217                                 'H'=>6,
218                                 'J'=>7,
219                                 'L'=>8,
220                                 'N'=>9,
221                                 'O'=>10,
222                                 'P'=>11,
223                                 'Q'=>12,
224                                 'R'=>13,
225                                 'S'=>14,
226                                 'T'=>15,
227                                 'U'=>16,
228                                 'W'=>17,
229                                 'X'=>18,
230                                 'Y'=>19,
231                                 'Z'=>20);
232                 return abs(($aValues[$s1[0]]*21+$aValues[$s1[1]]) - ($aValues[$s2[0]]*21+$aValues[$s2[1]]));
233         }
234
235
236         function gbPostcodeCalculate($sPostcode, $sPostcodeSector, $sPostcodeEnd, &$oDB)
237         {
238                 // Try an exact match on the gb_postcode table
239                 $sSQL = 'select \'AA\', ST_X(ST_Centroid(geometry)) as lon,ST_Y(ST_Centroid(geometry)) as lat from gb_postcode where postcode = \''.$sPostcode.'\'';
240                 $aNearPostcodes = $oDB->getAll($sSQL);
241                 if (PEAR::IsError($aNearPostcodes))
242                 {
243                         var_dump($sSQL, $aNearPostcodes);
244                         exit;
245                 }
246
247                 if (sizeof($aNearPostcodes))
248                 {
249                         return array(array('lat' => $aNearPostcodes[0]['lat'], 'lon' => $aNearPostcodes[0]['lon'], 'radius' => 0.005));
250                 }
251
252                 return false;
253         }
254
255
256         function usPostcodeCalculate($sPostcode, &$oDB)
257         {
258                 $iZipcode = (int)$sPostcode;
259
260                 // Try an exact match on the us_zippostcode table
261                 $sSQL = 'select zipcode, ST_X(ST_Centroid(geometry)) as lon,ST_Y(ST_Centroid(geometry)) as lat from us_zipcode where zipcode = '.$iZipcode;
262                 $aNearPostcodes = $oDB->getAll($sSQL);
263                 if (PEAR::IsError($aNearPostcodes))
264                 {
265                         var_dump($sSQL, $aNearPostcodes);
266                         exit;
267                 }
268
269                 if (!sizeof($aNearPostcodes))
270                 {
271                         $sSQL = 'select zipcode,ST_X(ST_Centroid(geometry)) as lon,ST_Y(ST_Centroid(geometry)) as lat from us_zipcode where zipcode between '.($iZipcode-100).' and '.($iZipcode+100).' order by abs(zipcode - '.$iZipcode.') asc limit 5';
272                         $aNearPostcodes = $oDB->getAll($sSQL);
273                         if (PEAR::IsError($aNearPostcodes))
274                         {
275                                 var_dump($sSQL, $aNearPostcodes);
276                                 exit;
277                         }
278                 }
279
280                 if (!sizeof($aNearPostcodes))
281                 {
282                         return false;
283                 }
284
285                 $fTotalLat = 0;
286                 $fTotalLon = 0;
287                 $fTotalFac = 0;
288                 foreach($aNearPostcodes as $aPostcode)
289                 {
290                         $iDiff = abs($aPostcode['zipcode'] - $iZipcode) + 1;
291                         if ($iDiff == 0)
292                                 $fFac = 1;
293                         else
294                                 $fFac = 1/($iDiff*$iDiff);
295
296                         $fTotalFac += $fFac;
297                         $fTotalLat += $aPostcode['lat'] * $fFac;
298                         $fTotalLon += $aPostcode['lon'] * $fFac;
299                 }
300                 if ($fTotalFac)
301                 {
302                         $fLat = $fTotalLat / $fTotalFac;
303                         $fLon = $fTotalLon / $fTotalFac;
304                         return array(array('lat' => $fLat, 'lon' => $fLon, 'radius' => 0.2));
305                 }
306                 return false;
307
308                 /*
309                    $fTotalFac is a surprisingly good indicator of accuracy
310                    $iZoom = 18 + round(log($fTotalFac,32));
311                    $iZoom = max(13,min(18,$iZoom));
312                  */
313         }
314
315
316         function getClassTypes()
317         {
318                 return array(
319  'boundary:administrative:1' => array('label'=>'Continent','frequency'=>0,'icon'=>'poi_boundary_administrative', 'defdiameter' => 0.32,),
320  'boundary:administrative:2' => array('label'=>'Country','frequency'=>0,'icon'=>'poi_boundary_administrative', 'defdiameter' => 0.32,),
321  'place:country' => array('label'=>'Country','frequency'=>0,'icon'=>'poi_boundary_administrative','defzoom'=>6, 'defdiameter' => 15,),
322  'boundary:administrative:3' => array('label'=>'State','frequency'=>0,'icon'=>'poi_boundary_administrative', 'defdiameter' => 0.32,),
323  'boundary:administrative:4' => array('label'=>'State','frequency'=>0,'icon'=>'poi_boundary_administrative', 'defdiameter' => 0.32,),
324  'place:state' => array('label'=>'State','frequency'=>0,'icon'=>'poi_boundary_administrative','defzoom'=>8, 'defdiameter' => 5.12,),
325  'boundary:administrative:5' => array('label'=>'State District','frequency'=>0,'icon'=>'poi_boundary_administrative', 'defdiameter' => 0.32,),
326  'boundary:administrative:6' => array('label'=>'County','frequency'=>0,'icon'=>'poi_boundary_administrative', 'defdiameter' => 0.32,),
327  'boundary:administrative:7' => array('label'=>'County','frequency'=>0,'icon'=>'poi_boundary_administrative', 'defdiameter' => 0.32,),
328  'place:county' => array('label'=>'County','frequency'=>108,'icon'=>'poi_boundary_administrative','defzoom'=>10, 'defdiameter' => 1.28,),
329  'boundary:administrative:8' => array('label'=>'City','frequency'=>0,'icon'=>'poi_boundary_administrative', 'defdiameter' => 0.32,),
330  'place:city' => array('label'=>'City','frequency'=>66,'icon'=>'poi_place_city','defzoom'=>12, 'defdiameter' => 0.32,),
331  'boundary:administrative:9' => array('label'=>'City District','frequency'=>0,'icon'=>'poi_boundary_administrative', 'defdiameter' => 0.32,),
332  'boundary:administrative:10' => array('label'=>'Suburb','frequency'=>0,'icon'=>'poi_boundary_administrative', 'defdiameter' => 0.32,),
333  'boundary:administrative:11' => array('label'=>'Neighbourhood','frequency'=>0,'icon'=>'poi_boundary_administrative', 'defdiameter' => 0.32,),
334  'place:region' => array('label'=>'Region','frequency'=>0,'icon'=>'poi_boundary_administrative','defzoom'=>8, 'defdiameter' => 0.04,),
335  'place:island' => array('label'=>'Island','frequency'=>288,'icon'=>'','defzoom'=>11, 'defdiameter' => 0.64,),
336  'boundary:administrative' => array('label'=>'Administrative','frequency'=>413,'icon'=>'poi_boundary_administrative', 'defdiameter' => 0.32,),
337  'boundary:postal_code' => array('label'=>'Postcode','frequency'=>413,'icon'=>'poi_boundary_administrative', 'defdiameter' => 0.32,),
338  'place:town' => array('label'=>'Town','frequency'=>1497,'icon'=>'poi_place_town','defzoom'=>14, 'defdiameter' => 0.08,),
339  'place:village' => array('label'=>'Village','frequency'=>11230,'icon'=>'poi_place_village','defzoom'=>15, 'defdiameter' => 0.04,),
340  'place:hamlet' => array('label'=>'Hamlet','frequency'=>7075,'icon'=>'poi_place_village','defzoom'=>15, 'defdiameter' => 0.04,),
341  'place:suburb' => array('label'=>'Suburb','frequency'=>2528,'icon'=>'poi_place_village', 'defdiameter' => 0.04,),
342  'place:locality' => array('label'=>'Locality','frequency'=>4113,'icon'=>'poi_place_village', 'defdiameter' => 0.02,),
343  'landuse:farm' => array('label'=>'Farm','frequency'=>1201,'icon'=>'', 'defdiameter' => 0.02,),
344  'place:farm' => array('label'=>'Farm','frequency'=>1162,'icon'=>'', 'defdiameter' => 0.02,),
345
346  'highway:motorway_junction' => array('label'=>'Motorway Junction','frequency'=>1126,'icon'=>'','simplelabel'=>'Road',),
347  'highway:motorway' => array('label'=>'Motorway','frequency'=>4627,'icon'=>'','simplelabel'=>'Road',),
348  'highway:trunk' => array('label'=>'Trunk','frequency'=>23084,'icon'=>'','simplelabel'=>'Road',),
349  'highway:primary' => array('label'=>'Primary','frequency'=>32138,'icon'=>'','simplelabel'=>'Road',),
350  'highway:secondary' => array('label'=>'Secondary','frequency'=>25807,'icon'=>'','simplelabel'=>'Road',),
351  'highway:tertiary' => array('label'=>'Tertiary','frequency'=>29829,'icon'=>'','simplelabel'=>'Road',),
352  'highway:residential' => array('label'=>'Residential','frequency'=>361498,'icon'=>'','simplelabel'=>'Road',),
353  'highway:unclassified' => array('label'=>'Unclassified','frequency'=>66441,'icon'=>'','simplelabel'=>'Road',),
354  'highway:living_street' => array('label'=>'Living Street','frequency'=>710,'icon'=>'','simplelabel'=>'Road',),
355  'highway:service' => array('label'=>'Service','frequency'=>9963,'icon'=>'','simplelabel'=>'Road',),
356  'highway:track' => array('label'=>'Track','frequency'=>2565,'icon'=>'','simplelabel'=>'Road',),
357  'highway:road' => array('label'=>'Road','frequency'=>591,'icon'=>'','simplelabel'=>'Road',),
358  'highway:byway' => array('label'=>'Byway','frequency'=>346,'icon'=>'','simplelabel'=>'Road',),
359  'highway:bridleway' => array('label'=>'Bridleway','frequency'=>1556,'icon'=>'',),
360  'highway:cycleway' => array('label'=>'Cycleway','frequency'=>2419,'icon'=>'',),
361  'highway:pedestrian' => array('label'=>'Pedestrian','frequency'=>2757,'icon'=>'',),
362  'highway:footway' => array('label'=>'Footway','frequency'=>15008,'icon'=>'',),
363  'highway:steps' => array('label'=>'Steps','frequency'=>444,'icon'=>'','simplelabel'=>'Footway',),
364  'highway:motorway_link' => array('label'=>'Motorway Link','frequency'=>795,'icon'=>'','simplelabel'=>'Road',),
365  'highway:trunk_link' => array('label'=>'Trunk Link','frequency'=>1258,'icon'=>'','simplelabel'=>'Road',),
366  'highway:primary_link' => array('label'=>'Primary Link','frequency'=>313,'icon'=>'','simplelabel'=>'Road',),
367
368  'landuse:industrial' => array('label'=>'Industrial','frequency'=>1062,'icon'=>'',),
369  'landuse:residential' => array('label'=>'Residential','frequency'=>886,'icon'=>'',),
370  'landuse:retail' => array('label'=>'Retail','frequency'=>754,'icon'=>'',),
371  'landuse:commercial' => array('label'=>'Commercial','frequency'=>657,'icon'=>'',),
372
373  'place:airport' => array('label'=>'Airport','frequency'=>36,'icon'=>'transport_airport2', 'defdiameter' => 0.03,),
374  'railway:station' => array('label'=>'Station','frequency'=>3431,'icon'=>'transport_train_station2', 'defdiameter' => 0.01,),
375  'amenity:place_of_worship' => array('label'=>'Place Of Worship','frequency'=>9049,'icon'=>'place_of_worship_unknown3',),
376  'amenity:pub' => array('label'=>'Pub','frequency'=>18969,'icon'=>'food_pub',),
377  'amenity:bar' => array('label'=>'Bar','frequency'=>164,'icon'=>'food_bar',),
378  'amenity:university' => array('label'=>'University','frequency'=>607,'icon'=>'education_university',),
379  'tourism:museum' => array('label'=>'Museum','frequency'=>543,'icon'=>'tourist_museum',),
380  'amenity:arts_centre' => array('label'=>'Arts Centre','frequency'=>136,'icon'=>'tourist_art_gallery2',),
381  'tourism:zoo' => array('label'=>'Zoo','frequency'=>47,'icon'=>'tourist_zoo',),
382  'tourism:theme_park' => array('label'=>'Theme Park','frequency'=>24,'icon'=>'poi_point_of_interest',),
383  'tourism:attraction' => array('label'=>'Attraction','frequency'=>1463,'icon'=>'poi_point_of_interest',),
384  'leisure:golf_course' => array('label'=>'Golf Course','frequency'=>712,'icon'=>'sport_golf',),
385  'historic:castle' => array('label'=>'Castle','frequency'=>316,'icon'=>'tourist_castle',),
386  'amenity:hospital' => array('label'=>'Hospital','frequency'=>879,'icon'=>'health_hospital',),
387  'amenity:school' => array('label'=>'School','frequency'=>8192,'icon'=>'education_school',),
388  'amenity:theatre' => array('label'=>'Theatre','frequency'=>371,'icon'=>'tourist_theatre',),
389  'amenity:public_building' => array('label'=>'Public Building','frequency'=>985,'icon'=>'',),
390  'amenity:library' => array('label'=>'Library','frequency'=>794,'icon'=>'amenity_library',),
391  'amenity:townhall' => array('label'=>'Townhall','frequency'=>242,'icon'=>'',),
392  'amenity:community_centre' => array('label'=>'Community Centre','frequency'=>157,'icon'=>'',),
393  'amenity:fire_station' => array('label'=>'Fire Station','frequency'=>221,'icon'=>'amenity_firestation3',),
394  'amenity:police' => array('label'=>'Police','frequency'=>334,'icon'=>'amenity_police2',),
395  'amenity:bank' => array('label'=>'Bank','frequency'=>1248,'icon'=>'money_bank2',),
396  'amenity:post_office' => array('label'=>'Post Office','frequency'=>859,'icon'=>'amenity_post_office',),
397  'leisure:park' => array('label'=>'Park','frequency'=>2378,'icon'=>'',),
398  'amenity:park' => array('label'=>'Park','frequency'=>53,'icon'=>'',),
399  'landuse:park' => array('label'=>'Park','frequency'=>50,'icon'=>'',),
400  'landuse:recreation_ground' => array('label'=>'Recreation Ground','frequency'=>517,'icon'=>'',),
401  'tourism:hotel' => array('label'=>'Hotel','frequency'=>2150,'icon'=>'accommodation_hotel2',),
402  'tourism:motel' => array('label'=>'Motel','frequency'=>43,'icon'=>'',),
403  'amenity:cinema' => array('label'=>'Cinema','frequency'=>277,'icon'=>'tourist_cinema',),
404  'tourism:information' => array('label'=>'Information','frequency'=>224,'icon'=>'amenity_information',),
405  'tourism:artwork' => array('label'=>'Artwork','frequency'=>171,'icon'=>'tourist_art_gallery2',),
406  'historic:archaeological_site' => array('label'=>'Archaeological Site','frequency'=>407,'icon'=>'tourist_archaeological2',),
407  'amenity:doctors' => array('label'=>'Doctors','frequency'=>581,'icon'=>'health_doctors',),
408  'leisure:sports_centre' => array('label'=>'Sports Centre','frequency'=>767,'icon'=>'sport_leisure_centre',),
409  'leisure:swimming_pool' => array('label'=>'Swimming Pool','frequency'=>24,'icon'=>'sport_swimming_outdoor',),
410  'shop:supermarket' => array('label'=>'Supermarket','frequency'=>2673,'icon'=>'shopping_supermarket',),
411  'shop:convenience' => array('label'=>'Convenience','frequency'=>1469,'icon'=>'shopping_convenience',),
412  'amenity:restaurant' => array('label'=>'Restaurant','frequency'=>3179,'icon'=>'food_restaurant',),
413  'amenity:fast_food' => array('label'=>'Fast Food','frequency'=>2289,'icon'=>'food_fastfood',),
414  'amenity:cafe' => array('label'=>'Cafe','frequency'=>1780,'icon'=>'food_cafe',),
415  'tourism:guest_house' => array('label'=>'Guest House','frequency'=>223,'icon'=>'accommodation_bed_and_breakfast',),
416  'amenity:pharmacy' => array('label'=>'Pharmacy','frequency'=>733,'icon'=>'health_pharmacy_dispensing',),
417  'amenity:fuel' => array('label'=>'Fuel','frequency'=>1308,'icon'=>'transport_fuel',),
418  'natural:peak' => array('label'=>'Peak','frequency'=>3212,'icon'=>'poi_peak',),
419  'waterway:waterfall' => array('label'=>'Waterfall','frequency'=>24,'icon'=>'',),
420  'natural:wood' => array('label'=>'Wood','frequency'=>1845,'icon'=>'landuse_coniferous_and_deciduous',),
421  'natural:water' => array('label'=>'Water','frequency'=>1790,'icon'=>'',),
422  'landuse:forest' => array('label'=>'Forest','frequency'=>467,'icon'=>'',),
423  'landuse:cemetery' => array('label'=>'Cemetery','frequency'=>463,'icon'=>'',),
424  'landuse:allotments' => array('label'=>'Allotments','frequency'=>408,'icon'=>'',),
425  'landuse:farmyard' => array('label'=>'Farmyard','frequency'=>397,'icon'=>'',),
426  'railway:rail' => array('label'=>'Rail','frequency'=>4894,'icon'=>'',),
427  'waterway:canal' => array('label'=>'Canal','frequency'=>1723,'icon'=>'',),
428  'waterway:river' => array('label'=>'River','frequency'=>4089,'icon'=>'',),
429  'waterway:stream' => array('label'=>'Stream','frequency'=>2684,'icon'=>'',),
430  'shop:bicycle' => array('label'=>'Bicycle','frequency'=>349,'icon'=>'shopping_bicycle',),
431  'shop:clothes' => array('label'=>'Clothes','frequency'=>315,'icon'=>'shopping_clothes',),
432  'shop:hairdresser' => array('label'=>'Hairdresser','frequency'=>312,'icon'=>'shopping_hairdresser',),
433  'shop:doityourself' => array('label'=>'Doityourself','frequency'=>247,'icon'=>'shopping_diy',),
434  'shop:estate_agent' => array('label'=>'Estate Agent','frequency'=>162,'icon'=>'shopping_estateagent2',),
435  'shop:car' => array('label'=>'Car','frequency'=>159,'icon'=>'shopping_car',),
436  'shop:garden_centre' => array('label'=>'Garden Centre','frequency'=>143,'icon'=>'shopping_garden_centre',),
437  'shop:car_repair' => array('label'=>'Car Repair','frequency'=>141,'icon'=>'shopping_car_repair',),
438  'shop:newsagent' => array('label'=>'Newsagent','frequency'=>132,'icon'=>'',),
439  'shop:bakery' => array('label'=>'Bakery','frequency'=>129,'icon'=>'shopping_bakery',),
440  'shop:furniture' => array('label'=>'Furniture','frequency'=>124,'icon'=>'',),
441  'shop:butcher' => array('label'=>'Butcher','frequency'=>105,'icon'=>'shopping_butcher',),
442  'shop:apparel' => array('label'=>'Apparel','frequency'=>98,'icon'=>'shopping_clothes',),
443  'shop:electronics' => array('label'=>'Electronics','frequency'=>96,'icon'=>'',),
444  'shop:department_store' => array('label'=>'Department Store','frequency'=>86,'icon'=>'',),
445  'shop:books' => array('label'=>'Books','frequency'=>85,'icon'=>'',),
446  'shop:yes' => array('label'=>'Yes','frequency'=>68,'icon'=>'',),
447  'shop:outdoor' => array('label'=>'Outdoor','frequency'=>67,'icon'=>'',),
448  'shop:mall' => array('label'=>'Mall','frequency'=>63,'icon'=>'',),
449  'shop:florist' => array('label'=>'Florist','frequency'=>61,'icon'=>'',),
450  'shop:charity' => array('label'=>'Charity','frequency'=>60,'icon'=>'',),
451  'shop:hardware' => array('label'=>'Hardware','frequency'=>59,'icon'=>'',),
452  'shop:laundry' => array('label'=>'Laundry','frequency'=>51,'icon'=>'shopping_laundrette',),
453  'shop:shoes' => array('label'=>'Shoes','frequency'=>49,'icon'=>'',),
454  'shop:beverages' => array('label'=>'Beverages','frequency'=>48,'icon'=>'shopping_alcohol',),
455  'shop:dry_cleaning' => array('label'=>'Dry Cleaning','frequency'=>46,'icon'=>'',),
456  'shop:carpet' => array('label'=>'Carpet','frequency'=>45,'icon'=>'',),
457  'shop:computer' => array('label'=>'Computer','frequency'=>44,'icon'=>'',),
458  'shop:alcohol' => array('label'=>'Alcohol','frequency'=>44,'icon'=>'shopping_alcohol',),
459  'shop:optician' => array('label'=>'Optician','frequency'=>55,'icon'=>'health_opticians',),
460  'shop:chemist' => array('label'=>'Chemist','frequency'=>42,'icon'=>'health_pharmacy',),
461  'shop:gallery' => array('label'=>'Gallery','frequency'=>38,'icon'=>'tourist_art_gallery2',),
462  'shop:mobile_phone' => array('label'=>'Mobile Phone','frequency'=>37,'icon'=>'',),
463  'shop:sports' => array('label'=>'Sports','frequency'=>37,'icon'=>'',),
464  'shop:jewelry' => array('label'=>'Jewelry','frequency'=>32,'icon'=>'shopping_jewelry',),
465  'shop:pet' => array('label'=>'Pet','frequency'=>29,'icon'=>'',),
466  'shop:beauty' => array('label'=>'Beauty','frequency'=>28,'icon'=>'',),
467  'shop:stationery' => array('label'=>'Stationery','frequency'=>25,'icon'=>'',),
468  'shop:shopping_centre' => array('label'=>'Shopping Centre','frequency'=>25,'icon'=>'',),
469  'shop:general' => array('label'=>'General','frequency'=>25,'icon'=>'',),
470  'shop:electrical' => array('label'=>'Electrical','frequency'=>25,'icon'=>'',),
471  'shop:toys' => array('label'=>'Toys','frequency'=>23,'icon'=>'',),
472  'shop:jeweller' => array('label'=>'Jeweller','frequency'=>23,'icon'=>'',),
473  'shop:betting' => array('label'=>'Betting','frequency'=>23,'icon'=>'',),
474  'shop:household' => array('label'=>'Household','frequency'=>21,'icon'=>'',),
475  'shop:travel_agency' => array('label'=>'Travel Agency','frequency'=>21,'icon'=>'',),
476  'shop:hifi' => array('label'=>'Hifi','frequency'=>21,'icon'=>'',),
477  'amenity:shop' => array('label'=>'Shop','frequency'=>61,'icon'=>'',),
478
479  'place:house' => array('label'=>'House','frequency'=>2086,'icon'=>'','defzoom'=>18,),
480  'place:house_name' => array('label'=>'House','frequency'=>2086,'icon'=>'','defzoom'=>18,),
481  'place:house_number' => array('label'=>'House Number','frequency'=>2086,'icon'=>'','defzoom'=>18,),
482  'place:country_code' => array('label'=>'Country Code','frequency'=>2086,'icon'=>'','defzoom'=>18,),
483
484  //
485
486  'leisure:pitch' => array('label'=>'Pitch','frequency'=>762,'icon'=>'',),
487  'highway:unsurfaced' => array('label'=>'Unsurfaced','frequency'=>492,'icon'=>'',),
488  'historic:ruins' => array('label'=>'Ruins','frequency'=>483,'icon'=>'tourist_ruin',),
489  'amenity:college' => array('label'=>'College','frequency'=>473,'icon'=>'education_school',),
490  'historic:monument' => array('label'=>'Monument','frequency'=>470,'icon'=>'tourist_monument',),
491  'railway:subway' => array('label'=>'Subway','frequency'=>385,'icon'=>'',),
492  'historic:memorial' => array('label'=>'Memorial','frequency'=>382,'icon'=>'tourist_monument',),
493  'leisure:nature_reserve' => array('label'=>'Nature Reserve','frequency'=>342,'icon'=>'',),
494  'leisure:common' => array('label'=>'Common','frequency'=>322,'icon'=>'',),
495  'waterway:lock_gate' => array('label'=>'Lock Gate','frequency'=>321,'icon'=>'',),
496  'natural:fell' => array('label'=>'Fell','frequency'=>308,'icon'=>'',),
497  'amenity:nightclub' => array('label'=>'Nightclub','frequency'=>292,'icon'=>'',),
498  'highway:path' => array('label'=>'Path','frequency'=>287,'icon'=>'',),
499  'leisure:garden' => array('label'=>'Garden','frequency'=>285,'icon'=>'',),
500  'landuse:reservoir' => array('label'=>'Reservoir','frequency'=>276,'icon'=>'',),
501  'leisure:playground' => array('label'=>'Playground','frequency'=>264,'icon'=>'',),
502  'leisure:stadium' => array('label'=>'Stadium','frequency'=>212,'icon'=>'',),
503  'historic:mine' => array('label'=>'Mine','frequency'=>193,'icon'=>'poi_mine',),
504  'natural:cliff' => array('label'=>'Cliff','frequency'=>193,'icon'=>'',),
505  'tourism:caravan_site' => array('label'=>'Caravan Site','frequency'=>183,'icon'=>'accommodation_caravan_park',),
506  'amenity:bus_station' => array('label'=>'Bus Station','frequency'=>181,'icon'=>'transport_bus_station',),
507  'amenity:kindergarten' => array('label'=>'Kindergarten','frequency'=>179,'icon'=>'',),
508  'highway:construction' => array('label'=>'Construction','frequency'=>176,'icon'=>'',),
509  'amenity:atm' => array('label'=>'Atm','frequency'=>172,'icon'=>'money_atm2',),
510  'amenity:emergency_phone' => array('label'=>'Emergency Phone','frequency'=>164,'icon'=>'',),
511  'waterway:lock' => array('label'=>'Lock','frequency'=>146,'icon'=>'',),
512  'waterway:riverbank' => array('label'=>'Riverbank','frequency'=>143,'icon'=>'',),
513  'natural:coastline' => array('label'=>'Coastline','frequency'=>142,'icon'=>'',),
514  'tourism:viewpoint' => array('label'=>'Viewpoint','frequency'=>140,'icon'=>'tourist_view_point',),
515  'tourism:hostel' => array('label'=>'Hostel','frequency'=>140,'icon'=>'',),
516  'tourism:bed_and_breakfast' => array('label'=>'Bed And Breakfast','frequency'=>140,'icon'=>'accommodation_bed_and_breakfast',),
517  'railway:halt' => array('label'=>'Halt','frequency'=>135,'icon'=>'',),
518  'railway:platform' => array('label'=>'Platform','frequency'=>134,'icon'=>'',),
519  'railway:tram' => array('label'=>'Tram','frequency'=>130,'icon'=>'transport_tram_stop',),
520  'amenity:courthouse' => array('label'=>'Courthouse','frequency'=>129,'icon'=>'amenity_court',),
521  'amenity:recycling' => array('label'=>'Recycling','frequency'=>126,'icon'=>'amenity_recycling',),
522  'amenity:dentist' => array('label'=>'Dentist','frequency'=>124,'icon'=>'health_dentist',),
523  'natural:beach' => array('label'=>'Beach','frequency'=>121,'icon'=>'tourist_beach',),
524  'place:moor' => array('label'=>'Moor','frequency'=>118,'icon'=>'',),
525  'amenity:grave_yard' => array('label'=>'Grave Yard','frequency'=>110,'icon'=>'',),
526  'waterway:derelict_canal' => array('label'=>'Derelict Canal','frequency'=>109,'icon'=>'',),
527  'waterway:drain' => array('label'=>'Drain','frequency'=>108,'icon'=>'',),
528  'landuse:grass' => array('label'=>'Grass','frequency'=>106,'icon'=>'',),
529  'landuse:village_green' => array('label'=>'Village Green','frequency'=>106,'icon'=>'',),
530  'natural:bay' => array('label'=>'Bay','frequency'=>102,'icon'=>'',),
531  'railway:tram_stop' => array('label'=>'Tram Stop','frequency'=>101,'icon'=>'transport_tram_stop',),
532  'leisure:marina' => array('label'=>'Marina','frequency'=>98,'icon'=>'',),
533  'highway:stile' => array('label'=>'Stile','frequency'=>97,'icon'=>'',),
534  'natural:moor' => array('label'=>'Moor','frequency'=>95,'icon'=>'',),
535  'railway:light_rail' => array('label'=>'Light Rail','frequency'=>91,'icon'=>'',),
536  'railway:narrow_gauge' => array('label'=>'Narrow Gauge','frequency'=>90,'icon'=>'',),
537  'natural:land' => array('label'=>'Land','frequency'=>86,'icon'=>'',),
538  'amenity:village_hall' => array('label'=>'Village Hall','frequency'=>82,'icon'=>'',),
539  'waterway:dock' => array('label'=>'Dock','frequency'=>80,'icon'=>'',),
540  'amenity:veterinary' => array('label'=>'Veterinary','frequency'=>79,'icon'=>'',),
541  'landuse:brownfield' => array('label'=>'Brownfield','frequency'=>77,'icon'=>'',),
542  'leisure:track' => array('label'=>'Track','frequency'=>76,'icon'=>'',),
543  'railway:historic_station' => array('label'=>'Historic Station','frequency'=>74,'icon'=>'',),
544  'landuse:construction' => array('label'=>'Construction','frequency'=>72,'icon'=>'',),
545  'amenity:prison' => array('label'=>'Prison','frequency'=>71,'icon'=>'amenity_prison',),
546  'landuse:quarry' => array('label'=>'Quarry','frequency'=>71,'icon'=>'',),
547  'amenity:telephone' => array('label'=>'Telephone','frequency'=>70,'icon'=>'',),
548  'highway:traffic_signals' => array('label'=>'Traffic Signals','frequency'=>66,'icon'=>'',),
549  'natural:heath' => array('label'=>'Heath','frequency'=>62,'icon'=>'',),
550  'historic:house' => array('label'=>'House','frequency'=>61,'icon'=>'',),
551  'amenity:social_club' => array('label'=>'Social Club','frequency'=>61,'icon'=>'',),
552  'landuse:military' => array('label'=>'Military','frequency'=>61,'icon'=>'',),
553  'amenity:health_centre' => array('label'=>'Health Centre','frequency'=>59,'icon'=>'',),
554  'historic:building' => array('label'=>'Building','frequency'=>58,'icon'=>'',),
555  'amenity:clinic' => array('label'=>'Clinic','frequency'=>57,'icon'=>'',),
556  'highway:services' => array('label'=>'Services','frequency'=>56,'icon'=>'',),
557  'amenity:ferry_terminal' => array('label'=>'Ferry Terminal','frequency'=>55,'icon'=>'',),
558  'natural:marsh' => array('label'=>'Marsh','frequency'=>55,'icon'=>'',),
559  'natural:hill' => array('label'=>'Hill','frequency'=>54,'icon'=>'',),
560  'highway:raceway' => array('label'=>'Raceway','frequency'=>53,'icon'=>'',),
561  'amenity:taxi' => array('label'=>'Taxi','frequency'=>47,'icon'=>'',),
562  'amenity:take_away' => array('label'=>'Take Away','frequency'=>45,'icon'=>'',),
563  'amenity:car_rental' => array('label'=>'Car Rental','frequency'=>44,'icon'=>'',),
564  'place:islet' => array('label'=>'Islet','frequency'=>44,'icon'=>'',),
565  'amenity:nursery' => array('label'=>'Nursery','frequency'=>44,'icon'=>'',),
566  'amenity:nursing_home' => array('label'=>'Nursing Home','frequency'=>43,'icon'=>'',),
567  'amenity:toilets' => array('label'=>'Toilets','frequency'=>38,'icon'=>'',),
568  'amenity:hall' => array('label'=>'Hall','frequency'=>38,'icon'=>'',),
569  'waterway:boatyard' => array('label'=>'Boatyard','frequency'=>36,'icon'=>'',),
570  'highway:mini_roundabout' => array('label'=>'Mini Roundabout','frequency'=>35,'icon'=>'',),
571  'historic:manor' => array('label'=>'Manor','frequency'=>35,'icon'=>'',),
572  'tourism:chalet' => array('label'=>'Chalet','frequency'=>34,'icon'=>'',),
573  'amenity:bicycle_parking' => array('label'=>'Bicycle Parking','frequency'=>34,'icon'=>'',),
574  'amenity:hotel' => array('label'=>'Hotel','frequency'=>34,'icon'=>'',),
575  'waterway:weir' => array('label'=>'Weir','frequency'=>33,'icon'=>'',),
576  'natural:wetland' => array('label'=>'Wetland','frequency'=>33,'icon'=>'',),
577  'natural:cave_entrance' => array('label'=>'Cave Entrance','frequency'=>32,'icon'=>'',),
578  'amenity:crematorium' => array('label'=>'Crematorium','frequency'=>31,'icon'=>'',),
579  'tourism:picnic_site' => array('label'=>'Picnic Site','frequency'=>31,'icon'=>'',),
580  'landuse:wood' => array('label'=>'Wood','frequency'=>30,'icon'=>'',),
581  'landuse:basin' => array('label'=>'Basin','frequency'=>30,'icon'=>'',),
582  'natural:tree' => array('label'=>'Tree','frequency'=>30,'icon'=>'',),
583  'leisure:slipway' => array('label'=>'Slipway','frequency'=>29,'icon'=>'',),
584  'landuse:meadow' => array('label'=>'Meadow','frequency'=>29,'icon'=>'',),
585  'landuse:piste' => array('label'=>'Piste','frequency'=>28,'icon'=>'',),
586  'amenity:care_home' => array('label'=>'Care Home','frequency'=>28,'icon'=>'',),
587  'amenity:club' => array('label'=>'Club','frequency'=>28,'icon'=>'',),
588  'amenity:medical_centre' => array('label'=>'Medical Centre','frequency'=>27,'icon'=>'',),
589  'historic:roman_road' => array('label'=>'Roman Road','frequency'=>27,'icon'=>'',),
590  'historic:fort' => array('label'=>'Fort','frequency'=>26,'icon'=>'',),
591  'railway:subway_entrance' => array('label'=>'Subway Entrance','frequency'=>26,'icon'=>'',),
592  'historic:yes' => array('label'=>'Yes','frequency'=>25,'icon'=>'',),
593  'highway:gate' => array('label'=>'Gate','frequency'=>25,'icon'=>'',),
594  'leisure:fishing' => array('label'=>'Fishing','frequency'=>24,'icon'=>'',),
595  'historic:museum' => array('label'=>'Museum','frequency'=>24,'icon'=>'',),
596  'amenity:car_wash' => array('label'=>'Car Wash','frequency'=>24,'icon'=>'',),
597  'railway:level_crossing' => array('label'=>'Level Crossing','frequency'=>23,'icon'=>'',),
598  'leisure:bird_hide' => array('label'=>'Bird Hide','frequency'=>23,'icon'=>'',),
599  'natural:headland' => array('label'=>'Headland','frequency'=>21,'icon'=>'',),
600  'tourism:apartments' => array('label'=>'Apartments','frequency'=>21,'icon'=>'',),
601  'amenity:shopping' => array('label'=>'Shopping','frequency'=>21,'icon'=>'',),
602  'natural:scrub' => array('label'=>'Scrub','frequency'=>20,'icon'=>'',),
603  'natural:fen' => array('label'=>'Fen','frequency'=>20,'icon'=>'',),
604  'building:yes' => array('label'=>'Building','frequency'=>200,'icon'=>'',),
605  'mountain_pass:yes' => array('label'=>'Mountain Pass','frequency'=>200,'icon'=>'',),
606
607  'amenity:parking' => array('label'=>'Parking','frequency'=>3157,'icon'=>'',),
608  'highway:bus_stop' => array('label'=>'Bus Stop','frequency'=>35777,'icon'=>'transport_bus_stop2',),
609  'place:postcode' => array('label'=>'Postcode','frequency'=>27267,'icon'=>'',),
610  'amenity:post_box' => array('label'=>'Post Box','frequency'=>9613,'icon'=>'',),
611
612  'place:houses' => array('label'=>'Houses','frequency'=>85,'icon'=>'',),
613  'railway:preserved' => array('label'=>'Preserved','frequency'=>227,'icon'=>'',),
614  'waterway:derelict canal' => array('label'=>'Derelict Canal','frequency'=>21,'icon'=>'',),
615  'amenity:dead_pub' => array('label'=>'Dead Pub','frequency'=>20,'icon'=>'',),
616  'railway:disused_station' => array('label'=>'Disused Station','frequency'=>114,'icon'=>'',),
617  'railway:abandoned' => array('label'=>'Abandoned','frequency'=>641,'icon'=>'',),
618  'railway:disused' => array('label'=>'Disused','frequency'=>72,'icon'=>'',),
619                                 );
620         }
621
622
623         function getClassTypesWithImportance()
624         {
625                 $aOrders = getClassTypes();
626                 $i = 1;
627                 foreach($aOrders as $sID => $a)
628                 {
629                         $aOrders[$sID]['importance'] = $i++;
630                 }
631                 return $aOrders;
632         }
633
634
635         function javascript_renderData($xVal)
636         {
637                 header("Access-Control-Allow-Origin: *");
638                 $jsonout = json_encode($xVal);
639
640                 if( ! isset($_GET['json_callback']))
641                 {
642                         header("Content-Type: application/json; charset=UTF-8");
643                         echo $jsonout;
644                 } else
645                 {
646                         if (preg_match('/^[$_\p{L}][$_\p{L}\p{Nd}.[\]]*$/u',$_GET['json_callback']))
647                         {
648                                 header("Content-Type: application/javascript; charset=UTF-8");
649                                 echo $_GET['json_callback'].'('.$jsonout.')';
650                         }
651                         else
652                         {
653                                 header('HTTP/1.0 400 Bad Request');
654                         }
655                 }
656         }
657
658
659         function _debugDumpGroupedSearches($aData, $aTokens)
660         {
661                 $aWordsIDs = array();
662                 if ($aTokens)
663                 {
664                         foreach($aTokens as $sToken => $aWords)
665                         {
666                                 if ($aWords)
667                                 {
668                                         foreach($aWords as $aToken)
669                                         {
670                                                 $aWordsIDs[$aToken['word_id']] = $sToken.'('.$aToken['word_id'].')';
671                                         }
672                                 }
673                         }
674                 }
675                 echo "<table border=\"1\">";
676                 echo "<tr><th>rank</th><th>Name Tokens</th><th>Name Not</th><th>Address Tokens</th><th>Address Not</th><th>country</th><th>operator</th><th>class</th><th>type</th><th>house#</th><th>Lat</th><th>Lon</th><th>Radius</th></tr>";
677                 foreach($aData as $iRank => $aRankedSet)
678                 {
679                         foreach($aRankedSet as $aRow)
680                         {
681                                 echo "<tr>";
682                                 echo "<td>$iRank</td>";
683
684                                 echo "<td>";
685                                 $sSep = '';
686                                 foreach($aRow['aName'] as $iWordID)
687                                 {
688                                         echo $sSep.'#'.$aWordsIDs[$iWordID].'#';
689                                         $sSep = ', ';
690                                 }
691                                 echo "</td>";
692
693                                 echo "<td>";
694                                 $sSep = '';
695                                 foreach($aRow['aNameNonSearch'] as $iWordID)
696                                 {
697                                         echo $sSep.'#'.$aWordsIDs[$iWordID].'#';
698                                         $sSep = ', ';
699                                 }
700                                 echo "</td>";
701
702                                 echo "<td>";
703                                 $sSep = '';
704                                 foreach($aRow['aAddress'] as $iWordID)
705                                 {
706                                         echo $sSep.'#'.$aWordsIDs[$iWordID].'#';
707                                         $sSep = ', ';
708                                 }
709                                 echo "</td>";
710
711                                 echo "<td>";
712                                 $sSep = '';
713                                 foreach($aRow['aAddressNonSearch'] as $iWordID)
714                                 {
715                                         echo $sSep.'#'.$aWordsIDs[$iWordID].'#';
716                                         $sSep = ', ';
717                                 }
718                                 echo "</td>";
719
720                                 echo "<td>".$aRow['sCountryCode']."</td>";
721
722                                 echo "<td>".$aRow['sOperator']."</td>";
723                                 echo "<td>".$aRow['sClass']."</td>";
724                                 echo "<td>".$aRow['sType']."</td>";
725
726                                 echo "<td>".$aRow['sHouseNumber']."</td>";
727
728                                 echo "<td>".$aRow['fLat']."</td>";
729                                 echo "<td>".$aRow['fLon']."</td>";
730                                 echo "<td>".$aRow['fRadius']."</td>";
731
732                                 echo "</tr>";
733                         }
734                 }
735                 echo "</table>";
736         }
737
738
739         function getAddressDetails(&$oDB, $sLanguagePrefArraySQL, $iPlaceID, $sCountryCode = false, $bRaw = false)
740         {
741                 $sSQL = "select *,get_name_by_language(name,$sLanguagePrefArraySQL) as localname from get_addressdata($iPlaceID)";
742                 if (!$bRaw) $sSQL .= " WHERE isaddress OR type = 'country_code'";
743                 $sSQL .= " order by rank_address desc,isaddress desc";
744
745                 $aAddressLines = $oDB->getAll($sSQL);
746                 if (PEAR::IsError($aAddressLines))
747                 {
748                         var_dump($aAddressLines);
749                         exit;
750                 }
751                 if ($bRaw) return $aAddressLines;
752                 //echo "<pre>";
753                 //var_dump($aAddressLines);
754                 $aAddress = array();
755                 $aFallback = array();
756                 $aClassType = getClassTypes();
757                 foreach($aAddressLines as $aLine)
758                 {
759                         $bFallback = false;
760                         $aTypeLabel = false;
761                         if (isset($aClassType[$aLine['class'].':'.$aLine['type'].':'.$aLine['admin_level']])) $aTypeLabel = $aClassType[$aLine['class'].':'.$aLine['type'].':'.$aLine['admin_level']];
762                         elseif (isset($aClassType[$aLine['class'].':'.$aLine['type']])) $aTypeLabel = $aClassType[$aLine['class'].':'.$aLine['type']];
763                         elseif (isset($aClassType['boundary:administrative:'.((int)($aLine['rank_address']/2))]))
764                         {
765                                 $aTypeLabel = $aClassType['boundary:administrative:'.((int)($aLine['rank_address']/2))];
766                                 $bFallback = true;
767                         }
768                         else
769                         {
770                                 $aTypeLabel = array('simplelabel'=>'address'.$aLine['rank_address']);
771                                 $bFallback = true;
772                         }
773                         if ($aTypeLabel && ((isset($aLine['localname']) && $aLine['localname']) || (isset($aLine['housenumber']) && $aLine['housenumber'])))
774                         {
775                                 $sTypeLabel = strtolower(isset($aTypeLabel['simplelabel'])?$aTypeLabel['simplelabel']:$aTypeLabel['label']);
776                                 $sTypeLabel = str_replace(' ','_',$sTypeLabel);
777                                 if (!isset($aAddress[$sTypeLabel]) || (isset($aFallback[$sTypeLabel]) && $aFallback[$sTypeLabel]))
778                                 {
779                                         $aAddress[$sTypeLabel] = $aLine['localname']?$aLine['localname']:$aLine['housenumber'];
780                                 }
781                                 $aFallback[$sTypeLabel] = $bFallback;
782                         }
783                 }
784                 return $aAddress;
785         }
786
787
788         function geocodeReverse($fLat, $fLon, $iZoom=18)
789         {
790                 $oDB =& getDB();
791
792                 $sPointSQL = "ST_SetSRID(ST_Point($fLon,$fLat),4326)";
793
794                 // Zoom to rank, this could probably be calculated but a lookup gives fine control
795                 $aZoomRank = array(
796                                 0 => 2, // Continent / Sea
797                                 1 => 2,
798                                 2 => 2,
799                                 3 => 4, // Country
800                                 4 => 4,
801                                 5 => 8, // State
802                                 6 => 10, // Region
803                                 7 => 10,
804                                 8 => 12, // County
805                                 9 => 12,
806                                 10 => 17, // City
807                                 11 => 17,
808                                 12 => 18, // Town / Village
809                                 13 => 18,
810                                 14 => 22, // Suburb
811                                 15 => 22,
812                                 16 => 26, // Street, TODO: major street?
813                                 17 => 26,
814                                 18 => 30, // or >, Building
815                                 19 => 30, // or >, Building
816                                 );
817                 $iMaxRank = isset($aZoomRank[$iZoom])?$aZoomRank[$iZoom]:28;
818
819                 // Find the nearest point
820                 $fSearchDiam = 0.0001;
821                 $iPlaceID = null;
822                 $aArea = false;
823                 $fMaxAreaDistance = 1;
824                 while(!$iPlaceID && $fSearchDiam < $fMaxAreaDistance)
825                 {
826                         $fSearchDiam = $fSearchDiam * 2;
827
828                         // If we have to expand the search area by a large amount then we need a larger feature
829                         // then there is a limit to how small the feature should be
830                         if ($fSearchDiam > 2 && $iMaxRank > 4) $iMaxRank = 4;
831                         if ($fSearchDiam > 1 && $iMaxRank > 9) $iMaxRank = 8;
832                         if ($fSearchDiam > 0.8 && $iMaxRank > 10) $iMaxRank = 10;
833                         if ($fSearchDiam > 0.6 && $iMaxRank > 12) $iMaxRank = 12;
834                         if ($fSearchDiam > 0.2 && $iMaxRank > 17) $iMaxRank = 17;
835                         if ($fSearchDiam > 0.1 && $iMaxRank > 18) $iMaxRank = 18;
836                         if ($fSearchDiam > 0.008 && $iMaxRank > 22) $iMaxRank = 22;
837                         if ($fSearchDiam > 0.001 && $iMaxRank > 26) $iMaxRank = 26;
838
839                         $sSQL = 'select place_id,parent_place_id from placex';
840                         $sSQL .= ' WHERE ST_DWithin('.$sPointSQL.', geometry, '.$fSearchDiam.')';
841                         $sSQL .= ' and rank_search != 28 and rank_search >= '.$iMaxRank;
842                         $sSQL .= ' and (name is not null or housenumber is not null)';
843                         $sSQL .= ' and class not in (\'waterway\')';
844                         $sSQL .= ' and (ST_GeometryType(geometry) not in (\'ST_Polygon\',\'ST_MultiPolygon\') ';
845                         $sSQL .= ' OR ST_DWithin('.$sPointSQL.', ST_Centroid(geometry), '.$fSearchDiam.'))';
846                         $sSQL .= ' ORDER BY ST_distance('.$sPointSQL.', geometry) ASC limit 1';
847                         //var_dump($sSQL);
848                         $aPlace = $oDB->getRow($sSQL);
849                         $iPlaceID = $aPlace['place_id'];
850                         if (PEAR::IsError($iPlaceID))
851                         {
852                                 var_Dump($sSQL, $iPlaceID);
853                                 exit;
854                         }
855                 }
856
857                 // The point we found might be too small - use the address to find what it is a child of
858                 if ($iPlaceID)
859                 {
860                         $sSQL = "select address_place_id from place_addressline where cached_rank_address <= $iMaxRank and place_id = $iPlaceID order by cached_rank_address desc,isaddress desc,distance desc limit 1";
861                         $iPlaceID = $oDB->getOne($sSQL);
862                         if (PEAR::IsError($iPlaceID))
863                         {
864                                 var_Dump($sSQL, $iPlaceID);
865                                 exit;
866                         }
867
868                         if ($iPlaceID && $aPlace['place_id'] && $iMaxRank < 28)
869                         {
870                                 $sSQL = "select address_place_id from place_addressline where cached_rank_address <= $iMaxRank and place_id = ".$aPlace['place_id']." order by cached_rank_address desc,isaddress desc,distance desc";
871                                 $iPlaceID = $oDB->getOne($sSQL);
872                                 if (PEAR::IsError($iPlaceID))
873                                 {
874                                         var_Dump($sSQL, $iPlaceID);
875                                         exit;
876                                 }
877                         }
878                         if (!$iPlaceID)
879                         {
880                                 $iPlaceID = $aPlace['place_id'];
881                         }
882                 }
883
884                 return $iPlaceID;
885         }
886
887         function loadStructuredAddressElement(&$aStructuredQuery, &$iMinAddressRank, &$iMaxAddressRank, &$aAddressRankList, $aParams, $sKey, $iNewMinAddressRank, $iNewMaxAddressRank, $aItemListValues)
888         {
889                 if (!isset($_GET[$sKey])) return false;
890                 $sValue = trim($_GET[$sKey]);
891                 if (!$sValue) return false;
892                 $aStructuredQuery[$sKey] = $sValue;
893                 if ($iMinAddressRank == 0 && $iMaxAddressRank == 30)
894                 {
895                         $iMinAddressRank = $iNewMinAddressRank;
896                         $iMaxAddressRank = $iNewMaxAddressRank;
897                 }
898                 if ($aItemListValues) $aAddressRankList = array_merge($aAddressRankList, $aItemListValues);
899                 return true;
900         }
901
902         function addQuotes($s)
903         {
904                 return "'".$s."'";
905         }