]> git.openstreetmap.org Git - nominatim.git/blob - lib/ClassTypes.php
5afbf258b42f788749c58272ee0128edec537437
[nominatim.git] / lib / ClassTypes.php
1 <?php
2
3 namespace Nominatim\ClassTypes;
4
5 /**
6  * Create a simplfied label for the given place.
7  *
8  * @param array[] $aPlace  Information about the place to label.
9  *
10  * A simplified label groups various object types together under a common
11  * label.
12  */
13 function getSimpleLabel($aPlace)
14 {
15     static $aRoadLabels = array (
16                               'motorway_junction' => 'Junction',
17                               'motorway' => 'Road',
18                               'trunk' => 'Road',
19                               'primary' => 'Road',
20                               'secondary' => 'Road',
21                               'tertiary' => 'Road',
22                               'residential' => 'Road',
23                               'unclassified' => 'Road',
24                               'living_street' => 'Road',
25                               'service' => 'Road',
26                               'track' => 'Road',
27                               'byway' => 'Road',
28                               'steps' => 'Footway',
29                               'motorway_link' => 'Road',
30                               'trunk_link' => 'Road',
31                               'primary_link' => 'Road',
32                               'secondary_link' => 'Road',
33                               'tertiary_link' => 'Road',
34                               'construction' => 'Road'
35             );
36
37     if ($aPlace['class'] == 'highway' and isset($aRoadLabels[$aPlace['type']])) {
38         return $aRoadLabels[$aPlace['type']];
39     }
40
41     return getLabel($aPlace);
42 }
43
44 /**
45  * Create a label for the given place.
46  *
47  * @param array[] $aPlace  Information about the place to label.
48  */
49 function getLabel($aPlace, $sCountry = null)
50 {
51     if ($aPlace['class'] == 'boundary'
52         && $aPlace['type'] == 'administrative')
53         && !isset($aPlace['place_type'])
54     ) {
55         return getBoundaryLabel((int)($aPlace['admin_level'] ?? 15,
56                                 $aPlace['country_code'] ?? null)
57     }
58
59     return ucwords(str_replace('_', ' ', $aPlace['place_type'] ?? $aPlace['type']));
60 }
61
62 /**
63  * Return a generic simple label to be used for the given address rank
64  * in the given country.
65  *
66  * @param int    $iRankAddress  Address rank of the object to be labeled.
67  * @param string $sCountry      Country code of the country where the object is
68  *                              in. May be null, in which case a world-wide
69  *                              fallback is used.
70  *
71  * @return string
72  */
73 function getFallbackLabel($iRankAddress, $sCountry = null)
74 {
75     return getBoundaryLabel((int)($iRankAddress / 2), $sCountry,
76                            'address'.$iRankAddress);
77 }
78
79 /**
80  * Return a simple label for an administrative boundary for the given country.
81  *
82  * @param int $iAdminLevel   Content of admin_level tag.
83  * @param string $sCountry   Country code of the country where the object is
84  *                           in. May be null, in which case a world-wide
85  *                           fallback is used.
86  * @param string $sFallback  String to return if no explicit string is listed.
87  *
88  * @return string
89  */
90 function getBoundaryLabel($iAdminLevel, $sCountry, $sFallback = 'Administrative')
91 {
92     static $aBoundaryList = array (
93                              'default' => array (
94                                            1 => 'Continent',
95                                            2 => 'Country',
96                                            3 => 'Region',
97                                            4 => 'State',
98                                            5 => 'State District',
99                                            6 => 'County',
100                                            7 => 'Municipality',
101                                            8 => 'City',
102                                            9 => 'City District'
103                                            10 => 'Suburb',
104                                            11 => 'Neighbourhood'
105                                            )
106             );
107
108     if (isset($aBoundaryList[$sCountry])
109         && isset($aBoundaryList[$sCountry][$iAdminLevel])
110     ) {
111         return $aBoundaryList[$sCountry][$iAdminLevel];
112     }
113
114     return $aBoundaryList['default'][$iAdminLevel] ?? $sFallback;
115 }
116
117
118 function getInfo($aPlace)
119 {
120     $aClassType = getList();
121
122     if ($aPlace['type'] == 'administrative' && isset($aPlace['place_type'])) {
123         $sName = 'place:'.$aPlace['place_type'];
124         if (isset($aClassType[$sName])) {
125             return $aClassType[$sName];
126         }
127     }
128
129     if (isset($aPlace['admin_level'])) {
130         $sName = $aPlace['class'].':'.$aPlace['type'].':'.$aPlace['admin_level'];
131         if (isset($aClassType[$sName])) {
132             return $aClassType[$sName];
133         }
134     }
135
136     $sName = $aPlace['class'].':'.$aPlace['type'];
137     if (isset($aClassType[$sName])) {
138         return $aClassType[$sName];
139     }
140
141     return false;
142 }
143
144 function getFallbackInfo($aPlace)
145 {
146     $aClassType = getList();
147
148     $sFallback = 'boundary:administrative:'.((int)($aPlace['rank_address']/2));
149     if (isset($aClassType[$sFallback])) {
150         return $aClassType[$sFallback];
151     }
152
153     return array('simplelabel' => 'address'.$aPlace['rank_address']);
154 }
155
156 function getProperty($aPlace, $sProp, $mDefault = false)
157 {
158     $aClassType = getList();
159
160     if (isset($aPlace['admin_level'])) {
161         $sName = $aPlace['class'].':'.$aPlace['type'].':'.$aPlace['admin_level'];
162         if (isset($aClassType[$sName]) && isset($aClassType[$sName][$sProp])) {
163             return $aClassType[$sName][$sProp];
164         }
165     }
166
167     $sName = $aPlace['class'].':'.$aPlace['type'];
168     if (isset($aClassType[$sName]) && isset($aClassType[$sName][$sProp])) {
169         return $aClassType[$sName][$sProp];
170     }
171
172     return $mDefault;
173 }
174
175 function getListWithImportance()
176 {
177     static $aOrders = null;
178     if ($aOrders === null) {
179         $aOrders = getList();
180         $i = 1;
181         foreach ($aOrders as $sID => $a) {
182             $aOrders[$sID]['importance'] = $i++;
183         }
184     }
185
186     return $aOrders;
187 }
188
189
190
191 function getList()
192 {
193     static $aPropertyCache = array(
194             'boundary:administrative:1' => array('label' => 'Continent', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
195             'boundary:administrative:2' => array('label' => 'Country', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
196             'place:country' => array('label' => 'Country', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defzoom' => 6, 'defdiameter' => 15),
197             'boundary:administrative:3' => array('label' => 'Region', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
198             'boundary:administrative:4' => array('label' => 'State', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
199             'place:state' => array('label' => 'State', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defzoom' => 8, 'defdiameter' => 5.12),
200             'place:province' => array('label' => 'Province', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defzoom' => 8, 'defdiameter' => 5.12),
201             'boundary:administrative:5' => array('label' => 'State District', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
202             'boundary:administrative:6' => array('label' => 'County', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
203             'boundary:administrative:7' => array('label' => 'Municipality', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
204             'place:county' => array('label' => 'County', 'frequency' => 108, 'icon' => 'poi_boundary_administrative', 'defzoom' => 10, 'defdiameter' => 1.28),
205             'boundary:administrative:8' => array('label' => 'City', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
206             'place:city' => array('label' => 'City', 'frequency' => 66, 'icon' => 'poi_place_city', 'defzoom' => 12, 'defdiameter' => 0.32),
207             'boundary:administrative:9' => array('label' => 'City District', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
208             'boundary:administrative:10' => array('label' => 'Suburb', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
209             'boundary:administrative:11' => array('label' => 'Neighbourhood', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
210             'place:region' => array('label' => 'Region', 'frequency' => 0, 'icon' => 'poi_boundary_administrative', 'defzoom' => 8, 'defdiameter' => 0.04),
211             'place:island' => array('label' => 'Island', 'frequency' => 288, 'defzoom' => 11, 'defdiameter' => 0.64),
212             'boundary:administrative' => array('label' => 'Administrative', 'frequency' => 413, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
213             'boundary:postal_code' => array('label' => 'Postcode', 'frequency' => 413, 'icon' => 'poi_boundary_administrative', 'defdiameter' => 0.32),
214             'place:town' => array('label' => 'Town', 'frequency' => 1497, 'icon' => 'poi_place_town', 'defzoom' => 14, 'defdiameter' => 0.08),
215             'place:village' => array('label' => 'Village', 'frequency' => 11230, 'icon' => 'poi_place_village', 'defzoom' => 15, 'defdiameter' => 0.04),
216             'place:hamlet' => array('label' => 'Hamlet', 'frequency' => 7075, 'icon' => 'poi_place_village', 'defzoom' => 15, 'defdiameter' => 0.04),
217             'place:suburb' => array('label' => 'Suburb', 'frequency' => 2528, 'icon' => 'poi_place_village', 'defdiameter' => 0.04),
218             'place:locality' => array('label' => 'Locality', 'frequency' => 4113, 'icon' => 'poi_place_village', 'defdiameter' => 0.02),
219             'landuse:farm' => array('label' => 'Farm', 'frequency' => 1201, 'defdiameter' => 0.02),
220             'place:farm' => array('label' => 'Farm', 'frequency' => 1162, 'defdiameter' => 0.02),
221
222             'highway:motorway_junction' => array('label' => 'Motorway Junction', 'frequency' => 1126, 'simplelabel' => 'Junction'),
223             'highway:motorway' => array('label' => 'Motorway', 'frequency' => 4627, 'simplelabel' => 'Road'),
224             'highway:trunk' => array('label' => 'Trunk', 'frequency' => 23084, 'simplelabel' => 'Road'),
225             'highway:primary' => array('label' => 'Primary', 'frequency' => 32138, 'simplelabel' => 'Road'),
226             'highway:secondary' => array('label' => 'Secondary', 'frequency' => 25807, 'simplelabel' => 'Road'),
227             'highway:tertiary' => array('label' => 'Tertiary', 'frequency' => 29829, 'simplelabel' => 'Road'),
228             'highway:residential' => array('label' => 'Residential', 'frequency' => 361498, 'simplelabel' => 'Road'),
229             'highway:unclassified' => array('label' => 'Unclassified', 'frequency' => 66441, 'simplelabel' => 'Road'),
230             'highway:living_street' => array('label' => 'Living Street', 'frequency' => 710, 'simplelabel' => 'Road'),
231             'highway:service' => array('label' => 'Service', 'frequency' => 9963, 'simplelabel' => 'Road'),
232             'highway:track' => array('label' => 'Track', 'frequency' => 2565, 'simplelabel' => 'Road'),
233             'highway:road' => array('label' => 'Road', 'frequency' => 591, 'simplelabel' => 'Road'),
234             'highway:byway' => array('label' => 'Byway', 'frequency' => 346, 'simplelabel' => 'Road'),
235             'highway:bridleway' => array('label' => 'Bridleway', 'frequency' => 1556),
236             'highway:cycleway' => array('label' => 'Cycleway', 'frequency' => 2419),
237             'highway:pedestrian' => array('label' => 'Pedestrian', 'frequency' => 2757),
238             'highway:footway' => array('label' => 'Footway', 'frequency' => 15008),
239             'highway:steps' => array('label' => 'Steps', 'frequency' => 444, 'simplelabel' => 'Footway'),
240             'highway:motorway_link' => array('label' => 'Motorway Link', 'frequency' => 795, 'simplelabel' => 'Road'),
241             'highway:trunk_link' => array('label' => 'Trunk Link', 'frequency' => 1258, 'simplelabel' => 'Road'),
242             'highway:primary_link' => array('label' => 'Primary Link', 'frequency' => 313, 'simplelabel' => 'Road'),
243
244             'landuse:industrial' => array('label' => 'Industrial', 'frequency' => 1062),
245             'landuse:residential' => array('label' => 'Residential', 'frequency' => 886),
246             'landuse:retail' => array('label' => 'Retail', 'frequency' => 754),
247             'landuse:commercial' => array('label' => 'Commercial', 'frequency' => 657),
248
249             'place:airport' => array('label' => 'Airport', 'frequency' => 36, 'icon' => 'transport_airport2', 'defdiameter' => 0.03),
250             'aeroway:aerodrome' => array('label' => 'Aerodrome', 'frequency' => 36, 'icon' => 'transport_airport2', 'defdiameter' => 0.03),
251             'aeroway' => array('label' => 'Aeroway', 'frequency' => 36, 'icon' => 'transport_airport2', 'defdiameter' => 0.03),
252             'railway:station' => array('label' => 'Station', 'frequency' => 3431, 'icon' => 'transport_train_station2', 'defdiameter' => 0.01),
253             'amenity:place_of_worship' => array('label' => 'Place Of Worship', 'frequency' => 9049, 'icon' => 'place_of_worship_unknown3'),
254             'amenity:pub' => array('label' => 'Pub', 'frequency' => 18969, 'icon' => 'food_pub'),
255             'amenity:bar' => array('label' => 'Bar', 'frequency' => 164, 'icon' => 'food_bar'),
256             'amenity:university' => array('label' => 'University', 'frequency' => 607, 'icon' => 'education_university'),
257             'tourism:museum' => array('label' => 'Museum', 'frequency' => 543, 'icon' => 'tourist_museum'),
258             'amenity:arts_centre' => array('label' => 'Arts Centre', 'frequency' => 136, 'icon' => 'tourist_art_gallery2'),
259             'tourism:zoo' => array('label' => 'Zoo', 'frequency' => 47, 'icon' => 'tourist_zoo'),
260             'tourism:theme_park' => array('label' => 'Theme Park', 'frequency' => 24, 'icon' => 'poi_point_of_interest'),
261             'tourism:attraction' => array('label' => 'Attraction', 'frequency' => 1463, 'icon' => 'poi_point_of_interest'),
262             'leisure:golf_course' => array('label' => 'Golf Course', 'frequency' => 712, 'icon' => 'sport_golf'),
263             'historic:castle' => array('label' => 'Castle', 'frequency' => 316, 'icon' => 'tourist_castle'),
264             'amenity:hospital' => array('label' => 'Hospital', 'frequency' => 879, 'icon' => 'health_hospital'),
265             'amenity:school' => array('label' => 'School', 'frequency' => 8192, 'icon' => 'education_school'),
266             'amenity:theatre' => array('label' => 'Theatre', 'frequency' => 371, 'icon' => 'tourist_theatre'),
267             'amenity:public_building' => array('label' => 'Public Building', 'frequency' => 985),
268             'amenity:library' => array('label' => 'Library', 'frequency' => 794, 'icon' => 'amenity_library'),
269             'amenity:townhall' => array('label' => 'Townhall', 'frequency' => 242),
270             'amenity:community_centre' => array('label' => 'Community Centre', 'frequency' => 157),
271             'amenity:fire_station' => array('label' => 'Fire Station', 'frequency' => 221, 'icon' => 'amenity_firestation3'),
272             'amenity:police' => array('label' => 'Police', 'frequency' => 334, 'icon' => 'amenity_police2'),
273             'amenity:bank' => array('label' => 'Bank', 'frequency' => 1248, 'icon' => 'money_bank2'),
274             'amenity:post_office' => array('label' => 'Post Office', 'frequency' => 859, 'icon' => 'amenity_post_office'),
275             'leisure:park' => array('label' => 'Park', 'frequency' => 2378),
276             'amenity:park' => array('label' => 'Park', 'frequency' => 53),
277             'landuse:park' => array('label' => 'Park', 'frequency' => 50),
278             'landuse:recreation_ground' => array('label' => 'Recreation Ground', 'frequency' => 517),
279             'tourism:hotel' => array('label' => 'Hotel', 'frequency' => 2150, 'icon' => 'accommodation_hotel2'),
280             'tourism:motel' => array('label' => 'Motel', 'frequency' => 43),
281             'amenity:cinema' => array('label' => 'Cinema', 'frequency' => 277, 'icon' => 'tourist_cinema'),
282             'tourism:artwork' => array('label' => 'Artwork', 'frequency' => 171, 'icon' => 'tourist_art_gallery2'),
283             'historic:archaeological_site' => array('label' => 'Archaeological Site', 'frequency' => 407, 'icon' => 'tourist_archaeological2'),
284             'amenity:doctors' => array('label' => 'Doctors', 'frequency' => 581, 'icon' => 'health_doctors'),
285             'leisure:sports_centre' => array('label' => 'Sports Centre', 'frequency' => 767, 'icon' => 'sport_leisure_centre'),
286             'leisure:swimming_pool' => array('label' => 'Swimming Pool', 'frequency' => 24, 'icon' => 'sport_swimming_outdoor'),
287             'shop:supermarket' => array('label' => 'Supermarket', 'frequency' => 2673, 'icon' => 'shopping_supermarket'),
288             'shop:convenience' => array('label' => 'Convenience', 'frequency' => 1469, 'icon' => 'shopping_convenience'),
289             'amenity:restaurant' => array('label' => 'Restaurant', 'frequency' => 3179, 'icon' => 'food_restaurant'),
290             'amenity:fast_food' => array('label' => 'Fast Food', 'frequency' => 2289, 'icon' => 'food_fastfood'),
291             'amenity:cafe' => array('label' => 'Cafe', 'frequency' => 1780, 'icon' => 'food_cafe'),
292             'tourism:guest_house' => array('label' => 'Guest House', 'frequency' => 223, 'icon' => 'accommodation_bed_and_breakfast'),
293             'amenity:pharmacy' => array('label' => 'Pharmacy', 'frequency' => 733, 'icon' => 'health_pharmacy_dispensing'),
294             'amenity:fuel' => array('label' => 'Fuel', 'frequency' => 1308, 'icon' => 'transport_fuel'),
295             'natural:peak' => array('label' => 'Peak', 'frequency' => 3212, 'icon' => 'poi_peak'),
296             'waterway:waterfall' => array('label' => 'Waterfall', 'frequency' => 24),
297             'natural:wood' => array('label' => 'Wood', 'frequency' => 1845, 'icon' => 'landuse_coniferous_and_deciduous'),
298             'natural:water' => array('label' => 'Water', 'frequency' => 1790),
299             'landuse:forest' => array('label' => 'Forest', 'frequency' => 467),
300             'landuse:cemetery' => array('label' => 'Cemetery', 'frequency' => 463),
301             'landuse:allotments' => array('label' => 'Allotments', 'frequency' => 408),
302             'landuse:farmyard' => array('label' => 'Farmyard', 'frequency' => 397),
303             'railway:rail' => array('label' => 'Rail', 'frequency' => 4894),
304             'waterway:canal' => array('label' => 'Canal', 'frequency' => 1723),
305             'waterway:river' => array('label' => 'River', 'frequency' => 4089),
306             'waterway:stream' => array('label' => 'Stream', 'frequency' => 2684),
307             'shop:bicycle' => array('label' => 'Bicycle', 'frequency' => 349, 'icon' => 'shopping_bicycle'),
308             'shop:clothes' => array('label' => 'Clothes', 'frequency' => 315, 'icon' => 'shopping_clothes'),
309             'shop:hairdresser' => array('label' => 'Hairdresser', 'frequency' => 312, 'icon' => 'shopping_hairdresser'),
310             'shop:doityourself' => array('label' => 'Doityourself', 'frequency' => 247, 'icon' => 'shopping_diy'),
311             'shop:estate_agent' => array('label' => 'Estate Agent', 'frequency' => 162, 'icon' => 'shopping_estateagent2'),
312             'shop:car' => array('label' => 'Car', 'frequency' => 159, 'icon' => 'shopping_car'),
313             'shop:garden_centre' => array('label' => 'Garden Centre', 'frequency' => 143, 'icon' => 'shopping_garden_centre'),
314             'shop:car_repair' => array('label' => 'Car Repair', 'frequency' => 141, 'icon' => 'shopping_car_repair'),
315             'shop:newsagent' => array('label' => 'Newsagent', 'frequency' => 132),
316             'shop:bakery' => array('label' => 'Bakery', 'frequency' => 129, 'icon' => 'shopping_bakery'),
317             'shop:furniture' => array('label' => 'Furniture', 'frequency' => 124),
318             'shop:butcher' => array('label' => 'Butcher', 'frequency' => 105, 'icon' => 'shopping_butcher'),
319             'shop:apparel' => array('label' => 'Apparel', 'frequency' => 98, 'icon' => 'shopping_clothes'),
320             'shop:electronics' => array('label' => 'Electronics', 'frequency' => 96),
321             'shop:department_store' => array('label' => 'Department Store', 'frequency' => 86),
322             'shop:books' => array('label' => 'Books', 'frequency' => 85),
323             'shop:yes' => array('label' => 'Shop', 'frequency' => 68),
324             'shop:outdoor' => array('label' => 'Outdoor', 'frequency' => 67),
325             'shop:mall' => array('label' => 'Mall', 'frequency' => 63),
326             'shop:florist' => array('label' => 'Florist', 'frequency' => 61),
327             'shop:charity' => array('label' => 'Charity', 'frequency' => 60),
328             'shop:hardware' => array('label' => 'Hardware', 'frequency' => 59),
329             'shop:laundry' => array('label' => 'Laundry', 'frequency' => 51, 'icon' => 'shopping_laundrette'),
330             'shop:shoes' => array('label' => 'Shoes', 'frequency' => 49),
331             'shop:beverages' => array('label' => 'Beverages', 'frequency' => 48, 'icon' => 'shopping_alcohol'),
332             'shop:dry_cleaning' => array('label' => 'Dry Cleaning', 'frequency' => 46),
333             'shop:carpet' => array('label' => 'Carpet', 'frequency' => 45),
334             'shop:computer' => array('label' => 'Computer', 'frequency' => 44),
335             'shop:alcohol' => array('label' => 'Alcohol', 'frequency' => 44, 'icon' => 'shopping_alcohol'),
336             'shop:optician' => array('label' => 'Optician', 'frequency' => 55, 'icon' => 'health_opticians'),
337             'shop:chemist' => array('label' => 'Chemist', 'frequency' => 42, 'icon' => 'health_pharmacy'),
338             'shop:gallery' => array('label' => 'Gallery', 'frequency' => 38, 'icon' => 'tourist_art_gallery2'),
339             'shop:mobile_phone' => array('label' => 'Mobile Phone', 'frequency' => 37),
340             'shop:sports' => array('label' => 'Sports', 'frequency' => 37),
341             'shop:jewelry' => array('label' => 'Jewelry', 'frequency' => 32, 'icon' => 'shopping_jewelry'),
342             'shop:pet' => array('label' => 'Pet', 'frequency' => 29),
343             'shop:beauty' => array('label' => 'Beauty', 'frequency' => 28),
344             'shop:stationery' => array('label' => 'Stationery', 'frequency' => 25),
345             'shop:shopping_centre' => array('label' => 'Shopping Centre', 'frequency' => 25),
346             'shop:general' => array('label' => 'General', 'frequency' => 25),
347             'shop:electrical' => array('label' => 'Electrical', 'frequency' => 25),
348             'shop:toys' => array('label' => 'Toys', 'frequency' => 23),
349             'shop:jeweller' => array('label' => 'Jeweller', 'frequency' => 23),
350             'shop:betting' => array('label' => 'Betting', 'frequency' => 23),
351             'shop:household' => array('label' => 'Household', 'frequency' => 21),
352             'shop:travel_agency' => array('label' => 'Travel Agency', 'frequency' => 21),
353             'shop:hifi' => array('label' => 'Hifi', 'frequency' => 21),
354             'amenity:shop' => array('label' => 'Shop', 'frequency' => 61),
355             'tourism:information' => array('label' => 'Information', 'frequency' => 224, 'icon' => 'amenity_information'),
356
357             'place:house' => array('label' => 'House', 'frequency' => 2086, 'defzoom' => 18),
358             'place:house_name' => array('label' => 'House', 'frequency' => 2086, 'defzoom' => 18),
359             'place:house_number' => array('label' => 'House Number', 'frequency' => 2086, 'defzoom' => 18),
360             'place:country_code' => array('label' => 'Country Code', 'frequency' => 2086, 'defzoom' => 18),
361
362             //
363
364             'leisure:pitch' => array('label' => 'Pitch', 'frequency' => 762),
365             'highway:unsurfaced' => array('label' => 'Unsurfaced', 'frequency' => 492),
366             'historic:ruins' => array('label' => 'Ruins', 'frequency' => 483, 'icon' => 'tourist_ruin'),
367             'amenity:college' => array('label' => 'College', 'frequency' => 473, 'icon' => 'education_school'),
368             'historic:monument' => array('label' => 'Monument', 'frequency' => 470, 'icon' => 'tourist_monument'),
369             'railway:subway' => array('label' => 'Subway', 'frequency' => 385),
370             'historic:memorial' => array('label' => 'Memorial', 'frequency' => 382, 'icon' => 'tourist_monument'),
371             'leisure:nature_reserve' => array('label' => 'Nature Reserve', 'frequency' => 342),
372             'leisure:common' => array('label' => 'Common', 'frequency' => 322),
373             'waterway:lock_gate' => array('label' => 'Lock Gate', 'frequency' => 321),
374             'natural:fell' => array('label' => 'Fell', 'frequency' => 308),
375             'amenity:nightclub' => array('label' => 'Nightclub', 'frequency' => 292),
376             'highway:path' => array('label' => 'Path', 'frequency' => 287),
377             'leisure:garden' => array('label' => 'Garden', 'frequency' => 285),
378             'landuse:reservoir' => array('label' => 'Reservoir', 'frequency' => 276),
379             'leisure:playground' => array('label' => 'Playground', 'frequency' => 264),
380             'leisure:stadium' => array('label' => 'Stadium', 'frequency' => 212),
381             'historic:mine' => array('label' => 'Mine', 'frequency' => 193, 'icon' => 'poi_mine'),
382             'natural:cliff' => array('label' => 'Cliff', 'frequency' => 193),
383             'tourism:caravan_site' => array('label' => 'Caravan Site', 'frequency' => 183, 'icon' => 'accommodation_caravan_park'),
384             'amenity:bus_station' => array('label' => 'Bus Station', 'frequency' => 181, 'icon' => 'transport_bus_station'),
385             'amenity:kindergarten' => array('label' => 'Kindergarten', 'frequency' => 179),
386             'highway:construction' => array('label' => 'Construction', 'frequency' => 176, 'simplelabel' => 'road'),
387             'amenity:atm' => array('label' => 'Atm', 'frequency' => 172, 'icon' => 'money_atm2'),
388             'amenity:emergency_phone' => array('label' => 'Emergency Phone', 'frequency' => 164),
389             'waterway:lock' => array('label' => 'Lock', 'frequency' => 146),
390             'waterway:riverbank' => array('label' => 'Riverbank', 'frequency' => 143),
391             'natural:coastline' => array('label' => 'Coastline', 'frequency' => 142),
392             'tourism:viewpoint' => array('label' => 'Viewpoint', 'frequency' => 140, 'icon' => 'tourist_view_point'),
393             'tourism:hostel' => array('label' => 'Hostel', 'frequency' => 140),
394             'tourism:bed_and_breakfast' => array('label' => 'Bed And Breakfast', 'frequency' => 140, 'icon' => 'accommodation_bed_and_breakfast'),
395             'railway:halt' => array('label' => 'Halt', 'frequency' => 135),
396             'railway:platform' => array('label' => 'Platform', 'frequency' => 134),
397             'railway:tram' => array('label' => 'Tram', 'frequency' => 130, 'icon' => 'transport_tram_stop'),
398             'amenity:courthouse' => array('label' => 'Courthouse', 'frequency' => 129, 'icon' => 'amenity_court'),
399             'amenity:recycling' => array('label' => 'Recycling', 'frequency' => 126, 'icon' => 'amenity_recycling'),
400             'amenity:dentist' => array('label' => 'Dentist', 'frequency' => 124, 'icon' => 'health_dentist'),
401             'natural:beach' => array('label' => 'Beach', 'frequency' => 121, 'icon' => 'tourist_beach'),
402             'place:moor' => array('label' => 'Moor', 'frequency' => 118),
403             'amenity:grave_yard' => array('label' => 'Grave Yard', 'frequency' => 110),
404             'waterway:drain' => array('label' => 'Drain', 'frequency' => 108),
405             'landuse:grass' => array('label' => 'Grass', 'frequency' => 106),
406             'landuse:village_green' => array('label' => 'Village Green', 'frequency' => 106),
407             'natural:bay' => array('label' => 'Bay', 'frequency' => 102),
408             'railway:tram_stop' => array('label' => 'Tram Stop', 'frequency' => 101, 'icon' => 'transport_tram_stop'),
409             'leisure:marina' => array('label' => 'Marina', 'frequency' => 98),
410             'highway:stile' => array('label' => 'Stile', 'frequency' => 97),
411             'natural:moor' => array('label' => 'Moor', 'frequency' => 95),
412             'railway:light_rail' => array('label' => 'Light Rail', 'frequency' => 91),
413             'railway:narrow_gauge' => array('label' => 'Narrow Gauge', 'frequency' => 90),
414             'natural:land' => array('label' => 'Land', 'frequency' => 86),
415             'amenity:village_hall' => array('label' => 'Village Hall', 'frequency' => 82),
416             'waterway:dock' => array('label' => 'Dock', 'frequency' => 80),
417             'amenity:veterinary' => array('label' => 'Veterinary', 'frequency' => 79),
418             'landuse:brownfield' => array('label' => 'Brownfield', 'frequency' => 77),
419             'leisure:track' => array('label' => 'Track', 'frequency' => 76),
420             'railway:historic_station' => array('label' => 'Historic Station', 'frequency' => 74),
421             'landuse:construction' => array('label' => 'Construction', 'frequency' => 72),
422             'amenity:prison' => array('label' => 'Prison', 'frequency' => 71, 'icon' => 'amenity_prison'),
423             'landuse:quarry' => array('label' => 'Quarry', 'frequency' => 71),
424             'amenity:telephone' => array('label' => 'Telephone', 'frequency' => 70),
425             'highway:traffic_signals' => array('label' => 'Traffic Signals', 'frequency' => 66),
426             'natural:heath' => array('label' => 'Heath', 'frequency' => 62),
427             'historic:house' => array('label' => 'House', 'frequency' => 61),
428             'amenity:social_club' => array('label' => 'Social Club', 'frequency' => 61),
429             'landuse:military' => array('label' => 'Military', 'frequency' => 61),
430             'amenity:health_centre' => array('label' => 'Health Centre', 'frequency' => 59),
431             'historic:building' => array('label' => 'Building', 'frequency' => 58),
432             'amenity:clinic' => array('label' => 'Clinic', 'frequency' => 57),
433             'highway:services' => array('label' => 'Services', 'frequency' => 56),
434             'amenity:ferry_terminal' => array('label' => 'Ferry Terminal', 'frequency' => 55),
435             'natural:marsh' => array('label' => 'Marsh', 'frequency' => 55),
436             'natural:hill' => array('label' => 'Hill', 'frequency' => 54),
437             'highway:raceway' => array('label' => 'Raceway', 'frequency' => 53),
438             'amenity:taxi' => array('label' => 'Taxi', 'frequency' => 47),
439             'amenity:take_away' => array('label' => 'Take Away', 'frequency' => 45),
440             'amenity:car_rental' => array('label' => 'Car Rental', 'frequency' => 44),
441             'place:islet' => array('label' => 'Islet', 'frequency' => 44),
442             'amenity:nursery' => array('label' => 'Nursery', 'frequency' => 44),
443             'amenity:nursing_home' => array('label' => 'Nursing Home', 'frequency' => 43),
444             'amenity:toilets' => array('label' => 'Toilets', 'frequency' => 38),
445             'amenity:hall' => array('label' => 'Hall', 'frequency' => 38),
446             'waterway:boatyard' => array('label' => 'Boatyard', 'frequency' => 36),
447             'highway:mini_roundabout' => array('label' => 'Mini Roundabout', 'frequency' => 35),
448             'historic:manor' => array('label' => 'Manor', 'frequency' => 35),
449             'tourism:chalet' => array('label' => 'Chalet', 'frequency' => 34),
450             'amenity:bicycle_parking' => array('label' => 'Bicycle Parking', 'frequency' => 34),
451             'amenity:hotel' => array('label' => 'Hotel', 'frequency' => 34),
452             'waterway:weir' => array('label' => 'Weir', 'frequency' => 33),
453             'natural:wetland' => array('label' => 'Wetland', 'frequency' => 33),
454             'natural:cave_entrance' => array('label' => 'Cave Entrance', 'frequency' => 32),
455             'amenity:crematorium' => array('label' => 'Crematorium', 'frequency' => 31),
456             'tourism:picnic_site' => array('label' => 'Picnic Site', 'frequency' => 31),
457             'landuse:wood' => array('label' => 'Wood', 'frequency' => 30),
458             'landuse:basin' => array('label' => 'Basin', 'frequency' => 30),
459             'natural:tree' => array('label' => 'Tree', 'frequency' => 30),
460             'leisure:slipway' => array('label' => 'Slipway', 'frequency' => 29),
461             'landuse:meadow' => array('label' => 'Meadow', 'frequency' => 29),
462             'landuse:piste' => array('label' => 'Piste', 'frequency' => 28),
463             'amenity:care_home' => array('label' => 'Care Home', 'frequency' => 28),
464             'amenity:club' => array('label' => 'Club', 'frequency' => 28),
465             'amenity:medical_centre' => array('label' => 'Medical Centre', 'frequency' => 27),
466             'historic:roman_road' => array('label' => 'Roman Road', 'frequency' => 27),
467             'historic:fort' => array('label' => 'Fort', 'frequency' => 26),
468             'railway:subway_entrance' => array('label' => 'Subway Entrance', 'frequency' => 26),
469             'historic:yes' => array('label' => 'Historic', 'frequency' => 25),
470             'highway:gate' => array('label' => 'Gate', 'frequency' => 25),
471             'leisure:fishing' => array('label' => 'Fishing', 'frequency' => 24),
472             'historic:museum' => array('label' => 'Museum', 'frequency' => 24),
473             'amenity:car_wash' => array('label' => 'Car Wash', 'frequency' => 24),
474             'railway:level_crossing' => array('label' => 'Level Crossing', 'frequency' => 23),
475             'leisure:bird_hide' => array('label' => 'Bird Hide', 'frequency' => 23),
476             'natural:headland' => array('label' => 'Headland', 'frequency' => 21),
477             'tourism:apartments' => array('label' => 'Apartments', 'frequency' => 21),
478             'amenity:shopping' => array('label' => 'Shopping', 'frequency' => 21),
479             'natural:scrub' => array('label' => 'Scrub', 'frequency' => 20),
480             'natural:fen' => array('label' => 'Fen', 'frequency' => 20),
481             'building:yes' => array('label' => 'Building', 'frequency' => 200),
482             'mountain_pass:yes' => array('label' => 'Mountain Pass', 'frequency' => 200),
483
484             'amenity:parking' => array('label' => 'Parking', 'frequency' => 3157),
485             'highway:bus_stop' => array('label' => 'Bus Stop', 'frequency' => 35777, 'icon' => 'transport_bus_stop2'),
486             'place:postcode' => array('label' => 'Postcode', 'frequency' => 27267),
487             'amenity:post_box' => array('label' => 'Post Box', 'frequency' => 9613),
488
489             'place:houses' => array('label' => 'Houses', 'frequency' => 85),
490             'railway:preserved' => array('label' => 'Preserved', 'frequency' => 227),
491             'waterway:derelict_canal' => array('label' => 'Derelict Canal', 'frequency' => 21),
492             'amenity:dead_pub' => array('label' => 'Dead Pub', 'frequency' => 20),
493             'railway:disused_station' => array('label' => 'Disused Station', 'frequency' => 114),
494             'railway:abandoned' => array('label' => 'Abandoned', 'frequency' => 641),
495             'railway:disused' => array('label' => 'Disused', 'frequency' => 72),
496            );
497
498     return $aPropertyCache;
499 }