]> git.openstreetmap.org Git - nominatim.git/blob - lib/lib.php
display viewbox on map
[nominatim.git] / lib / lib.php
1 <?php
2
3
4 function fail($sError, $sUserError = false)
5 {
6     if (!$sUserError) $sUserError = $sError;
7     error_log('ERROR: '.$sError);
8     echo $sUserError."\n";
9     exit(-1);
10 }
11
12
13 function getProcessorCount()
14 {
15     $sCPU = file_get_contents('/proc/cpuinfo');
16     preg_match_all('#processor\s+: [0-9]+#', $sCPU, $aMatches);
17     return count($aMatches[0]);
18 }
19
20
21 function getTotalMemoryMB()
22 {
23     $sCPU = file_get_contents('/proc/meminfo');
24     preg_match('#MemTotal: +([0-9]+) kB#', $sCPU, $aMatches);
25     return (int)($aMatches[1]/1024);
26 }
27
28
29 function getCacheMemoryMB()
30 {
31     $sCPU = file_get_contents('/proc/meminfo');
32     preg_match('#Cached: +([0-9]+) kB#', $sCPU, $aMatches);
33     return (int)($aMatches[1]/1024);
34 }
35
36 function getDatabaseDate(&$oDB)
37 {
38     // Find the newest node in the DB
39     $iLastOSMID = $oDB->getOne("select max(osm_id) from place where osm_type = 'N'");
40     // Lookup the timestamp that node was created
41     $sLastNodeURL = 'https://www.openstreetmap.org/api/0.6/node/'.$iLastOSMID.'/1';
42     $sLastNodeXML = file_get_contents($sLastNodeURL);
43
44     if ($sLastNodeXML === false) {
45         return false;
46     }
47
48     preg_match('#timestamp="(([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})Z)"#', $sLastNodeXML, $aLastNodeDate);
49
50     return $aLastNodeDate[1];
51 }
52
53
54 function byImportance($a, $b)
55 {
56     if ($a['importance'] != $b['importance'])
57         return ($a['importance'] > $b['importance']?-1:1);
58
59     return ($a['foundorder'] < $b['foundorder']?-1:1);
60 }
61
62
63 function getClassTypes()
64 {
65     return array(
66             'boundary:administrative:1' => array('label' => 'Continent', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
67             'boundary:administrative:2' => array('label' => 'Country', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
68             'place:country' => array('label' => 'Country', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defzoom' => 6, 'defdiameter' => 15),
69             'boundary:administrative:3' => array('label' => 'State', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
70             'boundary:administrative:4' => array('label' => 'State', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
71             'place:state' => array('label' => 'State', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defzoom' => 8, 'defdiameter' => 5.12),
72             'boundary:administrative:5' => array('label' => 'State District', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
73             'boundary:administrative:6' => array('label' => 'County', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
74             'boundary:administrative:7' => array('label' => 'County', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
75             'place:county' => array('label' => 'County', 'frequency' => 108, 'icon' => 'poi_boundary_administrative', 'defzoom' => 10, 'defdiameter' => 1.28),
76             'boundary:administrative:8' => array('label' => 'City', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
77             'place:city' => array('label' => 'City', 'frequency' => 66, 'icon' => 'poi_place_city', 'defzoom' => 12, 'defdiameter' => 0.32),
78             'boundary:administrative:9' => array('label' => 'City District', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
79             'boundary:administrative:10' => array('label' => 'Suburb', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
80             'boundary:administrative:11' => array('label' => 'Neighbourhood', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
81             'place:region' => array('label' => 'Region', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defzoom' => 8, 'defdiameter' => 0.04),
82             'place:island' => array('label' => 'Island', 'frequency' => 288, 'icon' => '', 'defzoom' => 11, 'defdiameter' => 0.64),
83             'boundary:administrative' => array('label' => 'Administrative', 'frequency' => 413, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
84             'boundary:postal_code' => array('label' => 'Postcode', 'frequency' => 413, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
85             'place:town' => array('label' => 'Town', 'frequency' => 1497, 'icon' => 'poi_place_town', 'defzoom' => 14, 'defdiameter' => 0.08),
86             'place:village' => array('label' => 'Village', 'frequency' => 11230, 'icon' => 'poi_place_village', 'defzoom' => 15, 'defdiameter' => 0.04),
87             'place:hamlet' => array('label' => 'Hamlet', 'frequency' => 7075, 'icon' => 'poi_place_village', 'defzoom' => 15, 'defdiameter' => 0.04),
88             'place:suburb' => array('label' => 'Suburb', 'frequency' => 2528, 'icon' => 'poi_place_village', 'defdiameter' => 0.04),
89             'place:locality' => array('label' => 'Locality', 'frequency' => 4113, 'icon' => 'poi_place_village', 'defdiameter' => 0.02),
90             'landuse:farm' => array('label' => 'Farm', 'frequency' => 1201, 'icon' => '', 'defdiameter' => 0.02),
91             'place:farm' => array('label' => 'Farm', 'frequency' => 1162, 'icon' => '', 'defdiameter' => 0.02),
92
93             'highway:motorway_junction' => array('label' => 'Motorway Junction', 'frequency' => 1126, 'icon' => '', 'simplelabel' => 'Junction'),
94             'highway:motorway' => array('label' => 'Motorway', 'frequency' => 4627, 'icon' => '', 'simplelabel' => 'Road'),
95             'highway:trunk' => array('label' => 'Trunk', 'frequency' => 23084, 'icon' => '', 'simplelabel' => 'Road'),
96             'highway:primary' => array('label' => 'Primary', 'frequency' => 32138, 'icon' => '', 'simplelabel' => 'Road'),
97             'highway:secondary' => array('label' => 'Secondary', 'frequency' => 25807, 'icon' => '', 'simplelabel' => 'Road'),
98             'highway:tertiary' => array('label' => 'Tertiary', 'frequency' => 29829, 'icon' => '', 'simplelabel' => 'Road'),
99             'highway:residential' => array('label' => 'Residential', 'frequency' => 361498, 'icon' => '', 'simplelabel' => 'Road'),
100             'highway:unclassified' => array('label' => 'Unclassified', 'frequency' => 66441, 'icon' => '', 'simplelabel' => 'Road'),
101             'highway:living_street' => array('label' => 'Living Street', 'frequency' => 710, 'icon' => '', 'simplelabel' => 'Road'),
102             'highway:service' => array('label' => 'Service', 'frequency' => 9963, 'icon' => '', 'simplelabel' => 'Road'),
103             'highway:track' => array('label' => 'Track', 'frequency' => 2565, 'icon' => '', 'simplelabel' => 'Road'),
104             'highway:road' => array('label' => 'Road', 'frequency' => 591, 'icon' => '', 'simplelabel' => 'Road'),
105             'highway:byway' => array('label' => 'Byway', 'frequency' => 346, 'icon' => '', 'simplelabel' => 'Road'),
106             'highway:bridleway' => array('label' => 'Bridleway', 'frequency' => 1556, 'icon' => ''),
107             'highway:cycleway' => array('label' => 'Cycleway', 'frequency' => 2419, 'icon' => ''),
108             'highway:pedestrian' => array('label' => 'Pedestrian', 'frequency' => 2757, 'icon' => ''),
109             'highway:footway' => array('label' => 'Footway', 'frequency' => 15008, 'icon' => ''),
110             'highway:steps' => array('label' => 'Steps', 'frequency' => 444, 'icon' => '', 'simplelabel' => 'Footway'),
111             'highway:motorway_link' => array('label' => 'Motorway Link', 'frequency' => 795, 'icon' => '', 'simplelabel' => 'Road'),
112             'highway:trunk_link' => array('label' => 'Trunk Link', 'frequency' => 1258, 'icon' => '', 'simplelabel' => 'Road'),
113             'highway:primary_link' => array('label' => 'Primary Link', 'frequency' => 313, 'icon' => '', 'simplelabel' => 'Road'),
114
115             'landuse:industrial' => array('label' => 'Industrial', 'frequency' => 1062, 'icon' => ''),
116             'landuse:residential' => array('label' => 'Residential', 'frequency' => 886, 'icon' => ''),
117             'landuse:retail' => array('label' => 'Retail', 'frequency' => 754, 'icon' => ''),
118             'landuse:commercial' => array('label' => 'Commercial', 'frequency' => 657, 'icon' => ''),
119
120             'place:airport' => array('label' => 'Airport', 'frequency' => 36, 'icon' => 'transport_airport2', 'defdiameter' => 0.03),
121             'aeroway:aerodrome' => array('label' => 'Aerodrome', 'frequency' => 36, 'icon' => 'transport_airport2', 'defdiameter' => 0.03),
122             'aeroway' => array('label' => 'Aeroway', 'frequency' => 36, 'icon' => 'transport_airport2', 'defdiameter' => 0.03),
123             'railway:station' => array('label' => 'Station', 'frequency' => 3431, 'icon' => 'transport_train_station2', 'defdiameter' => 0.01),
124             'amenity:place_of_worship' => array('label' => 'Place Of Worship', 'frequency' => 9049, 'icon' => 'place_of_worship_unknown3'),
125             'amenity:pub' => array('label' => 'Pub', 'frequency' => 18969, 'icon' => 'food_pub'),
126             'amenity:bar' => array('label' => 'Bar', 'frequency' => 164, 'icon' => 'food_bar'),
127             'amenity:university' => array('label' => 'University', 'frequency' => 607, 'icon' => 'education_university'),
128             'tourism:museum' => array('label' => 'Museum', 'frequency' => 543, 'icon' => 'tourist_museum'),
129             'amenity:arts_centre' => array('label' => 'Arts Centre', 'frequency' => 136, 'icon' => 'tourist_art_gallery2'),
130             'tourism:zoo' => array('label' => 'Zoo', 'frequency' => 47, 'icon' => 'tourist_zoo'),
131             'tourism:theme_park' => array('label' => 'Theme Park', 'frequency' => 24, 'icon' => 'poi_point_of_interest'),
132             'tourism:attraction' => array('label' => 'Attraction', 'frequency' => 1463, 'icon' => 'poi_point_of_interest'),
133             'leisure:golf_course' => array('label' => 'Golf Course', 'frequency' => 712, 'icon' => 'sport_golf'),
134             'historic:castle' => array('label' => 'Castle', 'frequency' => 316, 'icon' => 'tourist_castle'),
135             'amenity:hospital' => array('label' => 'Hospital', 'frequency' => 879, 'icon' => 'health_hospital'),
136             'amenity:school' => array('label' => 'School', 'frequency' => 8192, 'icon' => 'education_school'),
137             'amenity:theatre' => array('label' => 'Theatre', 'frequency' => 371, 'icon' => 'tourist_theatre'),
138             'amenity:public_building' => array('label' => 'Public Building', 'frequency' => 985, 'icon' => ''),
139             'amenity:library' => array('label' => 'Library', 'frequency' => 794, 'icon' => 'amenity_library'),
140             'amenity:townhall' => array('label' => 'Townhall', 'frequency' => 242, 'icon' => ''),
141             'amenity:community_centre' => array('label' => 'Community Centre', 'frequency' => 157, 'icon' => ''),
142             'amenity:fire_station' => array('label' => 'Fire Station', 'frequency' => 221, 'icon' => 'amenity_firestation3'),
143             'amenity:police' => array('label' => 'Police', 'frequency' => 334, 'icon' => 'amenity_police2'),
144             'amenity:bank' => array('label' => 'Bank', 'frequency' => 1248, 'icon' => 'money_bank2'),
145             'amenity:post_office' => array('label' => 'Post Office', 'frequency' => 859, 'icon' => 'amenity_post_office'),
146             'leisure:park' => array('label' => 'Park', 'frequency' => 2378, 'icon' => ''),
147             'amenity:park' => array('label' => 'Park', 'frequency' => 53, 'icon' => ''),
148             'landuse:park' => array('label' => 'Park', 'frequency' => 50, 'icon' => ''),
149             'landuse:recreation_ground' => array('label' => 'Recreation Ground', 'frequency' => 517, 'icon' => ''),
150             'tourism:hotel' => array('label' => 'Hotel', 'frequency' => 2150, 'icon' => 'accommodation_hotel2'),
151             'tourism:motel' => array('label' => 'Motel', 'frequency' => 43, 'icon' => ''),
152             'amenity:cinema' => array('label' => 'Cinema', 'frequency' => 277, 'icon' => 'tourist_cinema'),
153             'tourism:artwork' => array('label' => 'Artwork', 'frequency' => 171, 'icon' => 'tourist_art_gallery2'),
154             'historic:archaeological_site' => array('label' => 'Archaeological Site', 'frequency' => 407, 'icon' => 'tourist_archaeological2'),
155             'amenity:doctors' => array('label' => 'Doctors', 'frequency' => 581, 'icon' => 'health_doctors'),
156             'leisure:sports_centre' => array('label' => 'Sports Centre', 'frequency' => 767, 'icon' => 'sport_leisure_centre'),
157             'leisure:swimming_pool' => array('label' => 'Swimming Pool', 'frequency' => 24, 'icon' => 'sport_swimming_outdoor'),
158             'shop:supermarket' => array('label' => 'Supermarket', 'frequency' => 2673, 'icon' => 'shopping_supermarket'),
159             'shop:convenience' => array('label' => 'Convenience', 'frequency' => 1469, 'icon' => 'shopping_convenience'),
160             'amenity:restaurant' => array('label' => 'Restaurant', 'frequency' => 3179, 'icon' => 'food_restaurant'),
161             'amenity:fast_food' => array('label' => 'Fast Food', 'frequency' => 2289, 'icon' => 'food_fastfood'),
162             'amenity:cafe' => array('label' => 'Cafe', 'frequency' => 1780, 'icon' => 'food_cafe'),
163             'tourism:guest_house' => array('label' => 'Guest House', 'frequency' => 223, 'icon' => 'accommodation_bed_and_breakfast'),
164             'amenity:pharmacy' => array('label' => 'Pharmacy', 'frequency' => 733, 'icon' => 'health_pharmacy_dispensing'),
165             'amenity:fuel' => array('label' => 'Fuel', 'frequency' => 1308, 'icon' => 'transport_fuel'),
166             'natural:peak' => array('label' => 'Peak', 'frequency' => 3212, 'icon' => 'poi_peak'),
167             'waterway:waterfall' => array('label' => 'Waterfall', 'frequency' => 24, 'icon' => ''),
168             'natural:wood' => array('label' => 'Wood', 'frequency' => 1845, 'icon' => 'landuse_coniferous_and_deciduous'),
169             'natural:water' => array('label' => 'Water', 'frequency' => 1790, 'icon' => ''),
170             'landuse:forest' => array('label' => 'Forest', 'frequency' => 467, 'icon' => ''),
171             'landuse:cemetery' => array('label' => 'Cemetery', 'frequency' => 463, 'icon' => ''),
172             'landuse:allotments' => array('label' => 'Allotments', 'frequency' => 408, 'icon' => ''),
173             'landuse:farmyard' => array('label' => 'Farmyard', 'frequency' => 397, 'icon' => ''),
174             'railway:rail' => array('label' => 'Rail', 'frequency' => 4894, 'icon' => ''),
175             'waterway:canal' => array('label' => 'Canal', 'frequency' => 1723, 'icon' => ''),
176             'waterway:river' => array('label' => 'River', 'frequency' => 4089, 'icon' => ''),
177             'waterway:stream' => array('label' => 'Stream', 'frequency' => 2684, 'icon' => ''),
178             'shop:bicycle' => array('label' => 'Bicycle', 'frequency' => 349, 'icon' => 'shopping_bicycle'),
179             'shop:clothes' => array('label' => 'Clothes', 'frequency' => 315, 'icon' => 'shopping_clothes'),
180             'shop:hairdresser' => array('label' => 'Hairdresser', 'frequency' => 312, 'icon' => 'shopping_hairdresser'),
181             'shop:doityourself' => array('label' => 'Doityourself', 'frequency' => 247, 'icon' => 'shopping_diy'),
182             'shop:estate_agent' => array('label' => 'Estate Agent', 'frequency' => 162, 'icon' => 'shopping_estateagent2'),
183             'shop:car' => array('label' => 'Car', 'frequency' => 159, 'icon' => 'shopping_car'),
184             'shop:garden_centre' => array('label' => 'Garden Centre', 'frequency' => 143, 'icon' => 'shopping_garden_centre'),
185             'shop:car_repair' => array('label' => 'Car Repair', 'frequency' => 141, 'icon' => 'shopping_car_repair'),
186             'shop:newsagent' => array('label' => 'Newsagent', 'frequency' => 132, 'icon' => ''),
187             'shop:bakery' => array('label' => 'Bakery', 'frequency' => 129, 'icon' => 'shopping_bakery'),
188             'shop:furniture' => array('label' => 'Furniture', 'frequency' => 124, 'icon' => ''),
189             'shop:butcher' => array('label' => 'Butcher', 'frequency' => 105, 'icon' => 'shopping_butcher'),
190             'shop:apparel' => array('label' => 'Apparel', 'frequency' => 98, 'icon' => 'shopping_clothes'),
191             'shop:electronics' => array('label' => 'Electronics', 'frequency' => 96, 'icon' => ''),
192             'shop:department_store' => array('label' => 'Department Store', 'frequency' => 86, 'icon' => ''),
193             'shop:books' => array('label' => 'Books', 'frequency' => 85, 'icon' => ''),
194             'shop:yes' => array('label' => 'Shop', 'frequency' => 68, 'icon' => ''),
195             'shop:outdoor' => array('label' => 'Outdoor', 'frequency' => 67, 'icon' => ''),
196             'shop:mall' => array('label' => 'Mall', 'frequency' => 63, 'icon' => ''),
197             'shop:florist' => array('label' => 'Florist', 'frequency' => 61, 'icon' => ''),
198             'shop:charity' => array('label' => 'Charity', 'frequency' => 60, 'icon' => ''),
199             'shop:hardware' => array('label' => 'Hardware', 'frequency' => 59, 'icon' => ''),
200             'shop:laundry' => array('label' => 'Laundry', 'frequency' => 51, 'icon' => 'shopping_laundrette'),
201             'shop:shoes' => array('label' => 'Shoes', 'frequency' => 49, 'icon' => ''),
202             'shop:beverages' => array('label' => 'Beverages', 'frequency' => 48, 'icon' => 'shopping_alcohol'),
203             'shop:dry_cleaning' => array('label' => 'Dry Cleaning', 'frequency' => 46, 'icon' => ''),
204             'shop:carpet' => array('label' => 'Carpet', 'frequency' => 45, 'icon' => ''),
205             'shop:computer' => array('label' => 'Computer', 'frequency' => 44, 'icon' => ''),
206             'shop:alcohol' => array('label' => 'Alcohol', 'frequency' => 44, 'icon' => 'shopping_alcohol'),
207             'shop:optician' => array('label' => 'Optician', 'frequency' => 55, 'icon' => 'health_opticians'),
208             'shop:chemist' => array('label' => 'Chemist', 'frequency' => 42, 'icon' => 'health_pharmacy'),
209             'shop:gallery' => array('label' => 'Gallery', 'frequency' => 38, 'icon' => 'tourist_art_gallery2'),
210             'shop:mobile_phone' => array('label' => 'Mobile Phone', 'frequency' => 37, 'icon' => ''),
211             'shop:sports' => array('label' => 'Sports', 'frequency' => 37, 'icon' => ''),
212             'shop:jewelry' => array('label' => 'Jewelry', 'frequency' => 32, 'icon' => 'shopping_jewelry'),
213             'shop:pet' => array('label' => 'Pet', 'frequency' => 29, 'icon' => ''),
214             'shop:beauty' => array('label' => 'Beauty', 'frequency' => 28, 'icon' => ''),
215             'shop:stationery' => array('label' => 'Stationery', 'frequency' => 25, 'icon' => ''),
216             'shop:shopping_centre' => array('label' => 'Shopping Centre', 'frequency' => 25, 'icon' => ''),
217             'shop:general' => array('label' => 'General', 'frequency' => 25, 'icon' => ''),
218             'shop:electrical' => array('label' => 'Electrical', 'frequency' => 25, 'icon' => ''),
219             'shop:toys' => array('label' => 'Toys', 'frequency' => 23, 'icon' => ''),
220             'shop:jeweller' => array('label' => 'Jeweller', 'frequency' => 23, 'icon' => ''),
221             'shop:betting' => array('label' => 'Betting', 'frequency' => 23, 'icon' => ''),
222             'shop:household' => array('label' => 'Household', 'frequency' => 21, 'icon' => ''),
223             'shop:travel_agency' => array('label' => 'Travel Agency', 'frequency' => 21, 'icon' => ''),
224             'shop:hifi' => array('label' => 'Hifi', 'frequency' => 21, 'icon' => ''),
225             'amenity:shop' => array('label' => 'Shop', 'frequency' => 61, 'icon' => ''),
226             'tourism:information' => array('label' => 'Information', 'frequency' => 224, 'icon' => 'amenity_information'),
227
228             'place:house' => array('label' => 'House', 'frequency' => 2086, 'icon' => '', 'defzoom' => 18),
229             'place:house_name' => array('label' => 'House', 'frequency' => 2086, 'icon' => '', 'defzoom' => 18),
230             'place:house_number' => array('label' => 'House Number', 'frequency' => 2086, 'icon' => '', 'defzoom' => 18),
231             'place:country_code' => array('label' => 'Country Code', 'frequency' => 2086, 'icon' => '', 'defzoom' => 18),
232
233             //
234
235             'leisure:pitch' => array('label' => 'Pitch', 'frequency' => 762, 'icon' => ''),
236             'highway:unsurfaced' => array('label' => 'Unsurfaced', 'frequency' => 492, 'icon' => ''),
237             'historic:ruins' => array('label' => 'Ruins', 'frequency' => 483, 'icon' => 'tourist_ruin'),
238             'amenity:college' => array('label' => 'College', 'frequency' => 473, 'icon' => 'education_school'),
239             'historic:monument' => array('label' => 'Monument', 'frequency' => 470, 'icon' => 'tourist_monument'),
240             'railway:subway' => array('label' => 'Subway', 'frequency' => 385, 'icon' => ''),
241             'historic:memorial' => array('label' => 'Memorial', 'frequency' => 382, 'icon' => 'tourist_monument'),
242             'leisure:nature_reserve' => array('label' => 'Nature Reserve', 'frequency' => 342, 'icon' => ''),
243             'leisure:common' => array('label' => 'Common', 'frequency' => 322, 'icon' => ''),
244             'waterway:lock_gate' => array('label' => 'Lock Gate', 'frequency' => 321, 'icon' => ''),
245             'natural:fell' => array('label' => 'Fell', 'frequency' => 308, 'icon' => ''),
246             'amenity:nightclub' => array('label' => 'Nightclub', 'frequency' => 292, 'icon' => ''),
247             'highway:path' => array('label' => 'Path', 'frequency' => 287, 'icon' => ''),
248             'leisure:garden' => array('label' => 'Garden', 'frequency' => 285, 'icon' => ''),
249             'landuse:reservoir' => array('label' => 'Reservoir', 'frequency' => 276, 'icon' => ''),
250             'leisure:playground' => array('label' => 'Playground', 'frequency' => 264, 'icon' => ''),
251             'leisure:stadium' => array('label' => 'Stadium', 'frequency' => 212, 'icon' => ''),
252             'historic:mine' => array('label' => 'Mine', 'frequency' => 193, 'icon' => 'poi_mine'),
253             'natural:cliff' => array('label' => 'Cliff', 'frequency' => 193, 'icon' => ''),
254             'tourism:caravan_site' => array('label' => 'Caravan Site', 'frequency' => 183, 'icon' => 'accommodation_caravan_park'),
255             'amenity:bus_station' => array('label' => 'Bus Station', 'frequency' => 181, 'icon' => 'transport_bus_station'),
256             'amenity:kindergarten' => array('label' => 'Kindergarten', 'frequency' => 179, 'icon' => ''),
257             'highway:construction' => array('label' => 'Construction', 'frequency' => 176, 'icon' => ''),
258             'amenity:atm' => array('label' => 'Atm', 'frequency' => 172, 'icon' => 'money_atm2'),
259             'amenity:emergency_phone' => array('label' => 'Emergency Phone', 'frequency' => 164, 'icon' => ''),
260             'waterway:lock' => array('label' => 'Lock', 'frequency' => 146, 'icon' => ''),
261             'waterway:riverbank' => array('label' => 'Riverbank', 'frequency' => 143, 'icon' => ''),
262             'natural:coastline' => array('label' => 'Coastline', 'frequency' => 142, 'icon' => ''),
263             'tourism:viewpoint' => array('label' => 'Viewpoint', 'frequency' => 140, 'icon' => 'tourist_view_point'),
264             'tourism:hostel' => array('label' => 'Hostel', 'frequency' => 140, 'icon' => ''),
265             'tourism:bed_and_breakfast' => array('label' => 'Bed And Breakfast', 'frequency' => 140, 'icon' => 'accommodation_bed_and_breakfast'),
266             'railway:halt' => array('label' => 'Halt', 'frequency' => 135, 'icon' => ''),
267             'railway:platform' => array('label' => 'Platform', 'frequency' => 134, 'icon' => ''),
268             'railway:tram' => array('label' => 'Tram', 'frequency' => 130, 'icon' => 'transport_tram_stop'),
269             'amenity:courthouse' => array('label' => 'Courthouse', 'frequency' => 129, 'icon' => 'amenity_court'),
270             'amenity:recycling' => array('label' => 'Recycling', 'frequency' => 126, 'icon' => 'amenity_recycling'),
271             'amenity:dentist' => array('label' => 'Dentist', 'frequency' => 124, 'icon' => 'health_dentist'),
272             'natural:beach' => array('label' => 'Beach', 'frequency' => 121, 'icon' => 'tourist_beach'),
273             'place:moor' => array('label' => 'Moor', 'frequency' => 118, 'icon' => ''),
274             'amenity:grave_yard' => array('label' => 'Grave Yard', 'frequency' => 110, 'icon' => ''),
275             'waterway:drain' => array('label' => 'Drain', 'frequency' => 108, 'icon' => ''),
276             'landuse:grass' => array('label' => 'Grass', 'frequency' => 106, 'icon' => ''),
277             'landuse:village_green' => array('label' => 'Village Green', 'frequency' => 106, 'icon' => ''),
278             'natural:bay' => array('label' => 'Bay', 'frequency' => 102, 'icon' => ''),
279             'railway:tram_stop' => array('label' => 'Tram Stop', 'frequency' => 101, 'icon' => 'transport_tram_stop'),
280             'leisure:marina' => array('label' => 'Marina', 'frequency' => 98, 'icon' => ''),
281             'highway:stile' => array('label' => 'Stile', 'frequency' => 97, 'icon' => ''),
282             'natural:moor' => array('label' => 'Moor', 'frequency' => 95, 'icon' => ''),
283             'railway:light_rail' => array('label' => 'Light Rail', 'frequency' => 91, 'icon' => ''),
284             'railway:narrow_gauge' => array('label' => 'Narrow Gauge', 'frequency' => 90, 'icon' => ''),
285             'natural:land' => array('label' => 'Land', 'frequency' => 86, 'icon' => ''),
286             'amenity:village_hall' => array('label' => 'Village Hall', 'frequency' => 82, 'icon' => ''),
287             'waterway:dock' => array('label' => 'Dock', 'frequency' => 80, 'icon' => ''),
288             'amenity:veterinary' => array('label' => 'Veterinary', 'frequency' => 79, 'icon' => ''),
289             'landuse:brownfield' => array('label' => 'Brownfield', 'frequency' => 77, 'icon' => ''),
290             'leisure:track' => array('label' => 'Track', 'frequency' => 76, 'icon' => ''),
291             'railway:historic_station' => array('label' => 'Historic Station', 'frequency' => 74, 'icon' => ''),
292             'landuse:construction' => array('label' => 'Construction', 'frequency' => 72, 'icon' => ''),
293             'amenity:prison' => array('label' => 'Prison', 'frequency' => 71, 'icon' => 'amenity_prison'),
294             'landuse:quarry' => array('label' => 'Quarry', 'frequency' => 71, 'icon' => ''),
295             'amenity:telephone' => array('label' => 'Telephone', 'frequency' => 70, 'icon' => ''),
296             'highway:traffic_signals' => array('label' => 'Traffic Signals', 'frequency' => 66, 'icon' => ''),
297             'natural:heath' => array('label' => 'Heath', 'frequency' => 62, 'icon' => ''),
298             'historic:house' => array('label' => 'House', 'frequency' => 61, 'icon' => ''),
299             'amenity:social_club' => array('label' => 'Social Club', 'frequency' => 61, 'icon' => ''),
300             'landuse:military' => array('label' => 'Military', 'frequency' => 61, 'icon' => ''),
301             'amenity:health_centre' => array('label' => 'Health Centre', 'frequency' => 59, 'icon' => ''),
302             'historic:building' => array('label' => 'Building', 'frequency' => 58, 'icon' => ''),
303             'amenity:clinic' => array('label' => 'Clinic', 'frequency' => 57, 'icon' => ''),
304             'highway:services' => array('label' => 'Services', 'frequency' => 56, 'icon' => ''),
305             'amenity:ferry_terminal' => array('label' => 'Ferry Terminal', 'frequency' => 55, 'icon' => ''),
306             'natural:marsh' => array('label' => 'Marsh', 'frequency' => 55, 'icon' => ''),
307             'natural:hill' => array('label' => 'Hill', 'frequency' => 54, 'icon' => ''),
308             'highway:raceway' => array('label' => 'Raceway', 'frequency' => 53, 'icon' => ''),
309             'amenity:taxi' => array('label' => 'Taxi', 'frequency' => 47, 'icon' => ''),
310             'amenity:take_away' => array('label' => 'Take Away', 'frequency' => 45, 'icon' => ''),
311             'amenity:car_rental' => array('label' => 'Car Rental', 'frequency' => 44, 'icon' => ''),
312             'place:islet' => array('label' => 'Islet', 'frequency' => 44, 'icon' => ''),
313             'amenity:nursery' => array('label' => 'Nursery', 'frequency' => 44, 'icon' => ''),
314             'amenity:nursing_home' => array('label' => 'Nursing Home', 'frequency' => 43, 'icon' => ''),
315             'amenity:toilets' => array('label' => 'Toilets', 'frequency' => 38, 'icon' => ''),
316             'amenity:hall' => array('label' => 'Hall', 'frequency' => 38, 'icon' => ''),
317             'waterway:boatyard' => array('label' => 'Boatyard', 'frequency' => 36, 'icon' => ''),
318             'highway:mini_roundabout' => array('label' => 'Mini Roundabout', 'frequency' => 35, 'icon' => ''),
319             'historic:manor' => array('label' => 'Manor', 'frequency' => 35, 'icon' => ''),
320             'tourism:chalet' => array('label' => 'Chalet', 'frequency' => 34, 'icon' => ''),
321             'amenity:bicycle_parking' => array('label' => 'Bicycle Parking', 'frequency' => 34, 'icon' => ''),
322             'amenity:hotel' => array('label' => 'Hotel', 'frequency' => 34, 'icon' => ''),
323             'waterway:weir' => array('label' => 'Weir', 'frequency' => 33, 'icon' => ''),
324             'natural:wetland' => array('label' => 'Wetland', 'frequency' => 33, 'icon' => ''),
325             'natural:cave_entrance' => array('label' => 'Cave Entrance', 'frequency' => 32, 'icon' => ''),
326             'amenity:crematorium' => array('label' => 'Crematorium', 'frequency' => 31, 'icon' => ''),
327             'tourism:picnic_site' => array('label' => 'Picnic Site', 'frequency' => 31, 'icon' => ''),
328             'landuse:wood' => array('label' => 'Wood', 'frequency' => 30, 'icon' => ''),
329             'landuse:basin' => array('label' => 'Basin', 'frequency' => 30, 'icon' => ''),
330             'natural:tree' => array('label' => 'Tree', 'frequency' => 30, 'icon' => ''),
331             'leisure:slipway' => array('label' => 'Slipway', 'frequency' => 29, 'icon' => ''),
332             'landuse:meadow' => array('label' => 'Meadow', 'frequency' => 29, 'icon' => ''),
333             'landuse:piste' => array('label' => 'Piste', 'frequency' => 28, 'icon' => ''),
334             'amenity:care_home' => array('label' => 'Care Home', 'frequency' => 28, 'icon' => ''),
335             'amenity:club' => array('label' => 'Club', 'frequency' => 28, 'icon' => ''),
336             'amenity:medical_centre' => array('label' => 'Medical Centre', 'frequency' => 27, 'icon' => ''),
337             'historic:roman_road' => array('label' => 'Roman Road', 'frequency' => 27, 'icon' => ''),
338             'historic:fort' => array('label' => 'Fort', 'frequency' => 26, 'icon' => ''),
339             'railway:subway_entrance' => array('label' => 'Subway Entrance', 'frequency' => 26, 'icon' => ''),
340             'historic:yes' => array('label' => 'Historic', 'frequency' => 25, 'icon' => ''),
341             'highway:gate' => array('label' => 'Gate', 'frequency' => 25, 'icon' => ''),
342             'leisure:fishing' => array('label' => 'Fishing', 'frequency' => 24, 'icon' => ''),
343             'historic:museum' => array('label' => 'Museum', 'frequency' => 24, 'icon' => ''),
344             'amenity:car_wash' => array('label' => 'Car Wash', 'frequency' => 24, 'icon' => ''),
345             'railway:level_crossing' => array('label' => 'Level Crossing', 'frequency' => 23, 'icon' => ''),
346             'leisure:bird_hide' => array('label' => 'Bird Hide', 'frequency' => 23, 'icon' => ''),
347             'natural:headland' => array('label' => 'Headland', 'frequency' => 21, 'icon' => ''),
348             'tourism:apartments' => array('label' => 'Apartments', 'frequency' => 21, 'icon' => ''),
349             'amenity:shopping' => array('label' => 'Shopping', 'frequency' => 21, 'icon' => ''),
350             'natural:scrub' => array('label' => 'Scrub', 'frequency' => 20, 'icon' => ''),
351             'natural:fen' => array('label' => 'Fen', 'frequency' => 20, 'icon' => ''),
352             'building:yes' => array('label' => 'Building', 'frequency' => 200, 'icon' => ''),
353             'mountain_pass:yes' => array('label' => 'Mountain Pass', 'frequency' => 200, 'icon' => ''),
354
355             'amenity:parking' => array('label' => 'Parking', 'frequency' => 3157, 'icon' => ''),
356             'highway:bus_stop' => array('label' => 'Bus Stop', 'frequency' => 35777, 'icon' => 'transport_bus_stop2'),
357             'place:postcode' => array('label' => 'Postcode', 'frequency' => 27267, 'icon' => ''),
358             'amenity:post_box' => array('label' => 'Post Box', 'frequency' => 9613, 'icon' => ''),
359
360             'place:houses' => array('label' => 'Houses', 'frequency' => 85, 'icon' => ''),
361             'railway:preserved' => array('label' => 'Preserved', 'frequency' => 227, 'icon' => ''),
362             'waterway:derelict_canal' => array('label' => 'Derelict Canal', 'frequency' => 21, 'icon' => ''),
363             'amenity:dead_pub' => array('label' => 'Dead Pub', 'frequency' => 20, 'icon' => ''),
364             'railway:disused_station' => array('label' => 'Disused Station', 'frequency' => 114, 'icon' => ''),
365             'railway:abandoned' => array('label' => 'Abandoned', 'frequency' => 641, 'icon' => ''),
366             'railway:disused' => array('label' => 'Disused', 'frequency' => 72, 'icon' => ''),
367            );
368 }
369
370
371 function getClassTypesWithImportance()
372 {
373     $aOrders = getClassTypes();
374     $i = 1;
375     foreach ($aOrders as $sID => $a) {
376         $aOrders[$sID]['importance'] = $i++;
377     }
378     return $aOrders;
379 }
380
381 function getResultDiameter($aResult)
382 {
383     $aClassType = getClassTypes();
384
385     $fDiameter = 0.0001;
386
387     if (isset($aResult['class'])
388         && isset($aResult['type'])
389         && isset($aResult['admin_level'])
390         && isset($aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['defdiameter'])
391         && $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['defdiameter']
392     ) {
393         $fDiameter = $aClassType[$aResult['class'].':'.$aResult['type'].':'.$aResult['admin_level']]['defdiameter'];
394     } elseif (isset($aResult['class'])
395         && isset($aResult['type'])
396         && isset($aClassType[$aResult['class'].':'.$aResult['type']]['defdiameter'])
397         && $aClassType[$aResult['class'].':'.$aResult['type']]['defdiameter']
398     ) {
399         $fDiameter = $aClassType[$aResult['class'].':'.$aResult['type']]['defdiameter'];
400     }
401
402     return $fDiameter;
403 }
404
405
406 function javascript_renderData($xVal, $iOptions = 0)
407 {
408     $iOptions |= JSON_UNESCAPED_UNICODE;
409     if (isset($_GET['pretty']) && in_array(strtolower($_GET['pretty']), array('1', 'true'))) {
410         $iOptions |= JSON_PRETTY_PRINT;
411     }
412
413     $jsonout = json_encode($xVal, $iOptions);
414
415     if (!isset($_GET['json_callback'])) {
416         header('Content-Type: application/json; charset=UTF-8');
417         echo $jsonout;
418     } else {
419         if (preg_match('/^[$_\p{L}][$_\p{L}\p{Nd}.[\]]*$/u', $_GET['json_callback'])) {
420             header('Content-Type: application/javascript; charset=UTF-8');
421             echo $_GET['json_callback'].'('.$jsonout.')';
422         } else {
423             header('HTTP/1.0 400 Bad Request');
424         }
425     }
426 }
427
428
429 function getAddressDetails(&$oDB, $sLanguagePrefArraySQL, $iPlaceID, $sCountryCode = false, $housenumber = -1, $bRaw = false)
430 {
431     $sSQL = "select *,get_name_by_language(name,$sLanguagePrefArraySQL) as localname from get_addressdata($iPlaceID, $housenumber)";
432     if (!$bRaw) $sSQL .= " WHERE isaddress OR type = 'country_code'";
433     $sSQL .= ' order by rank_address desc,isaddress desc';
434
435     $aAddressLines = chksql($oDB->getAll($sSQL));
436     if ($bRaw) return $aAddressLines;
437     //echo "<pre>";
438     //var_dump($aAddressLines);
439     $aAddress = array();
440     $aFallback = array();
441     $aClassType = getClassTypes();
442     foreach ($aAddressLines as $aLine) {
443         $bFallback = false;
444         $aTypeLabel = false;
445         if (isset($aClassType[$aLine['class'].':'.$aLine['type'].':'.$aLine['admin_level']])) {
446             $aTypeLabel = $aClassType[$aLine['class'].':'.$aLine['type'].':'.$aLine['admin_level']];
447         } elseif (isset($aClassType[$aLine['class'].':'.$aLine['type']])) {
448             $aTypeLabel = $aClassType[$aLine['class'].':'.$aLine['type']];
449         } elseif (isset($aClassType['boundary:administrative:'.((int)($aLine['rank_address']/2))])) {
450             $aTypeLabel = $aClassType['boundary:administrative:'.((int)($aLine['rank_address']/2))];
451             $bFallback = true;
452         } else {
453             $aTypeLabel = array('simplelabel' => 'address'.$aLine['rank_address']);
454             $bFallback = true;
455         }
456         if ($aTypeLabel && ((isset($aLine['localname']) && $aLine['localname']) || (isset($aLine['housenumber']) && $aLine['housenumber']))) {
457             $sTypeLabel = strtolower(isset($aTypeLabel['simplelabel'])?$aTypeLabel['simplelabel']:$aTypeLabel['label']);
458             $sTypeLabel = str_replace(' ', '_', $sTypeLabel);
459             if (!isset($aAddress[$sTypeLabel]) || (isset($aFallback[$sTypeLabel]) && $aFallback[$sTypeLabel]) || $aLine['class'] == 'place') {
460                 $aAddress[$sTypeLabel] = $aLine['localname']?$aLine['localname']:$aLine['housenumber'];
461             }
462             $aFallback[$sTypeLabel] = $bFallback;
463         }
464     }
465     return $aAddress;
466 }
467
468
469 function addQuotes($s)
470 {
471     return "'".$s."'";
472 }
473
474 function parseLatLon($sQuery)
475 {
476     $sFound    = null;
477     $fQueryLat = null;
478     $fQueryLon = null;
479
480     if (preg_match('/\\s*([NS])[ ]+([0-9]+[0-9.]*)[° ]+([0-9.]+)?[′\']*[, ]+([EW])[ ]+([0-9]+)[° ]+([0-9]+[0-9.]*)[′\']*\\s*/', $sQuery, $aData)) {
481         /*               1         2                   3                    4         5            6
482          * degrees decimal minutes
483          * N 40 26.767, W 79 58.933
484          * N 40°26.767′, W 79°58.933′
485          */
486         $sFound    = $aData[0];
487         $fQueryLat = ($aData[1]=='N'?1:-1) * ($aData[2] + $aData[3]/60);
488         $fQueryLon = ($aData[4]=='E'?1:-1) * ($aData[5] + $aData[6]/60);
489     } elseif (preg_match('/\\s*([0-9]+)[° ]+([0-9]+[0-9.]*)?[′\']*[ ]+([NS])[, ]+([0-9]+)[° ]+([0-9]+[0-9.]*)?[′\' ]+([EW])\\s*/', $sQuery, $aData)) {
490         /*                     1            2                         3          4            5                      6
491          * degrees decimal minutes
492          * 40 26.767 N, 79 58.933 W
493          * 40° 26.767′ N 79° 58.933′ W
494          */
495         $sFound    = $aData[0];
496         $fQueryLat = ($aData[3]=='N'?1:-1) * ($aData[1] + $aData[2]/60);
497         $fQueryLon = ($aData[6]=='E'?1:-1) * ($aData[4] + $aData[5]/60);
498     } elseif (preg_match('/\\s*([NS])[ ]([0-9]+)[° ]+([0-9]+)[′\' ]+([0-9]+)[″"]*[, ]+([EW])[ ]([0-9]+)[° ]+([0-9]+)[′\' ]+([0-9]+)[″"]*\\s*/', $sQuery, $aData)) {
499         /*                     1        2            3              4                 5        6            7              8
500          * degrees decimal seconds
501          * N 40 26 46 W 79 58 56
502          * N 40° 26′ 46″, W 79° 58′ 56″
503          */
504         $sFound    = $aData[0];
505         $fQueryLat = ($aData[1]=='N'?1:-1) * ($aData[2] + $aData[3]/60 + $aData[4]/3600);
506         $fQueryLon = ($aData[5]=='E'?1:-1) * ($aData[6] + $aData[7]/60 + $aData[8]/3600);
507     } elseif (preg_match('/\\s*([0-9]+)[° ]+([0-9]+)[′\' ]+([0-9]+[0-9.]*)[″" ]+([NS])[, ]+([0-9]+)[° ]+([0-9]+)[′\' ]+([0-9]+[0-9.]*)[″" ]+([EW])\\s*/', $sQuery, $aData)) {
508         /*                     1            2              3                    4          5            6              7                     8
509          * degrees decimal seconds
510          * 40 26 46 N 79 58 56 W
511          * 40° 26′ 46″ N, 79° 58′ 56″ W
512          * 40° 26′ 46.78″ N, 79° 58′ 56.89″ W
513          */
514         $sFound    = $aData[0];
515         $fQueryLat = ($aData[4]=='N'?1:-1) * ($aData[1] + $aData[2]/60 + $aData[3]/3600);
516         $fQueryLon = ($aData[8]=='E'?1:-1) * ($aData[5] + $aData[6]/60 + $aData[7]/3600);
517     } elseif (preg_match('/\\s*([NS])[ ]([0-9]+[0-9]*\\.[0-9]+)[°]*[, ]+([EW])[ ]([0-9]+[0-9]*\\.[0-9]+)[°]*\\s*/', $sQuery, $aData)) {
518         /*                     1        2                               3        4
519          * degrees decimal
520          * N 40.446° W 79.982°
521          */
522         $sFound    = $aData[0];
523         $fQueryLat = ($aData[1]=='N'?1:-1) * ($aData[2]);
524         $fQueryLon = ($aData[3]=='E'?1:-1) * ($aData[4]);
525     } elseif (preg_match('/\\s*([0-9]+[0-9]*\\.[0-9]+)[° ]+([NS])[, ]+([0-9]+[0-9]*\\.[0-9]+)[° ]+([EW])\\s*/', $sQuery, $aData)) {
526         /*                     1                           2          3                           4
527          * degrees decimal
528          * 40.446° N 79.982° W
529          */
530         $sFound    = $aData[0];
531         $fQueryLat = ($aData[2]=='N'?1:-1) * ($aData[1]);
532         $fQueryLon = ($aData[4]=='E'?1:-1) * ($aData[3]);
533     } elseif (preg_match('/(\\s*\\[|^\\s*|\\s*)(-?[0-9]+[0-9]*\\.[0-9]+)[, ]+(-?[0-9]+[0-9]*\\.[0-9]+)(\\]\\s*|\\s*$|\\s*)/', $sQuery, $aData)) {
534         /*                 1                   2                             3                        4
535          * degrees decimal
536          * 12.34, 56.78
537          * 12.34 56.78
538          * [12.456,-78.90]
539          */
540         $sFound    = $aData[0];
541         $fQueryLat = $aData[2];
542         $fQueryLon = $aData[3];
543     } else {
544         return false;
545     }
546
547     return array($sFound, $fQueryLat, $fQueryLon);
548 }
549
550
551 function geometryText2Points($geometry_as_text, $fRadius)
552 {
553     $aPolyPoints = null;
554     if (preg_match('#POLYGON\\(\\(([- 0-9.,]+)#', $geometry_as_text, $aMatch)) {
555         //
556         preg_match_all('/(-?[0-9.]+) (-?[0-9.]+)/', $aMatch[1], $aPolyPoints, PREG_SET_ORDER);
557         //
558     } elseif (preg_match('#LINESTRING\\(([- 0-9.,]+)#', $geometry_as_text, $aMatch)) {
559         //
560         preg_match_all('/(-?[0-9.]+) (-?[0-9.]+)/', $aMatch[1], $aPolyPoints, PREG_SET_ORDER);
561         //
562     } elseif (preg_match('#MULTIPOLYGON\\(\\(\\(([- 0-9.,]+)#', $geometry_as_text, $aMatch)) {
563         //
564         preg_match_all('/(-?[0-9.]+) (-?[0-9.]+)/', $aMatch[1], $aPolyPoints, PREG_SET_ORDER);
565         //
566     } elseif (preg_match('#POINT\\((-?[0-9.]+) (-?[0-9.]+)\\)#', $geometry_as_text, $aMatch)) {
567         //
568         $aPolyPoints = createPointsAroundCenter($aMatch[1], $aMatch[2], $fRadius);
569         //
570     }
571
572     if (isset($aPolyPoints)) {
573         $aResultPoints = array();
574         foreach ($aPolyPoints as $aPoint) {
575             $aResultPoints[] = array($aPoint[1], $aPoint[2]);
576         }
577         return $aResultPoints;
578     }
579
580     return;
581 }
582
583 function createPointsAroundCenter($fLon, $fLat, $fRadius)
584 {
585     $iSteps = max(8, min(100, ($fRadius * 40000)^2));
586     $fStepSize = (2*pi())/$iSteps;
587     $aPolyPoints = array();
588     for ($f = 0; $f < 2*pi(); $f += $fStepSize) {
589         $aPolyPoints[] = array('', $fLon+($fRadius*sin($f)), $fLat+($fRadius*cos($f)) );
590     }
591     return $aPolyPoints;
592 }
593
594 function closestHouseNumber($aRow)
595 {
596     $fHouse = $aRow['startnumber']
597                 + ($aRow['endnumber'] - $aRow['startnumber']) * $aRow['fraction'];
598
599     switch ($aRow['interpolationtype']) {
600         case 'odd':
601             $iHn = (int)($fHouse/2) * 2 + 1;
602             break;
603         case 'even':
604             $iHn = (int)(round($fHouse/2)) * 2;
605             break;
606         default:
607             $iHn = (int)(round($fHouse));
608             break;
609     }
610
611     return max(min($aRow['endnumber'], $iHn), $aRow['startnumber']);
612 }