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