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