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