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