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