co-maps/data/mapcss-mapping.csv
2025-11-22 13:58:55 +01:00

105 KiB

1# This file is used to map OSM tags to OM classificator types.
2# OSM tags are preprocessed according to data/replaced_tags.txt before this mapping.
3#
4# Example row (mind the last semicolon!):
5# highway|bus_stop;[highway=bus_stop];;name;int_name;22;
6# It contains:
7# - type id, sequential starting from 1
8# - optional: a replacement type for a deprecated one
9# then leave only the longest types (there could be a few of them). Equal arity types are kept.
10# - highway-primary-bridge is left while highway-primary is removed;
11# - building-garages is left while building is removed;
12# - amenity-parking-underground-fee is left while amenity-parking and amenity-parking-fee are removed;
13# - both amenity-charging_station-motorcar and amenity-charging_station-bicycle are left;
14#
15# A shorter format for the above example:
16# highway|bus_stop;22;
17# It leaves only columns 1, 6 and 7.
18#
19# A deprecated type is not drawn, not searchable, etc. even when using old map files.
20# An example of a deprecated type:
21# deprecated:railway|yard:06.2023;447;x
22# Note there is the old type name and the deprecation date added into a first column.
23# Usually we don't re-use deprecated type ids for at least a year
24# to avoid breaking experience for users with old maps but a new app version.
25# An example of a deprecated type with a replacement:
26# deprecated:highway|unsurfaced|disused:05.2020;[highway=unsurfaced][disused?];x;name;int_name;838;highway|unclassified
27# or in the short format:
28# deprecated:highway|unsurfaced|disused:05.2020;838;highway|unclassified
29#
30# First 128 ids are reserved for the most frequently occuring types (they're encoded in 1 byte only).
31#
32# Every time you edit this file add/amend unit tests for new/changed matching cases
33# in generator/generator_tests/osm_type_test.cpp, build and run the tests:
34#
35# A C++ parser implementation used by the generator is in generator/utils.cpp::ParseMapCSS().
36# A python parser implementation used to compile *.mapcss style files is in tools/kothic/src/libkomwm.py::komap_mapswithme().
37# The app doesn't use this file directly, it loads a data/types.txt
38# which is derived from this file during style files compilation.
39#
40# Types that don't have any style defined are discarded by the generator.
41# To prevent discarding, add them to the exceptions in indexer/feature_visibility.cpp::IsUsefulNondrawableType()
42building;[building];;addr:housenumber;name;1;
43highway|residential;2;
44highway|service;3;
45waterway|stream;4;
46highway|unclassified;5;
47natural|water;6;
48# Paved/formed urban looking footpaths (e.g. paved highway=path are converted into footways, see osm2type.cpp).
49highway|footway;7;
50highway|track;8;
51highway|tertiary;9;
52# ~17M usages.
53power|tower;10;
54landuse|forest;[landuse=forest],[natural=wood];;name;int_name;11;
55landuse|grass;12;
56highway|secondary;13;
57# Main railway lines, ~1M usages.
58# Using service= together with usage=main is a mismapping, but people do it, so exclude explicitly.
59railway|rail|main;[railway=rail][usage=main][!highspeed][!service];;name;int_name;14;
60landuse|residential;15;
61# Unpaved paths and trails (e.g. unpaved highway=footway are converted into paths,
62# while segregated shared paths into footway + cycleway, see osm2type.cpp).
63highway|path;16;
64highway|bus_stop;17;
65# ~4M usages.
66highway|footway|sidewalk;[highway=footway][footway=sidewalk];;name;int_name;18;
67place|locality;19;
68natural|coastline;20;
69place|village;21;
70# Service railway lines, ~1M usages. All service=siding/yard/crossover except =spur (see replaced_tags.txt).
71railway|rail|service;[railway=rail][service=service];;name;int_name;22;
72waterway|river;23;
73hwtag|oneway;24;
74hwtag|private;25;
75amenity|parking;26;
76highway|primary;27;
77# TODO: railway-rail was deprecated in June 2023 in favor of more detailed railway-rail-main/branch/etc.
78# But the type should be kept for some time to retain original styling and translations in older mwms
79# and to match some rare combinations like railway=rail usage/service=rare_unsupported_value,
80railway|rail;28;
81highway|service|parking_aisle;[highway=service][service=parking_aisle];;name;int_name;29;
82place|hamlet;30;
83moved:highway|road:05.2024;31;highway|road
84natural|tree;32;
85# ~1.5M usages w/o a more specific wetland=*
86natural|wetland;33;
87deprecated:highway|track|grade3:04.4024;[highway=track][tracktype=grade3];x;name;int_name;34;highway|track
88# ~1M usages.
89power|minor_line;[power=minor_line][!location];;;;35;
90amenity|school;[amenity=school],[education=school];;name;int_name;36;
91# Dedicated/segregated cycleways (e.g. segregated paths are converted into cycleways + footways, see osm2type.cpp).
92highway|cycleway;37;
93# ~16M usages.
94power|pole;38;
95moved:amenity|place_of_worship:05.2024;39;amenity|place_of_worship
96deprecated:highway|track|grade1:04.2024;[highway=track][tracktype=grade1];x;name;int_name;40;highway|track
97addr:interpolation|odd;41;
98highway|service|driveway;[highway=service][service=driveway];;name;int_name;42;
99addr:interpolation|even;43;
100highway|motorway_link;44;
101waterway|stream|intermittent;[waterway=stream][intermittent=yes];;name;int_name;45;
102natural|sand;46;
103natural|water|pond;[natural=water][water=pond];;name;int_name;47;
104landuse|farmland;48;
105barrier|fence;49;
106natural|water|lake;[natural=water][water=lake];;name;int_name;50;
107# ~3M usages. TODO: consolidate all other footway=link/etc. values into highway-footway-minor.
108highway|footway|crossing;[highway=footway][footway=crossing];;name;int_name;51;
109deprecated:waterway|riverbank:05.2024;52;x
110# 600k+ usages.
111highway|path|bicycle;[highway=path][bicycle=designated];;;;53;
112landuse|meadow;54;
113highway|living_street;55;
114# ~400k usages.
115man_made|survey_point;56;
116natural|peak;57;
117highway|motorway;58;
118highway|steps;59;
119waterway|ditch;60;
120amenity|restaurant;61;
121# TODO: deprecated, 250k, replace with natural=water + water=reservoir?
122landuse|reservoir;62;
123amenity|bench|backless;[amenity=bench][backrest=not],[amenity=bench][backrest=no];;name;int_name;63;
124amenity|bench;64;
125# Branch railway lines include ordinary railway=rail w/o any specific usage= or service=, ~500k usages.
126# Using service= together with usage=branch is a mismapping, but people do it, so exclude explicitly.
127railway|rail|branch;[railway=rail][usage=branch][!highspeed][!service],[railway=rail][!usage][!service][!highspeed];;name;int_name;65;
128highway|trunk;66;
129amenity|fuel;67;
130leisure|park;68;
131leisure|pitch;69;
132highway|pedestrian;70;
133natural|scrub;71;
134highway|motorway|bridge;[highway=motorway][bridge?];;name;int_name;72;
135# -spur doesn't include spurs w/ usage= (they're matched to -utility), ~400k usages.
136railway|rail|spur;[railway=rail][service=spur][!usage];;name;int_name;73;
137railway|level_crossing;74;
138landuse|industrial;75;
139barrier|wall;76;
140amenity|post_box;77;
141place|town;78;
142# ~1M usages.
143power|line;[power=line][!location];;name;int_name;79;
144landuse|farmyard;80;
145highway|residential|bridge;[highway=residential][bridge?];;name;int_name;81;
146# TODO: do not match this type, so that new railway-rail-main/branch/etc-bridge types are used,
147# but retain the old type for compatibility with old mwms for some time.
148# In the meantime railway=rail bridge=yes usage=rare_unsupported_value will be matched to railway-rail (not a bridge!).
149# Currently its impossible to make unsupported values fallback to railway-rail-bridge
150# same way unsupported values fallback to railway-rail, because railway-rail-bridge
151# is not a prefix of railway-rail-main|branch|etc-bridge.
152# Using a [dont=match] and falling back to just railway-rail seems like the best compromise for now.
153# When there is a != and | operators supports, we'll drop this workaround and match like
154# railway|rail|spur|bridge;...,[railway=rail][!service][usage?][usage!=main|branch|tourism|utility][bridge?];...
155# railway|rail|service|bridge;[railway=rail][service?][service!=spur][bridge?];...
156railway|rail|bridge;[railway=rail][bridge?][dont=match];;name;int_name;82;
157deprecated:boundary|administrative|10:04.2024;[boundary=administrative][admin_level=10];x;name;int_name;83;
158emergency|access_point;[emergency=access_point];;name;;84;
159highway|secondary|bridge;[highway=secondary][bridge?];;name;int_name;85;
160highway|tertiary|bridge;[highway=tertiary][bridge?];;name;int_name;86;
161barrier|bollard;87;
162leisure|playground;88;
163waterway|drain;89;
164waterway|canal;90;
165highway|trunk_link;91;
166highway|unclassified|bridge;[highway=unclassified][bridge?];;name;int_name;92;
167landuse|forest|deciduous;[landuse=forest][wood=deciduous],[landuse=forest][leaf_type=deciduous],[landuse=forest][leaf_cycle=deciduous],[natural=wood][wood=deciduous],[natural=wood][leaf_type=deciduous],[natural=wood][leaf_cycle=deciduous];;name;int_name;93;
168place|island;94;
169highway|primary|bridge;[highway=primary][bridge?];;name;int_name;95;
170highway|primary_link;96;
171amenity|fast_food;97;
172highway|footway|bridge;[highway=footway][bridge?];;name;int_name;98;
173amenity|bank;99;
174barrier|hedge;100;
175# TODO: ~190k usages.
176amenity|pub;101;
177leisure|swimming_pool;[leisure=swimming_pool],[amenity=swimming_pool];;name;int_name;102;
178# TODO: deprecated, <70k as nodes and 95% automated Canada import, we have no point style anyway
179natural|land;103;
180tourism|hotel;[tourism=hotel],[hotel=yes];;name;int_name;104;
181landuse|cemetery;105;
182sport|soccer;106;
183moved:boundary|administrative|4:05.2024;[boundary=administrative][admin_level=4];x;;;107;boundary|administrative|4
184amenity|cafe;108;
185amenity|recycling|container;[amenity=recycling][recycling_type=container];;name;int_name;109;
186leisure|garden;110;
187landuse|commercial;111;
188moved:railway|station:05.2024;112;railway|station
189deprecated:highway|path|hiking:04.2024;[highway=path][route=hiking],[highway=path][sac_scale=hiking];x;name;int_name;113;highway|path
190# ~200k usages.
191amenity|hospital;114;
192waterway|stream|ephemeral;[waterway=stream][intermittent=ephemeral];;name;int_name;115;
193highway|trunk|bridge;[highway=trunk][bridge?];;name;int_name;116;
194# ~200k usages.
195amenity|post_office;117;
196# ~230k usages.
197landuse|quarry;118;
198amenity|pharmacy;119;
199man_made|pier;120;
200# ~220k usages.
201highway|motorway_junction;121;
202moved:amenity|telephone:05.2024;122;amenity|telephone
203waterway|stream|tunnel;[waterway=stream][tunnel?];;name;int_name;123;
204tourism|information|guidepost;[tourism=information][information=guidepost];;name;int_name;124;
205amenity|parking|fee;[amenity=parking][fee];;name;int_name;125;
206amenity|kindergarten;126;
207leisure|swimming_pool|private;[leisure=swimming_pool][access=private],[amenity=swimming_pool][access=private];;name;int_name;127;
208# ~160k usages.
209place|suburb;128;
210landuse|allotments;129;
211landuse|forest|coniferous;[landuse=forest][wood=coniferous],[landuse=forest][leaf_type=coniferous],[natural=wood][wood=coniferous],[natural=wood][leaf_type=coniferous];;name;int_name;130;
212landuse|forest|mixed;[landuse=forest][wood=mixed],[landuse=forest][leaf_type=mixed],[landuse=forest][leaf_cycle=mixed],[natural=wood][wood=mixed],[natural=wood][leaf_type=mixed],[natural=wood][leaf_cycle=mixed];;name;int_name;131;
213emergency|life_ring;132;
214sport|tennis;133;
215# ~730k usages.
216landuse|vineyard;134;
217aeroway|taxiway;135;
218aeroway|aerodrome;136;
219leisure|garden|residential;[leisure=garden][garden:type=residential];;name;int_name;137;
220amenity|fire_station;138;
221landuse|retail;139;
222leisure|nature_reserve;140;
223highway|footway|bicycle;[highway=footway][bicycle=designated];;;;141;
224tourism|information;142;
225highway|motorway_link|bridge;[highway=motorway_link][bridge?];;name;int_name;143;
226# Usually there is something else in place of the old railway, e.g. highway=path,
227# but seems like its being used standalone still in which case usefull for e.g. hiking.
228railway|abandoned;144;
229amenity|parking|private;[amenity=parking][access=private];;name;int_name;145;
230deprecated:boundary|administrative|7:04.2024;[boundary=administrative][admin_level=7];x;name;int_name;146;
231tourism|attraction;147;
232natural|water|reservoir;[natural=water][water=reservoir];;name;int_name;148;
233# ~430k usages.
234natural|water|river;[natural=water][water=river];;name;int_name;149;
235railway|tram;150;
236# ~430k usages.
237amenity|toilets;151;
238natural|water|basin;[natural=water][water=basin];;name;int_name;152;
239amenity|lounger;[amenity=lounger][!seasonal];;name;int_name;153;
240leisure|picnic_table;154;
241landuse|construction;155;
242tourism|viewpoint;156;
243amenity|atm;157;
244highway|pedestrian|area;[highway=pedestrian][area?];;name;int_name;158;
245tourism|picnic_site;159;
246# ~460k usages.
247shop|supermarket;160;
248# ~730k usages.
249shop|convenience;161;
250shop|bakery;162;
251highway|construction;163;
252highway|cycleway|bridge;[highway=cycleway][bridge?];;name;int_name;164;
253leisure|sports_centre;165;
254deprecated:highway|path|mountain_hiking:04.2024;[highway=path][sac_scale=mountain_hiking];x;name;int_name;166;highway|path
255tourism|camp_site;167;
256highway|bridleway;168;
257natural|heath;169;
258landuse|basin;170;
259amenity|library;171;
260deprecated:natural|wood|coniferous:01.2020;[natural=wood][wood=coniferous],[natural=wood][leaf_type=coniferous];x;name;int_name;172;landuse|forest|coniferous
261landuse|recreation_ground;173;
262landuse|village_green;174;
263amenity|drinking_water;175;
264amenity|university;[amenity=university],[education=university];;name;int_name;176;
265highway|secondary_link;177;
266power|substation;178;
267railway|tram_stop;179;
268place|city;180;
269amenity|shelter;181;
270natural|beach;182;
271highway|footway|tunnel;[highway=footway][tunnel?],[highway=footway][location=underground];;name;int_name;183;
272shop|hairdresser;184;
273amenity|hunting_stand;185;
274deprecated:boundary|administrative|9:04.2024;[boundary=administrative][admin_level=9];x;name;int_name;186;
275amenity|fountain;187;
276natural|beach|sand;[natural=beach][surface=sand];;name;int_name;188;
277amenity|bar;189;
278landuse|garages;190;
279boundary|administrative|2;[boundary=administrative][admin_level=2];;name;int_name;191;
280leisure|common;192;
281highway|track|bridge;[highway=track][bridge?];;name;int_name;193;
282highway|path|bridge;[highway=path][bridge?];;name;int_name;194;
283piste:type|nordic;195;
284natural|beach|gravel;[natural=beach][surface=gravel];;name;int_name;196;
285railway|crossing;197;
286boundary|national_park;198;
287deprecated:natural|wood|deciduous:01.2020;[natural=wood][wood=deciduous],[natural=wood][leaf_type=deciduous],[natural=wood][leaf_cycle=deciduous];x;name;int_name;199;landuse|forest|deciduous
288waterway|dam;200;
289amenity|charging_station|motorcar|small;[amenity=charging_station][motorcar?][!capacity],[amenity=charging_station][motorcar?][capacity=1],[amenity=charging_station][motorcar?][capacity=2];;name;int_name;201;
290leisure|golf_course;202;
291highway|service|bridge;[highway=service][bridge?];;name;int_name;203;
292# ~250K usages.
293power|portal;204;
294# Marsh 500K usages, wet_meadow 160K
295natural|wetland|marsh;[natural=wetland][wetland=marsh],[natural=wetland][wetland=wet_meadow],[natural=wetland][wetland=dambo];;;;205;
296leisure|stadium;206;
297amenity|doctors;207;
298railway|disused;208;
299aeroway|runway;209;
300railway|halt;210;
301man_made|mast;211;
302# TODO: see the railway-rail-bridge comment.
303railway|rail|tunnel;[railway=rail][tunnel?][dont=match];;name;int_name;212;
304man_made|wastewater_plant;213;
305man_made|flagpole;214;
306place|county;215;
307sport|table_tennis;216;
308sport|beachvolleyball;217;
309sport|volleyball;218;
310deprecated:power|station:07.2025;219;x
311sport|swimming;220;
312leisure|track;221;
313sport|skateboard;222;
314barrier|retaining_wall;223;
315amenity|college;[amenity=college],[education=college];;name;int_name;224;
316sport|baseball;225;
317highway|service|area;[highway=service][area?];;name;int_name;226;
318highway|residential|area;[highway=residential][area?];;name;int_name;227;
319amenity|bus_station;228;
320deprecated:highway|track|permissive:12.2023;[highway=track][access=permissive];x;name;int_name;229;highway|track
321waterway|drain|tunnel;[waterway=drain][tunnel?];;name;int_name;230;
322landuse|cemetery|christian;[landuse=cemetery][religion=christian];;name;int_name;231;
323highway|cycleway|tunnel;[highway=cycleway][tunnel?];;name;int_name;232;
324amenity|parking|permissive;[amenity=parking][access=permissive];;name;int_name;233;
325deprecated:boundary|administrative|5:04.2024;[boundary=administrative][admin_level=5];x;name;int_name;234;
326highway|unclassified|tunnel;[highway=unclassified][tunnel?];;name;int_name;235;
327amenity|recycling|centre;[amenity=recycling][recycling_type=centre];;name;int_name;236;
328amenity|recycling;237;
329highway|residential|tunnel;[highway=residential][tunnel?];;name;int_name;238;
330aeroway|helipad;239;
331deprecated:highway|path|permissive:12.2023;[highway=path][access=permissive];x;name;int_name;240;highway|path
332# ~530k usages.
333place|islet;241;
334sport|basketball;242;
335amenity|cinema;243;
336amenity|theatre;244;
337sport|chess;245;
338deprecated:railway|spur:06.2023;246;x
339aerialway|station;247;
340landuse|brownfield;248;
341aeroway|apron;249;
342natural|glacier;250;
343amenity|grave_yard;251;
344waterway|canal|tunnel;[waterway=canal][tunnel?];;name;int_name;252;
345piste:type|downhill|easy;[piste:type=downhill][piste:difficulty=easy];;name;int_name;253;
346waterway|ditch|tunnel;[waterway=ditch][tunnel?];;name;int_name;254;
347hwtag|nosidewalk;255;
348piste:type|downhill|intermediate;[piste:type=downhill][piste:difficulty=intermediate];;name;int_name;256;
349railway|subway_entrance;257;
350amenity|charging_station|bicycle;[amenity=charging_station][bicycle?];;name;int_name;258;
351man_made|pipeline;[man_made=pipeline][!location];;name;int_name;259;
352route|ferry;260;
353highway|trunk_link|bridge;[highway=trunk_link][bridge?];;name;int_name;261;
354landuse|military;262;
355highway|service|tunnel;[highway=service][tunnel?];;name;int_name;263;
356railway|light_rail;264;
357place|region;265;
358railway|narrow_gauge;266;
359railway|subway;267;
360natural|cave_entrance;[natural=cave_entrance],[natural=cave];;name;int_name;268;
361highway|tertiary|tunnel;[highway=tertiary][tunnel?];;name;int_name;269;
362landuse|landfill;270;
363amenity|bicycle_rental;271;
364amenity|bicycle_repair_station;272;
365highway|tertiary_link;273;
366landuse|greenfield;274;
367tourism|alpine_hut;275;
368highway|footway|area;[highway=footway][area?];;name;int_name;276;
369tourism|hostel;277;
370waterway|river|tunnel;[waterway=river][tunnel?];;name;int_name;278;
371deprecated:boundary|administrative|county:04.2024;[boundary=administrative][border_type=county];x;name;int_name;279;
372highway|road|bridge;[highway=road][bridge?];;name;int_name;280;
373boundary|administrative|3;[boundary=administrative][admin_level=3];;name;int_name;281;
374power|generator|solar;[power=generator][generator:source=solar];;name;int_name;282;
375boundary|administrative;283;
376power|generator|wind;[power=generator][generator:source=wind];;name;int_name;284;
377power|generator|gas;[power=generator][generator:source=gas];;name;int_name;285;
378sport|athletics;286;
379landuse|railway;287;
380leisure|slipway;288;
381tourism|caravan_site;[tourism=caravan_site],[tourism=camp_site][caravans=yes],[tourism=camp_site][motorhome=yes];;name;int_name;289;
382place|state;290;
383power|generator|hydro;[power=generator][generator:source=hydro];;name;int_name;291;
384railway|subway|tunnel;[railway=subway][tunnel?];;name;int_name;292;
385barrier|city_wall;293;
386place|farm;294;
387deprecated:boundary|administrative|11:04.2024;[boundary=administrative][admin_level=11];x;name;int_name;295;
388waterway|weir;296;
389highway|secondary|tunnel;[highway=secondary][tunnel?];;name;int_name;297;
390# TODO: its a mismapping likely, if there is a bridge structure still, then it should be railway=disused.
391railway|abandoned|bridge;[railway=abandoned][bridge?];;name;int_name;298;
392man_made|lighthouse;299;
393deprecated:highway|path|demanding_mountain_hiking:04.2024;[highway=path][sac_scale=demanding_mountain_hiking];x;name;int_name;300;highway|path|difficult
394man_made|storage_tank;301;
395man_made|silo;302;
396power|generator;303;
397highway|pedestrian|bridge;[highway=pedestrian][bridge?];;name;int_name;304;
398amenity|charging_station|motorcar;[amenity=charging_station][motorcar?][capacity?];;name;int_name;305;
399natural|saddle;306;
400mountain_pass;[mountain_pass];;name;int_name;307;
401highway|raceway;308;
402highway|primary|tunnel;[highway=primary][tunnel?];;name;int_name;309;
403highway|primary_link|bridge;[highway=primary_link][bridge?];;name;int_name;310;
404man_made|tower|communication;[man_made=tower][tower:type=communication];;name;int_name;311;
405sport|equestrian;312;
406tourism|information|office;[tourism=information][information=office];;name;int_name;313;
407deprecated:highway|footway|hiking:04.2024;[highway=footway][sac_scale=hiking];x;name;int_name;314;highway|path
408aeroway|gate;315;
409# TODO: railway=preserved is deprecated in OSM, recommended mapping is railway:preserved=yes + railway=*
410railway|preserved;316;
411highway|path|horse;[highway=path][horse?];;name;int_name;317;
412deprecated:landuse|field:06.2025;318;x
413hwtag|nocycleway;319;
414leisure|water_park;320;
415# 1M usages
416natural|wetland|bog;[natural=wetland][wetland=bog],[natural=wetland][wetland=string_bog];;;;321;
417man_made|windmill;322;
418military|bunker;323;
419aerialway|chair_lift;324;
420amenity|grave_yard|christian;[amenity=grave_yard][religion=christian];;name;int_name;325;
421highway|trunk|tunnel;[highway=trunk][tunnel?];;name;int_name;326;
422highway|steps|tunnel;[highway=steps][tunnel?],[highway=steps][location=underground];;name;int_name;327;
423amenity|car_sharing;328;
424deprecated:sport|football:10.2021;329;sport|soccer
425highway|steps|bridge;[highway=steps][bridge?];;name;int_name;330;
426highway|track|tunnel;[highway=track][tunnel?];;name;int_name;331;
427highway|pedestrian|tunnel;[highway=pedestrian][tunnel?],[highway=pedestrian][location=underground];;name;int_name;332;
428boundary|aboriginal_lands;333;
429sport|cricket;334;
430sport|bowls;335;
431highway|path|tunnel;[highway=path][tunnel?],[highway=path][location=underground];;name;int_name;336;
432man_made|breakwater;337;
433man_made|mast|communication;[man_made=mast][tower:type=communication];;name;int_name;338;
434# -utility includes all usage=industrial/military/test/science/freight (see replaced_tags.txt) incl. w/ service=spur, but not w/ other service= values.
435# TODO: add [key=value1|value2|etc] (and [key!=value1|value2|etc]) support to avoid referring to replaced_tags.txt.
436railway|rail|utility;[railway=rail][usage=utility][!service],[railway=rail][usage=utility][service=spur];;name;int_name;339;
437tourism|zoo;340;
438sport|gymnastics;341;
439railway|rail|main|bridge;[railway=rail][usage=main][!highspeed][!service][bridge?];;name;int_name;342;
440railway|subway|bridge;[railway=subway][bridge?];;name;int_name;343;
441railway|light_rail|bridge;[railway=light_rail][bridge?];;name;int_name;344;
442aeroway|terminal;345;
443railway|tram|bridge;[railway=tram][bridge?];;name;int_name;346;
444piste:type|downhill|advanced;[piste:type=downhill][piste:difficulty=advanced];;name;int_name;347;
445sport|shooting;348;
446place|country;349;
447deprecated:highway|path|alpine_hiking:04.2024;[highway=path][sac_scale=alpine_hiking];x;name;int_name;350;highway|path|expert
448tourism|zoo|petting;[tourism=zoo][zoo=petting_zoo];;name;int_name;351;
449sport|scuba_diving;352;
450entrance|emergency;[entrance=emergency],[exit=emergency];;name;int_name;353;
451highway|unclassified|area;[highway=unclassified][area?];;name;int_name;354;
452natural|volcano;355;
453amenity|parking|underground|fee;[amenity=parking][location=underground][fee],[amenity=parking][parking=underground][fee];;name;int_name;356;
454amenity|parking|underground;[amenity=parking][location=underground],[amenity=parking][parking=underground];;name;int_name;357;
455amenity|parking|street_side;[amenity=parking][parking=street_side];;name;int_name;358;
456amenity|parking|multi-storey;[amenity=parking][parking=multi-storey];;name;int_name;359;
457# TODO: its being replaced by landuse-recreation_ground, merge in there.
458leisure|recreation_ground;360;
459deprecated:highway|footway|mountain_hiking:04.2024;[highway=footway][sac_scale=mountain_hiking];x;name;int_name;361;highway|path
460deprecated:highway|service|driveway|bridge:01.2020;[highway=service][service=driveway][bridge?];x;name;int_name;362;highway|service|driveway
461amenity|parking|multi-storey|fee;[amenity=parking][parking=multi-storey][fee];;name;int_name;363;
462sport|9pin;364;
463sport|10pin;365;
464piste:type|downhill|novice;[piste:type=downhill][piste:difficulty=novice];;name;int_name;366;
465railway|narrow_gauge|bridge;[railway=narrow_gauge][bridge?];;name;int_name;367;
466amenity|parking|lane;[amenity=parking][parking=lane];;name;int_name;368;
467railway|rail|main|tunnel;[railway=rail][usage=main][!highspeed][!service][tunnel?];;name;int_name;369;
468deprecated:highway|bridleway|permissive:12.2023;[highway=bridleway][access=permissive];x;name;int_name;370;highway|bridleway
469railway|construction;371;
470railway|rail|branch|bridge;[railway=rail][usage=branch][!highspeed][!service][bridge?],[railway=rail][!usage][!service][!highspeed][bridge?];;name;int_name;372;
471landuse|greenhouse_horticulture;373;
472railway|rail|branch|tunnel;[railway=rail][usage=branch][!highspeed][!service][tunnel?],[railway=rail][!usage][!service][!highspeed][tunnel?];;name;int_name;374;
473amenity|bureau_de_change;375;
474railway|rail|service|bridge;[railway=rail][service=service][bridge?];;name;int_name;376;
475railway|rail|service|tunnel;[railway=rail][service=service][tunnel?];;name;int_name;377;
476highway|bridleway|bridge;[highway=bridleway][bridge?];;name;int_name;378;
477deprecated:highway|service|driveway|tunnel:01.2020;[highway=service][service=driveway][tunnel?];x;name;int_name;379;highway|service|driveway
478railway|rail|utility|bridge;[railway=rail][usage=utility][!service][bridge?],[railway=rail][usage=utility][service=spur][bridge?];;name;int_name;380;
479amenity|events_venue;381;
480railway|narrow_gauge|tunnel;[railway=narrow_gauge][tunnel?];;name;int_name;382;
481amenity|loading_dock;383;
482waterway|dock;384;
483railway|rail|utility|tunnel;[railway=rail][usage=utility][!service][tunnel?],[railway=rail][usage=utility][service=spur][tunnel?];;name;int_name;385;
484deprecated:highway|service|driveway|area:01.2020;[highway=service][service=driveway][area?];x;name;int_name;386;highway|service|driveway
485railway|rail|spur|bridge;[railway=rail][service=spur][!usage][bridge?];;name;int_name;387;
486place|city|capital;[place=city][capital?];;name;int_name;388;
487aerialway|cable_car;389;
488piste:type|downhill;390;
489sport|american_football;391;
490landuse|education;392;
491man_made|cairn;393;
492railway|preserved|bridge;[railway=preserved][bridge?];;name;int_name;394;
493deprecated:highway|path|demanding_alpine_hiking:04.2024;[highway=path][sac_scale=demanding_alpine_hiking];x;name;int_name;395;highway|path|expert
494railway|rail|spur|tunnel;[railway=rail][service=spur][!usage][tunnel?];;name;int_name;396;
495highway|secondary_link|bridge;[highway=secondary_link][bridge?];;name;int_name;397;
496railway|tram|tunnel;[railway=tram][tunnel?];;name;int_name;398;
497railway|rail|tourism;[railway=rail][usage=tourism][!service];;name;int_name;399;
498# TODO: its a mismapping likely, if there is a tunnel structure still, then it should be railway=disused.
499railway|abandoned|tunnel;[railway=abandoned][tunnel?];;name;int_name;400;
500area:highway|living_street;401;
501piste:type|sled;402;
502leisure|beach_resort;403;
503leisure|dog_park;404;
504aerialway|gondola;405;
505deprecated:historic|museum:10.2021;[historic=museum];x;name;int_name;406;tourism|museum
506highway|living_street|bridge;[highway=living_street][bridge?];;name;int_name;407;
507leisure|track|area;[leisure=track][area?];;name;int_name;408;
508railway|monorail;409;
509railway|rail|highspeed;[railway=rail][highspeed?][!service];;name;int_name;410;
510# ~50k usages; ID hardcoded in vehicle_model.hpp.
511highway|road;411;
512leisure|park|private;[leisure=park][access=private];;name;int_name;412;
513healthcare|physiotherapist;413;
514noexit;[noexit?];;name;int_name;414;
515healthcare|laboratory;415;
516highway|motorway|tunnel;[highway=motorway][tunnel?];;name;int_name;416;
517railway|light_rail|tunnel;[railway=light_rail][tunnel?];;name;int_name;417;
518area:highway|service;418;
519healthcare|alternative;419;
520healthcare|audiologist;420;
521healthcare|blood_donation;421;
522healthcare|optometrist;422;
523highway|road|tunnel;[highway=road][tunnel?];;name;int_name;423;
524sport|archery;424;
525healthcare|podiatrist;425;
526healthcare|psychotherapist;426;
527# TODO: deprecated, migrate to ford=*
528highway|ford;427;
529area:highway|path;428;
530deprecated:railway|siding:06.2023;429;x
531highway|track|area;[highway=track][area?];;name;int_name;430;
532amenity|sanitary_dump_station;431;
533railway|funicular;432;
534amenity|waste_transfer_station;433;
535historic|battlefield;434;
536healthcare|sample_collection;435;
537sport|australian_football;436;
538leisure|bowling_alley;437;
539healthcare|speech_therapist;438;
540natural|scree;439;
541natural|shingle;440;
542aerialway|t-bar;441;
543amenity|parking|lane|fee;[amenity=parking][parking=lane][fee];;name;int_name;442;
544amenity|parking|street_side|fee;[amenity=parking][parking=street_side][fee];;name;int_name;443;
545deprecated:highway|path|difficult_alpine_hiking:04.2024;[highway=path][sac_scale=difficult_alpine_hiking];x;name;int_name;444;highway|path|expert
546earthquake:damage|spontaneous_camp;445;
547natural|water|drain;[natural=water][water=drain];;name;int_name;446;
548deprecated:railway|yard:06.2023;447;x
549natural|water|ditch;[natural=water][water=ditch];;name;int_name;448;
550natural|water|moat;[natural=water][water=moat];;name;int_name;449;
551natural|water|wastewater;[natural=water][water=wastewater];;name;int_name;450;
552entrance|service;451;
553entrance|entry;[entrance=entrance];;ref;addr:flats;452;
554amenity|shelter|basic_hut;[amenity=shelter][shelter_type=basic_hut];;name;int_name;453;
555amenity|shelter|lean_to;[amenity=shelter][shelter_type=lean_to];;name;int_name;454;
556landuse|orchard;455;
557amenity|shelter|public_transport;[amenity=shelter][shelter_type=public_transport];;name;int_name;456;
558highway|living_street|tunnel;[highway=living_street][tunnel?];;name;int_name;457;
559# ~100k usages w/o religion=*.
560amenity|place_of_worship;458;
561# ~80k usages.
562boundary|administrative|4;[boundary=administrative][admin_level=4];;;;459;
563# ~100k usages.
564railway|station;460;
565sport|handball;461;
566shop|beauty|nails;[shop=beauty][beauty=nails];;name;int_name;462;
567piste:type|downhill|freeride;[piste:type=downhill][piste:difficulty=freeride],[piste:type=downhill][piste:grooming=backcountry][!piste:difficulty];;name;int_name;463;
568# _path_grade is a surrogate tag which combines sac_scale and trail_visibility, see osm2type.cpp
569highway|path|difficult;[highway=path][_path_grade=difficult];;name;int_name;464;
570highway|path|expert;[highway=path][_path_grade=expert];;name;int_name;465;
571piste:type|downhill|expert;[piste:type=downhill][piste:difficulty=expert];;name;int_name;466;
572landuse|salt_pond;467;
573cemetery|grave;468;
574railway|monorail|bridge;[railway=monorail][bridge?];;name;int_name;469;
575area:highway|steps;470;
576# ~90k usages.
577amenity|telephone;471;
578man_made|communications_tower;472;
579# ~260k uses.
580man_made|petroleum_well;[man_made=petroleum_well],[man_made=gas_well];;;;473;
581natural|grassland;474;
582emergency|lifeguard;475;
583emergency|mountain_rescue;476;
584aerialway|platter;477;
585man_made|flare;478;
586highway|ladder;479;
587railway|preserved|tunnel;[railway=preserved][tunnel?];;name;int_name;480;
588boundary|protected_area|1;[boundary=protected_area][protect_class=1],[boundary=protected_area][protect_class=1a],[boundary=protected_area][protect_class=1b];;name;int_name;481;
589boundary|protected_area|2;[boundary=protected_area][protect_class=2];;name;int_name;482;
590boundary|protected_area|3;[boundary=protected_area][protect_class=3];;name;int_name;483;
591boundary|protected_area|4;[boundary=protected_area][protect_class=4];;name;int_name;484;
592boundary|protected_area|5;[boundary=protected_area][protect_class=5];;name;int_name;485;
593boundary|protected_area|6;[boundary=protected_area][protect_class=6];;name;int_name;486;
594leisure|park|permissive;[leisure=park][access=permissive];;name;int_name;487;
595highway|bridleway|tunnel;[highway=bridleway][tunnel?];;name;int_name;488;
596highway|motorway_link|tunnel;[highway=motorway_link][tunnel?];;name;int_name;489;
597leisure|fitness_centre|sport|yoga;[leisure=fitness_centre][sport=yoga];;name;int_name;490;
598deprecated|deprecated;491;x
599deprecated|deprecated;492;x
600highway|tertiary_link|bridge;[highway=tertiary_link][bridge?];;name;int_name;493;
601tourism|information|visitor_centre;[tourism=information][information=visitor_centre];;name;int_name;494;
602amenity|parking|park_and_ride;[amenity=parking][parking=park_and_ride];;name;int_name;495;
603waterway|fish_pass;496;
604waterway|fish_pass|tunnel;[waterway=fish_pass][tunnel?];;name;int_name;497;
605natural|water|lock;[natural=water][water=lock];;name;int_name;498;
606xmas|tree;[xmas:feature=tree];;name;int_name;499;
607fee|yes;[fee?];;name;int_name;500;
608fee|no;[fee=not],[fee=no];;name;int_name;501;
609toilets|yes;502;
610highway|trunk_link|tunnel;[highway=trunk_link][tunnel?];;name;int_name;503;
611drinking_water|yes;[drinking_water=yes],[drinking_water=treated],[drinking_water:refill=yes];;;;504;
612drinking_water|no;505;
613amenity|sailing_school;[amenity=sailing_school],[education=sailing_school];;name;int_name;506;
614amenity|flight_school;[amenity=sailing_school],[education=flight_school];;name;int_name;507;
615amenity|prep_school;[amenity=prep_school],[education=prep_school];;name;int_name;508;
616amenity|car_pooling;509;
617social_facility|soup_kitchen;510;
618social_facility|food_bank;511;
619amenity|food_sharing;512;
620sport|curling;513;
621amenity|give_box;514;
622man_made|telescope;515;
623man_made|telescope|optical;[man_made=telescope][telescope:type=optical];;name;int_name;516;
624man_made|telescope|radio;[man_made=telescope][telescope:type=radio];;name;int_name;517;
625man_made|telescope|gamma;[man_made=telescope][telescope:type=gamma];;name;int_name;518;
626man_made|observatory;519;
627sport|diving;520;
628#~270k uses.
629man_made|utility_pole;521;
630amenity|payment_centre;522;
631# Generic unspecified barrier, could be node (50k) or way (100k)
632barrier|yes;523;
633railway|monorail|tunnel;[railway=monorail][tunnel?];;name;int_name;524;
634railway|funicular|bridge;[railway=funicular][bridge?];;name;int_name;525;
635deprecated|deprecated;526;x
636deprecated|deprecated;527;x
637highway|primary_link|tunnel;[highway=primary_link][tunnel?];;name;int_name;528;
638deprecated:highway|footway|alpine_hiking:04.2024;[highway=footway][sac_scale=alpine_hiking];x;name;int_name;529;highway|path|expert
639deprecated|deprecated;530;x
640deprecated|deprecated;531;x
641deprecated|deprecated;532;x
642deprecated:leisure|landscape_reserve:01.2024;533;leisure|nature_reserve
643deprecated|deprecated;534;x
644deprecated|deprecated;535;x
645deprecated:boundary|administrative|state:04.2024;[boundary=administrative][border_type=state];x;name;int_name;536;
646deprecated|deprecated;537;x
647deprecated|deprecated;538;x
648railway|funicular|tunnel;[railway=funicular][tunnel?];;name;int_name;539;
649barrier|cycle_barrier;540;
650addr:interpolation;[addr:interpolation];;addr:housenumber;name;541;
651leisure|indoor_play;542;
652area:highway|track;543;
653area:highway|primary;544;
654deprecated|deprecated;545;x
655deprecated|deprecated;546;x
656deprecated|deprecated;547;x
657deprecated|deprecated;548;x
658deprecated|deprecated;549;x
659waterway|lock_gate;550;
660leisure|firepit;551;
661barrier|guard_rail;552;
662amenity|studio;553;
663amenity|love_hotel;554;
664deprecated:highway|footway|demanding_alpine_hiking:04.2024;[highway=footway][sac_scale=demanding_alpine_hiking];x;name;int_name;555;highway|path|expert
665deprecated|deprecated;556;x
666deprecated|deprecated;557;x
667deprecated|deprecated;558;x
668deprecated|deprecated;559;x
669deprecated|deprecated;560;x
670deprecated|deprecated;561;x
671deprecated|deprecated;562;x
672deprecated|deprecated;563;x
673natural|lake;564;natural|water|lake
674power|plant;565;
675power|plant|solar;[power=plant][plant:source=solar];;name;int_name;566;
676power|plant|hydro;[power=plant][plant:source=hydro];;name;int_name;567;
677power|plant|wind;[power=plant][plant:source=wind];;name;int_name;568;
678power|plant|gas;[power=plant][plant:source=gas];;name;int_name;569;
679power|plant|coal;[power=plant][plant:source=coal];;name;int_name;570;
680deprecated|deprecated;571;x
681deprecated|deprecated;572;x
682deprecated|deprecated;573;x
683deprecated|deprecated;574;x
684aerialway|rope_tow;575;
685natural|pond;576;natural|water|pond
686railway|station|funicular;[railway=station][station=funicular],[railway=halt][station=funicular];;name;int_name;577;
687highway|secondary_link|tunnel;[highway=secondary_link][tunnel?];;name;int_name;578;
688buoy|lateral|port;[seamark:type=buoy_lateral][seamark:buoy_lateral:category=port];;;;579;
689buoy|lateral|starboard;[seamark:type=buoy_lateral][seamark:buoy_lateral:category=starboard];;;;580;
690buoy|isolated_danger;[seamark:type=buoy_isolated_danger];;;;581;
691buoy|cardinal|east;[seamark:type=buoy_cardinal][seamark:buoy_cardinal:category=east];;;;582;
692buoy|cardinal|west;[seamark:type=buoy_cardinal][seamark:buoy_cardinal:category=west];;;;583;
693buoy|cardinal|south;[seamark:type=buoy_cardinal][seamark:buoy_cardinal:category=south];;;;584;
694buoy|cardinal|north;[seamark:type=buoy_cardinal][seamark:buoy_cardinal:category=north];;;;585;
695buoy|special_purpose;[seamark:type=buoy_special_purpose];;;;586;
696aerialway|mixed_lift;587;
697buoy|safe_water;[seamark:type=buoy_safe_water];;;;588;
698beacon|lateral|port;[seamark:type=beacon_lateral][seamark:beacon_lateral:category=port][seamark:beacon_lateral:shape=tower],[seamark:type=beacon_lateral][seamark:beacon_lateral:category=port][seamark:beacon_lateral:shape=lattice],[seamark:type=beacon_lateral][seamark:beacon_lateral:category=port][seamark:beacon_lateral:shape=pile],[seamark:type=beacon_lateral][seamark:beacon_lateral:category=port][seamark:beacon_lateral:shape=buoyant];;;;589;
699beacon|lateral|starboard;[seamark:type=beacon_lateral][seamark:beacon_lateral:category=starboard][seamark:beacon_lateral:shape=tower],[seamark:type=beacon_lateral][seamark:beacon_lateral:category=starboard][seamark:beacon_lateral:shape=lattice],[seamark:type=beacon_lateral][seamark:beacon_lateral:category=starboard][seamark:beacon_lateral:shape=pile],[seamark:type=beacon_lateral][seamark:beacon_lateral:category=starboard][seamark:beacon_lateral:shape=buoyant];;;;590;
700highway|track|grade3|permissive;[highway=track][tracktype=grade3][access=permissive];x;name;int_name;591;highway|track
701beacon|isolated_danger;[seamark:type=beacon_isolated_danger][seamark:beacon_isolated_danger:shape=tower],[seamark:type=beacon_isolated_danger][seamark:beacon_isolated_danger:shape=lattice],[seamark:type=beacon_isolated_danger][seamark:beacon_isolated_danger:shape=pile],[seamark:type=beacon_isolated_danger][seamark:beacon_isolated_danger:shape=buoyant];;;;592;
702beacon|cardinal|east;[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=east][seamark:beacon_cardinal:shape=tower],[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=east][seamark:beacon_cardinal:shape=lattice],[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=east][seamark:beacon_cardinal:shape=pile],[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=east][seamark:beacon_cardinal:shape=buoyant];;;;593;
703beacon|cardinal|west;[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=west][seamark:beacon_cardinal:shape=tower],[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=west][seamark:beacon_cardinal:shape=lattice],[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=west][seamark:beacon_cardinal:shape=pile],[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=west][seamark:beacon_cardinal:shape=buoyant];;;;594;
704beacon|cardinal|south;[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=south][seamark:beacon_cardinal:shape=tower],[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=south][seamark:beacon_cardinal:shape=lattice],[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=south][seamark:beacon_cardinal:shape=pile],[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=south][seamark:beacon_cardinal:shape=buoyant];;;;595;
705beacon|cardinal|north;[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=north][seamark:beacon_cardinal:shape=tower],[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=north][seamark:beacon_cardinal:shape=lattice],[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=north][seamark:beacon_cardinal:shape=pile],[seamark:type=beacon_cardinal][seamark:beacon_cardinal:category=north][seamark:beacon_cardinal:shape=buoyant];;;;596;
706beacon|special_purpose;[seamark:type=beacon_special_purpose][seamark:beacon_special_purpose:shape=tower],[seamark:type=beacon_special_purpose][seamark:beacon_special_purpose:shape=lattice],[seamark:type=beacon_special_purpose][seamark:beacon_special_purpose:shape=pile],[seamark:type=beacon_special_purpose][seamark:beacon_special_purpose:shape=buoyant];;;;597;
707beacon|safe_water;[seamark:type=beacon_safe_water][seamark:beacon_safe_water:shape=tower],[seamark:type=beacon_safe_water][seamark:beacon_safe_water:shape=lattice],[seamark:type=beacon_safe_water][seamark:beacon_safe_water:shape=pile],[seamark:type=beacon_safe_water][seamark:beacon_safe_water:shape=buoyant];;;;598;
708deprecated|deprecated;599;x
709deprecated|deprecated;600;x
710place|continent;601;
711deprecated|deprecated;602;x
712deprecated|deprecated;603;x
713deprecated:boundary|administrative|nation:04.2024;[boundary=administrative][border_type=nation];x;name;int_name;604;
714piste:type|hike;605;
715piste:type|connection;606;
716piste:type|skitour;607;
717aerialway|magic_carpet;608;
718piste:type|downhill|novice|area;[piste:type=downhill][piste:difficulty=novice][area?];;;;609;
719piste:type|downhill|easy|area;[piste:type=downhill][piste:difficulty=easy][area?];;;;610;
720piste:type|downhill|intermediate|area;[piste:type=downhill][piste:difficulty=intermediate][area?];;;;611;
721piste:type|downhill|advanced|area;[piste:type=downhill][piste:difficulty=advanced][area?];;;;612;
722piste:type|downhill|expert|area;[piste:type=downhill][piste:difficulty=expert][area?];;;;613;
723piste:type|downhill|area;[piste:type=downhill][area?];;;;614;
724piste:type|sled|area;[piste:type=sled][area?];;;;615;
725piste:type|snow_park;616;
726spherical_buoy|lateral|port;[seamark:type=buoy_lateral][seamark:buoy_lateral:category=port][seamark:buoy_lateral:shape=spherical];;;;617;
727spherical_buoy|lateral|starboard;[seamark:type=buoy_lateral][seamark:buoy_lateral:category=starboard][seamark:buoy_lateral:shape=spherical];;;;618;
728aerialway|j-bar;619;
729spherical_buoy|isolated_danger;[seamark:type=buoy_isolated_danger][seamark:buoy_isolated_danger:shape=spherical];;;;620;
730spherical_buoy|cardinal|east;[seamark:type=buoy_cardinal][seamark:buoy_cardinal:category=east][seamark:buoy_cardinal:shape=spherical];;;;621;
731spherical_buoy|cardinal|west;[seamark:type=buoy_cardinal][seamark:buoy_cardinal:category=west][seamark:buoy_cardinal:shape=spherical];;;;622;
732spherical_buoy|cardinal|south;[seamark:type=buoy_cardinal][seamark:buoy_cardinal:category=south][seamark:buoy_cardinal:shape=spherical];;;;623;
733spherical_buoy|cardinal|north;[seamark:type=buoy_cardinal][seamark:buoy_cardinal:category=north][seamark:buoy_cardinal:shape=spherical];;;;624;
734spherical_buoy|special_purpose;[seamark:type=buoy_special_purpose][seamark:buoy_special_purpose:shape=spherical];;;;625;
735spherical_buoy|safe_water;[seamark:type=buoy_safe_water][seamark:buoy_safe_water:shape=spherical];;;;626;
736cardinal|east;[seamark:buoy_cardinal:category=east],[seamark:beacon_cardinal:category=east][seamark:beacon_cardinal:shape=tower],[seamark:beacon_cardinal:category=east][seamark:beacon_cardinal:shape=lattice],[seamark:beacon_cardinal:category=east][seamark:beacon_cardinal:shape=pile],[seamark:beacon_cardinal:category=east][seamark:beacon_cardinal:shape=buoyant];;;;627;
737cardinal|west;[seamark:buoy_cardinal:category=west],[seamark:beacon_cardinal:category=west][seamark:beacon_cardinal:shape=tower],[seamark:beacon_cardinal:category=west][seamark:beacon_cardinal:shape=lattice],[seamark:beacon_cardinal:category=west][seamark:beacon_cardinal:shape=pile],[seamark:beacon_cardinal:category=west][seamark:beacon_cardinal:shape=buoyant];;;;628;
738cardinal|south;[seamark:buoy_cardinal:category=south],[seamark:beacon_cardinal:category=south][seamark:beacon_cardinal:shape=tower],[seamark:beacon_cardinal:category=south][seamark:beacon_cardinal:shape=lattice],[seamark:beacon_cardinal:category=south][seamark:beacon_cardinal:shape=pile],[seamark:beacon_cardinal:category=south][seamark:beacon_cardinal:shape=buoyant];;;;629;
739cardinal|north;[seamark:buoy_cardinal:category=north],[seamark:beacon_cardinal:category=north][seamark:beacon_cardinal:shape=tower],[seamark:beacon_cardinal:category=north][seamark:beacon_cardinal:shape=lattice],[seamark:beacon_cardinal:category=north][seamark:beacon_cardinal:shape=pile],[seamark:beacon_cardinal:category=north][seamark:beacon_cardinal:shape=buoyant];;;;630;
740highway|track|grade5|permissive;[highway=track][tracktype=grade5][access=permissive];x;name;int_name;631;highway|track
741lateral|port;[seamark:buoy_lateral:category=port],[seamark:beacon_lateral:category=port][seamark:beacon_lateral:shape=tower],[seamark:beacon_lateral:category=port][seamark:beacon_lateral:shape=lattice],[seamark:beacon_lateral:category=port][seamark:beacon_lateral:shape=pile],[seamark:beacon_lateral:category=port][seamark:beacon_lateral:shape=buoyant];;;;632;
742lateral|starboard;[seamark:buoy_lateral:category=starboard],[seamark:beacon_lateral:category=starboard][seamark:beacon_lateral:shape=tower],[seamark:beacon_lateral:category=starboard][seamark:beacon_lateral:shape=lattice],[seamark:beacon_lateral:category=starboard][seamark:beacon_lateral:shape=pile],[seamark:beacon_lateral:category=starboard][seamark:beacon_lateral:shape=buoyant];;;;633;
743highway|tertiary_link|tunnel;[highway=tertiary_link][tunnel?];;name;int_name;634;
744deprecated|deprecated;635;x
745deprecated|deprecated;636;x
746deprecated|deprecated;637;x
747deprecated|deprecated;638;x
748deprecated|deprecated;639;x
749deprecated|deprecated;640;x
750deprecated|deprecated;641;x
751deprecated|deprecated;642;x
752deprecated|deprecated;643;x
753deprecated|deprecated;644;x
754deprecated|deprecated;645;x
755deprecated|deprecated;646;x
756deprecated|deprecated;647;x
757deprecated|deprecated;648;x
758deprecated|deprecated;649;x
759deprecated|deprecated;650;x
760deprecated:railway|spur|tunnel:06.2023;651;x
761deprecated|deprecated;652;x
762deprecated|deprecated;653;x
763deprecated|deprecated;654;x
764deprecated|deprecated;655;x
765deprecated|deprecated;656;x
766deprecated:boundary|administrative|municipality:04.2024;[boundary=administrative][border_type=municipality];x;name;int_name;657;
767natural|wetland|saltmarsh;[natural=wetland][wetland=saltmarsh];;;;658;
768natural|wetland|saltmarsh|tidal;[natural=wetland][wetland=saltmarsh][tidal=yes];;;;659;
769natural|wetland|fen;[natural=wetland][wetland=fen];;;;660;
770natural|wetland|reedbed;[natural=wetland][wetland=reedbed];;;;661;
771natural|wetland|swamp;[natural=wetland][wetland=swamp];;;;662;
772natural|wetland|mangrove;[natural=wetland][wetland=mangrove];;;;663;
773natural|wetland|tidalflat;[natural=wetland][wetland=tidalflat];;;;664;
774deprecated|railway|yard|bridge:06.2023;665;x
775deprecated|deprecated;666;x
776deprecated|deprecated;667;x
777deprecated|deprecated;668;x
778deprecated|deprecated;669;x
779deprecated|deprecated;670;x
780deprecated|deprecated;671;x
781deprecated|deprecated;672;x
782deprecated|deprecated;673;x
783deprecated|deprecated;674;x
784highway|track|grade4|permissive;[highway=track][tracktype=grade4][access=permissive];x;name;int_name;675;highway|track
785deprecated|deprecated;676;x
786deprecated|deprecated;677;x
787deprecated|deprecated;678;x
788deprecated|deprecated;679;x
789deprecated|deprecated;680;x
790deprecated|deprecated;681;x
791deprecated|deprecated;682;x
792deprecated|deprecated;683;x
793deprecated|deprecated;684;x
794deprecated|deprecated;685;x
795natural|vineyard;686;landuse|vineyard
796deprecated|deprecated;687;x
797deprecated|deprecated;688;x
798deprecated|deprecated;689;x
799deprecated|deprecated;690;x
800deprecated:boundary|administrative|country:04.2024;[boundary=administrative][border_type=country];x;name;int_name;691;
801man_made|cross;692;
802natural|orchard;693;landuse|orchard
803landuse|plant_nursery;694;
804deprecated|deprecated;695;x
805deprecated|deprecated;696;x
806deprecated|deprecated;697;x
807deprecated|deprecated;698;x
808deprecated|deprecated;699;x
809deprecated|deprecated;700;x
810deprecated|deprecated;701;x
811office|diplomatic;702;
812railway|station|subway;[railway=station][transport=subway],[railway=station][station=subway];;name;int_name;703;
813amenity|police;704;
814amenity|car_rental;705;
815amenity|taxi;706;
816amenity|marketplace;707;
817amenity|nightclub;708;
818amenity|embassy;709;office|diplomatic
819amenity|townhall;710;
820barrier|gate;711;
821barrier|lift_gate;712;
822barrier|stile;713;
823barrier|block;714;
824barrier|toll_booth;715;
825historic|memorial;716;
826historic|ruins;717;
827historic|monument;[historic=monument],[man_made=obelisk];;;;718;
828historic|castle;719;
829historic|archaeological_site;720;
830shop|caravan;721;
831man_made|cutline;722;
832natural|bay;723;
833natural|spring;724;
834railway|platform;725;
835shop|clothes;[shop=clothes],[shop=fashion];;name;int_name;726;
836shop|car_repair;727;
837shop|car;728;
838shop|kiosk;729;
839sport|multi;730;
840sport|golf;[sport=golf],[sport=miniature_golf];;name;int_name;731;
841sport|skiing;732;
842tourism|museum;733;
843tourism|guest_house;734;
844tourism|motel;735;
845shop|telecommunication;736;
846place|state|USA;[place=state][addr:country=US],[place=state][is_in=USA],[place=state][is_in:country=USA],[place=state][is_in:country_code=us];;name;int_name;737;
847building|address;[addr:housenumber][addr:street];;addr:housenumber;name;738;
848amenity|parking|no-access;[amenity=parking][access=not],[amenity=parking][access=no];;name;int_name;739;
849barrier|swing_gate;740;
850barrier|chain;741;
851sport|climbing;742;
852sport|yoga;743;
853amenity|parking_entrance;[amenity=parking_entrance];;name;int_name;744;
854amenity|parking_entrance|private;[amenity=parking_entrance][access=private];;name;int_name;745;
855amenity|parking_entrance|permissive;[amenity=parking_entrance][access=permissive];;name;int_name;746;
856barrier|cattle_grid;747;
857barrier|ditch;748;
858barrier|kissing_gate;749;
859barrier|turnstile;750;
860landuse|industrial|mine;[landuse=industrial][industrial=mine];;name;int_name;751;
861landuse|flowerbed;752;
862# Used for barrier|yes in OM
863deprecated|OM;753;x
864# Used for barrier|wicket_gate in OM
865deprecated|OM;754;x
866leisure|sports_centre|sport|american_football;[leisure=sports_centre][sport=american_football];;name;int_name;755;
867leisure|sports_centre|sport|athletics;[leisure=sports_centre][sport=athletics];;name;int_name;756;
868leisure|sports_centre|sport|badminton;[leisure=sports_centre][sport=badminton];;name;int_name;757;
869leisure|sports_centre|sport|baseball;[leisure=sports_centre][sport=baseball];;name;int_name;758;
870leisure|sports_centre|sport|basketball;[leisure=sports_centre][sport=basketball];;name;int_name;759;
871leisure|sports_centre|sport|beachvolleyball;[leisure=sports_centre][sport=beachvolleyball];;name;int_name;760;
872leisure|sports_centre|sport|climbing;[leisure=sports_centre][sport=climbing];;name;int_name;761;
873leisure|sports_centre|sport|field_hockey;[leisure=sports_centre][sport=field_hockey];;name;int_name;762;
874leisure|sports_centre|sport|golf;[leisure=sports_centre][sport=golf];;name;int_name;763;
875leisure|sports_centre|sport|gymnastics;[leisure=sports_centre][sport=gymnastics];;name;int_name;764;
876leisure|sports_centre|sport|handball;[leisure=sports_centre][sport=handball];;name;int_name;765;
877leisure|sports_centre|sport|ice_hockey;[leisure=sports_centre][sport=ice_hockey];;name;int_name;766;
878leisure|sports_centre|sport|padel;[leisure=sports_centre][sport=padel];;name;int_name;767;
879leisure|sports_centre|sport|pelota;[leisure=sports_centre][sport=pelota];;name;int_name;768;
880leisure|sports_centre|sport|skateboard;[leisure=sports_centre][sport=skateboard];;name;int_name;769;
881leisure|sports_centre|sport|skiing;[leisure=sports_centre][sport=skiing];;name;int_name;770;
882leisure|sports_centre|sport|swimming;[leisure=sports_centre][sport=swimming];;name;int_name;771;
883leisure|sports_centre|sport|table_tennis;[leisure=sports_centre][sport=table_tennis];;name;int_name;772;
884leisure|sports_centre|sport|tennis;[leisure=sports_centre][sport=tennis];;name;int_name;773;
885leisure|sports_centre|sport|volleyball;[leisure=sports_centre][sport=volleyball];;name;int_name;774;
886leisure|sports_centre|sport|yoga;[leisure=sports_centre][sport=yoga];;name;int_name;775;
887leisure|sports_centre|sport|archery;[leisure=sports_centre][sport=archery];;name;int_name;776;
888leisure|sports_centre|sport|australian_football;[leisure=sports_centre][sport=australian_football];;name;int_name;777;
889leisure|sports_centre|sport|bowls;[leisure=sports_centre][sport=bowls];;name;int_name;778;
890leisure|sports_centre|sport|cricket;[leisure=sports_centre][sport=cricket];;name;int_name;779;
891leisure|sports_centre|sport|curling;[leisure=sports_centre][sport=curling];;name;int_name;780;
892leisure|sports_centre|sport|equestrian;[leisure=sports_centre][sport=equestrian];;name;int_name;781;
893leisure|sports_centre|sport|futsal;[leisure=sports_centre][sport=futsal];;name;int_name;782;
894leisure|sports_centre|sport|scuba_diving;[leisure=sports_centre][sport=scuba_diving];;name;int_name;783;
895leisure|sports_centre|sport|shooting;[leisure=sports_centre][sport=shooting];;name;int_name;784;
896leisure|sports_centre|sport|multi;[leisure=sports_centre][sport=multi];;name;int_name;785;
897leisure|sports_centre|sport|soccer;[leisure=sports_centre][sport=soccer];;name;int_name;786;
898deprecated|deprecated;787;x
899deprecated|deprecated;788;x
900deprecated|deprecated;789;x
901deprecated|deprecated;790;x
902deprecated|deprecated;791;x
903deprecated|deprecated;792;x
904deprecated|deprecated;793;x
905deprecated|deprecated;794;x
906deprecated|deprecated;795;x
907deprecated|deprecated;796;x
908deprecated|deprecated;797;x
909deprecated|deprecated;798;x
910deprecated|deprecated;799;x
911deprecated|deprecated;800;x
912deprecated|deprecated;801;x
913deprecated|deprecated;802;x
914deprecated|deprecated;803;x
915deprecated|deprecated;804;x
916deprecated|deprecated;805;x
917deprecated|deprecated;806;x
918deprecated|deprecated;807;x
919deprecated|deprecated;808;x
920deprecated|deprecated;809;x
921deprecated|deprecated;810;x
922deprecated|deprecated;811;x
923deprecated|deprecated;812;x
924deprecated|deprecated;813;x
925deprecated|deprecated;814;x
926deprecated|deprecated;815;x
927deprecated|deprecated;816;x
928deprecated|deprecated;817;x
929deprecated|deprecated;818;x
930deprecated|deprecated;819;x
931deprecated|deprecated;820;x
932highway|track|grade3|no-access;[highway=track][tracktype=grade3][access=not],[highway=track][tracktype=grade3][access=no];x;name;int_name;821;highway|track
933highway|track|grade4|no-access;[highway=track][tracktype=grade4][access=not],[highway=track][tracktype=grade4][access=no];x;name;int_name;822;highway|track
934highway|track|grade5|no-access;[highway=track][tracktype=grade4][access=not],[highway=track][tracktype=grade5][access=no];x;name;int_name;823;highway|track
935highway|track|no-access;[highway=track][access=not],[highway=track][access=no];;name;int_name;824;
936deprecated|deprecated;825;x
937deprecated|deprecated;826;x
938deprecated|deprecated;827;x
939deprecated|deprecated;828;x
940deprecated|deprecated;829;x
941deprecated|deprecated;830;x
942deprecated|deprecated;831;x
943deprecated|deprecated;832;x
944deprecated|deprecated;833;x
945deprecated|deprecated;834;x
946deprecated|deprecated;835;x
947deprecated|deprecated;836;x
948deprecated|deprecated;837;x
949deprecated|deprecated;838;x
950landuse|military|danger_area;[landuse=military][military=danger_area][wikipedia?],[landuse=military][military=cordon][wikipedia?];;name;int_name;839;
951boundary|protected_area;840;
952deprecated|deprecated;841;x
953deprecated|deprecated;842;x
954deprecated|deprecated;843;x
955deprecated|deprecated;844;x
956deprecated|deprecated;845;x
957deprecated|deprecated;846;x
958leisure|park|no-access;[leisure=park][access=not],[leisure=park][access=no];;name;int_name;847;
959deprecated|deprecated;848;x
960deprecated|deprecated;849;x
961deprecated|deprecated;850;x
962deprecated|deprecated;851;x
963railway|rail|highspeed|bridge;[railway=rail][highspeed?][!service][bridge?];;name;int_name;852;
964railway|rail|tourism|bridge;[railway=rail][usage=tourism][!service][bridge?];;name;int_name;853;
965railway|rail|highspeed|tunnel;[railway=rail][highspeed?][!service][tunnel?];;name;int_name;854;
966railway|rail|tourism|tunnel;[railway=rail][usage=tourism][!service][tunnel?];;name;int_name;855;
967mapswithme|grid;856;
968amenity|mobile_money_agent;857;
969highway|busway;[highway=busway],[highway=service][service=busway],[highway=service][service=bus];;name;int_name;858;
970highway|busway|bridge;[highway=busway][bridge?];;name;int_name;859;
971highway|busway|tunnel;[highway=busway][tunnel?];;name;int_name;860;
972natural|salt_pond;861;landuse|salt_pond
973amenity|conference_centre;862;
974amenity|exhibition_centre;863;
975shop|beauty|day_spa;[shop=beauty][beauty=spa];;name;int_name;864;
976amenity|boat_rental;865;
977area:highway|footway;866;
978junction|circular;867;
979area:highway|residential;868;
980area:highway|secondary;869;
981area:highway|tertiary;870;
982deprecated|deprecated;871;x
983deprecated|deprecated;872;x
984area:highway|pedestrian;873;
985area:highway|unclassified;874;
986highway|pedestrian|square;[highway=pedestrian][place=square];;;;875;
987leisure|bandstand;876;
988area:highway|cycleway;877;
989entrance|exit;878;
990area:highway|motorway;879;
991area:highway|trunk;880;
992man_made|bridge;881;
993entrance;[entrance];;ref;addr:flats;882;
994entrance|main;[entrance=main];;ref;addr:flats;883;
995shop|agrarian;884;
996tourism|artwork;885;
997railway|subway|red;[railway=subway][colour=red];x;name;int_name;886;railway|subway|tunnel
998railway|subway|blue;[railway=subway][colour=blue];x;name;int_name;887;railway|subway|tunnel
999railway|subway|orange;[railway=subway][colour=orange];x;name;int_name;888;railway|subway|tunnel
1000railway|subway|green;[railway=subway][colour=green];x;name;int_name;889;railway|subway|tunnel
1001railway|subway|brown;[railway=subway][colour=brown];x;name;int_name;890;railway|subway|tunnel
1002railway|subway|yellow;[railway=subway][colour=yellow];x;name;int_name;891;railway|subway|tunnel
1003railway|subway|purple;[railway=subway][colour=purple];x;name;int_name;892;railway|subway|tunnel
1004historic|memorial|stolperstein;[historic=memorial][memorial=stolperstein],[historic=memorial][memorial:type=stolperstein];;name;int_name;893;
1005historic|memorial|war_memorial;[historic=memorial][memorial=war_memorial],[historic=memorial][memorial:type=war_memorial];;name;int_name;894;
1006historic|memorial|cross;[historic=memorial][memorial=cross];;name;int_name;895;
1007historic|gallows;[historic=gallows];;name;int_name;896;
1008historic|pillory;[historic=pillory];;name;int_name;897;
1009amenity|money_transfer;898;
1010man_made|crane;899;
1011railway|subway|darkgreen;[railway=subway][colour=darkgreen];x;name;int_name;900;railway|subway|tunnel
1012barrier|wicket_gate;901;
1013railway|subway|gray;[railway=subway][colour=gray];x;name;int_name;902;railway|subway|tunnel
1014amenity|animal_shelter;903;
1015railway|subway|lightblue;[railway=subway][colour=lightblue];x;name;int_name;904;railway|subway|tunnel
1016amenity|motorcycle_rental;[amenity=motorcycle_rental],[shop=motorcycle][motorcycle:rental=yes],[shop=motorcycle][rental=yes],[amenity=scooter_rental];;;;905;
1017railway|subway|lightgreen;[railway=subway][colour=lightgreen];x;name;int_name;906;railway|subway|tunnel
1018place|quarter;907;
1019railway|subway|violet;[railway=subway][colour=violet];x;name;int_name;908;railway|subway|tunnel
1020shop|rental;909;
1021railway|subway|grey;[railway=subway][colour=grey];x;name;int_name;910;railway|subway|tunnel
1022shop|rental|bike;[shop=rental][rental=bike];;name;int_name;911;
1023historic|ship;912;
1024shop|tobacco;913;
1025shop|farm;914;
1026shop|storage_rental;915;
1027shop|trade;916;
1028shop|deli;917;
1029shop|mall;918;
1030shop|doityourself;919;
1031place|sea;920;
1032place|ocean;921;
1033natural|cliff;922;
1034shop|butcher;923;
1035shop|florist;924;
1036shop|bicycle;925;
1037shop|alcohol;926;
1038shop|books;927;
1039shop|electronics;928;
1040shop|shoes;929;
1041shop|department_store;930;
1042shop|hardware;931;
1043shop|jewelry;932;
1044shop|chemist;933;
1045shop|optician;934;
1046shop|garden_centre;935;
1047shop|gift;936;
1048shop|computer;937;
1049shop|mobile_phone;938;
1050shop|greengrocer;939;
1051shop|beverages;940;
1052shop|toys;941;
1053shop|confectionery;942;
1054shop;[shop?];;name;int_name;943;
1055hwtag|lit;944;
1056office|company;945;
1057office|telecommunication;946;
1058office|government;947;
1059office|estate_agent;[office=estate_agent],[shop=estate_agent];;name;int_name;948;
1060office|lawyer;949;
1061office;[office];;name;int_name;950;
1062natural|earth_bank;951;
1063man_made|embankment;952;
1064amenity|ferry_terminal;953;
1065amenity;[amenity];;name;int_name;954;
1066shop|furniture;955;
1067craft|winery;956;
1068waterway|waterfall;957;
1069craft|electronics_repair;958;
1070shop|appliance;959;
1071amenity|casino;960;
1072amenity|brothel;961;
1073place|neighbourhood;962;
1074place|isolated_dwelling;963;
1075historic|wayside_cross;964;
1076historic|wayside_shrine;965;
1077historic|boundary_stone;966;
1078historic|citywalls;967;
1079historic|tomb;968;
1080natural|rock;[natural=rock],[natural=stone];;;;969;
1081natural|bare_rock;970;
1082natural|tree_row;971;
1083natural|cape;972;
1084craft|carpenter;973;
1085craft|shoemaker;974;
1086craft|photographer;975;
1087craft|electrician;976;
1088craft|tailor;[craft=tailor],[shop=tailor];;name;int_name;977;
1089craft|plumber;978;
1090craft|brewery;979;
1091craft|metal_construction;980;
1092craft|hvac;981;
1093craft|painter;982;
1094craft|gardener;983;
1095internet_access;[internet_access];;name;int_name;984;
1096internet_access|wlan;985;
1097amenity|waste_disposal;986;
1098amenity|bbq;987;
1099craft|sawmill;988;
1100route|ferry|motorcar;[route=ferry][motorcar];x;name;int_name;989;route|ferry
1101junction|roundabout;990;
1102highway|speed_camera;991;
1103shop|beauty;992;
1104shop|sports;993;
1105entrance|house;[entrance=home],[entrance=staircase];;ref;addr:flats;994;
1106entrance|garage;[entrance=garage];;ref;addr:flats;995;
1107hwtag|nofoot;996;
1108place|city|capital|2;[place=city][capital=2],[place=city][capital?][admin_level=2];;name;int_name;997;
1109place|city|capital|3;[place=city][capital=3],[place=city][capital?][admin_level=3];;name;int_name;998;
1110place|city|capital|4;[place=city][capital=4],[place=city][capital?][admin_level=4];;name;int_name;999;
1111place|city|capital|5;[place=city][capital=5],[place=city][capital?][admin_level=5];;name;int_name;1000;
1112place|city|capital|6;[place=city][capital=6],[place=city][capital?][admin_level=6];;name;int_name;1001;
1113place|city|capital|7;[place=city][capital=7],[place=city][capital?][admin_level=7];;name;int_name;1002;
1114place|city|capital|8;[place=city][capital=8],[place=city][capital?][admin_level=8];;name;int_name;1003;
1115place|city|capital|9;[place=city][capital=9],[place=city][capital?][admin_level=9];;name;int_name;1004;
1116place|city|capital|10;[place=city][capital=10],[place=city][capital?][admin_level=10];;name;int_name;1005;
1117place|city|capital|11;[place=city][capital=11],[place=city][capital?][admin_level=11];;name;int_name;1006;
1118hwtag|yesfoot;1007;
1119public_transport|platform;1008;
1120# Useless now, it is detected by the classifier, but has no any rules and isn't set as an exception.
1121junction;[junction];;name;int_name;1009;
1122aeroway|aerodrome|international;[aeroway=aerodrome][aerodrome=international],[aeroway=aerodrome][aerodrome:type=international];;name;int_name;1010;
1123railway|station|light_rail;[railway=station][station=light_rail],[railway=station][transport=light_rail];;name;int_name;1011;
1124railway|station|monorail;[railway=station][station=monorail],[railway=station][transport=monorail],[railway=halt][station=monorail];;name;int_name;1012;
1125railway|station|subway|london;[railway=station][transport=subway][city=london],[railway=station][station=subway][city=london];;name;int_name;1013;
1126railway|station|subway|newyork;[railway=station][transport=subway][city=newyork],[railway=station][station=subway][city=newyork];;name;int_name;1014;
1127railway|station|subway|moscow;[railway=station][transport=subway][city=moscow],[railway=station][station=subway][city=moscow];;name;int_name;1015;
1128railway|station|subway|berlin;[railway=station][transport=subway][city=berlin],[railway=station][station=subway][city=berlin];;name;int_name;1016;
1129railway|station|subway|minsk;[railway=station][transport=subway][city=minsk],[railway=station][station=subway][city=minsk];;name;int_name;1017;
1130railway|station|subway|kiev;[railway=station][transport=subway][city=kiev],[railway=station][station=subway][city=kiev];;name;int_name;1018;
1131railway|station|subway|barcelona;[railway=station][transport=subway][city=barcelona],[railway=station][station=subway][city=barcelona];;name;int_name;1019;
1132railway|station|subway|paris;[railway=station][transport=subway][city=paris],[railway=station][station=subway][city=paris];;name;int_name;1020;
1133railway|station|subway|madrid;[railway=station][transport=subway][city=madrid],[railway=station][station=subway][city=madrid];;name;int_name;1021;
1134railway|station|subway|roma;[railway=station][transport=subway][city=roma],[railway=station][station=subway][city=roma];;name;int_name;1022;
1135railway|station|subway|spb;[railway=station][transport=subway][city=spb],[railway=station][station=subway][city=spb];;name;int_name;1023;
1136railway|subway_entrance|london;[railway=subway_entrance][city=london];;name;int_name;1024;
1137railway|subway_entrance|newyork;[railway=subway_entrance][city=newyork];;name;int_name;1025;
1138railway|subway_entrance|moscow;[railway=subway_entrance][city=moscow];;name;int_name;1026;
1139railway|subway_entrance|berlin;[railway=subway_entrance][city=berlin];;name;int_name;1027;
1140railway|subway_entrance|minsk;[railway=subway_entrance][city=minsk];;name;int_name;1028;
1141railway|subway_entrance|kiev;[railway=subway_entrance][city=kiev];;name;int_name;1029;
1142railway|subway_entrance|barcelona;[railway=subway_entrance][city=barcelona];;name;int_name;1030;
1143railway|subway_entrance|paris;[railway=subway_entrance][city=paris];;name;int_name;1031;
1144railway|subway_entrance|madrid;[railway=subway_entrance][city=madrid];;name;int_name;1032;
1145railway|subway_entrance|roma;[railway=subway_entrance][city=roma];;name;int_name;1033;
1146railway|subway_entrance|spb;[railway=subway_entrance][city=spb];;name;int_name;1034;
1147aerialway|drag_lift;1035;
1148amenity|dentist;1036;
1149amenity|clinic;1037;
1150barrier|entrance;1038;
1151barrier|border_control;1039;
1152shop|laundry;1040;
1153amenity|vending_machine|parking_tickets;[amenity=vending_machine][vending=parking_tickets];;name;int_name;1041;
1154amenity|vending_machine|public_transport_tickets;[amenity=vending_machine][vending=public_transport_tickets];;name;int_name;1042;
1155building:part;[building:part];;name;int_name;1043;
1156amenity|place_of_worship|christian;[amenity=place_of_worship][religion=christian];;name;int_name;1044;
1157amenity|place_of_worship|muslim;[amenity=place_of_worship][religion=muslim];;name;int_name;1045;
1158amenity|place_of_worship|buddhist;[amenity=place_of_worship][religion=buddhist];;name;int_name;1046;
1159amenity|place_of_worship|hindu;[amenity=place_of_worship][religion=hindu];;name;int_name;1047;
1160amenity|place_of_worship|shinto;[amenity=place_of_worship][religion=shinto];;name;int_name;1048;
1161amenity|place_of_worship|jewish;[amenity=place_of_worship][religion=jewish];;name;int_name;1049;
1162amenity|place_of_worship|taoist;[amenity=place_of_worship][religion=taoist];;name;int_name;1050;
1163man_made|water_tower;1051;
1164highway|world_level;1052;
1165highway|world_towns_level;1053;
1166building|train_station;1054;
1167route|shuttle_train;[route=shuttle_train],[route=train][shuttle];;;;1055;
1168shop|copyshop;1056;
1169shop|photo;1057;
1170shop|travel_agency;[shop=travel_agency],[office=travel_agent];;name;int_name;1058;
1171highway|elevator;1059;
1172shop|outdoor;1060;
1173craft|confectionery;1061;
1174craft|handicraft;1062;
1175shop|dry_cleaning;1063;
1176shop|tyres;1064;
1177craft|beekeeper;1065;
1178amenity|car_wash;1066;
1179amenity|veterinary;1067;
1180amenity|charging_station;1068;
1181amenity|childcare;1069;
1182craft|blacksmith;1070;
1183amenity|bicycle_parking;1071;
1184amenity|community_centre;1072;
1185amenity|courthouse;1073;
1186amenity|vending_machine|cigarettes;[amenity=vending_machine][vending=cigarettes];;name;int_name;1074;
1187amenity|vending_machine|drinks;[amenity=vending_machine][vending=drinks];;name;int_name;1075;
1188amenity|waste_basket;1076;
1189building|garage;[building=garage],[building=yes][garage],[building=garages],[amenity=garage],[amenity=garages];;addr:housenumber;name;1077;
1190shop|pastry;1078;
1191emergency|phone;1079;
1192highway|rest_area;1080;
1193highway|traffic_signals;1081;
1194leisure|fitness_centre;[leisure=fitness_centre],[leisure=sports_centre][sport=fitness],[amenity=gym];;name;int_name;1082;
1195amenity|vending_machine|excrement_bags;[amenity=vending_machine][vending=excrement_bags];;name;int_name;1083;
1196amenity|parcel_locker;1084;
1197leisure|sauna;[leisure=sauna],[amenity=sauna];;name;int_name;1085;
1198amenity|vending_machine|fuel;[amenity=vending_machine][vending=fuel];;name;int_name;1086;
1199man_made|chimney;1087;
1200man_made|tower;1088;
1201man_made|water_well;1089;
1202amenity|vending_machine;[amenity=vending_machine];;name;int_name;1090;
1203shop|bookmaker;1091;
1204shop|car_repair|tyres;[shop=car_repair][service=tyres];;name;int_name;1092;
1205shop|cosmetics;1093;
1206shop|pet;1094;
1207shop|seafood;1095;
1208shop|ticket;1096;
1209shop|wine;1097;
1210tourism|chalet;1098;
1211tourism|information|board;[tourism=information][information=board];;name;int_name;1099;
1212tourism|information|map;[tourism=information][information=map];;name;int_name;1100;
1213shop|paint;1101;
1214traffic_calming|bump;1102;
1215traffic_calming|hump;1103;
1216shop|car_parts;1104;
1217deprecated|deprecated;1105;x
1218deprecated|deprecated;1106;x
1219deprecated|deprecated;1107;x
1220deprecated|deprecated;1108;x
1221amenity|public_bookcase;1109;
1222tourism|apartment;1110;
1223leisure|resort;[leisure=resort],[tourism=resort],[leisure=summer_camp];;name;int_name;1111;
1224shop|interior_decoration;1112;
1225shop|houseware;1113;
1226hwtag|nobicycle;1114;
1227hwtag|yesbicycle;1115;
1228hwtag|bidir_bicycle;1116;
1229psurface|paved_good;1117;
1230psurface|paved_bad;1118;
1231psurface|unpaved_good;1119;
1232psurface|unpaved_bad;1120;
1233wheelchair|yes;1121;
1234wheelchair|no;1122;
1235wheelchair|limited;1123;
1236building|has_parts;1124;
1237organic|only;1125;
1238organic|yes;1126;
1239amenity|vending_machine|coffee;[amenity=vending_machine][vending=coffee];;name;int_name;1127;
1240amenity|vending_machine|condoms;[amenity=vending_machine][vending=condoms];;name;int_name;1128;
1241amenity|vending_machine|food;[amenity=vending_machine][vending=food];;name;int_name;1129;
1242amenity|vending_machine|newspapers;[amenity=vending_machine][vending=newspapers];;name;int_name;1130;
1243amenity|vending_machine|sweets;[amenity=vending_machine][vending=sweets];;name;int_name;1131;
1244leisure|dance;[leisure=dance],[amenity=dancing_school];;;;1132;
1245amenity|music_school;[amenity=music_school],[education=music_school];;name;int_name;1133;
1246amenity|language_school;[amenity=language_school],[education=language_school];;name;int_name;1134;
1247historic|city_gate;1135;
1248sport|padel;1136;
1249sport|futsal;1137;
1250sport|ice_hockey;1138;
1251sport|field_hockey;1139;
1252sport|badminton;1140;
1253sport|pelota;1141;
1254historic|castle|castrum;[historic=castle][castle_type=castrum];;name;int_name;1142;
1255historic|castle|fortified_church;[historic=castle][castle_type=fortified_church];;name;int_name;1143;
1256historic|castle|fortress;[historic=castle][castle_type=fortress],[historic=fortress];;name;int_name;1144;
1257historic|castle|hillfort;[historic=castle][castle_type=hillfort];;name;int_name;1145;
1258historic|castle|kremlin;[historic=castle][castle_type=kremlin];;name;int_name;1146;
1259historic|castle|manor;[historic=castle][castle_type=manor],[historic=manor];;name;int_name;1147;
1260historic|castle|palace;[historic=castle][castle_type=palace];;name;int_name;1148;
1261historic|castle|shiro;[historic=castle][castle_type=shiro];;name;int_name;1149;
1262hwtag|yescar;1150;
1263hwtag|nocar;1151;
1264tourism|gallery;1152;
1265historic|fort;1153;
1266shop|coffee;1154;
1267shop|tea;1155;
1268shop|art;1156;
1269shop|charity;1157;
1270hwtag|toll;1158;
1271amenity|arts_centre;1159;
1272amenity|biergarten;1160;
1273amenity|driving_school;[amenity=driving_school],[education=driving_school];;name;int_name;1161;
1274amenity|food_court;1162;
1275amenity|ice_cream;1163;
1276amenity|internet_cafe;1164;
1277amenity|motorcycle_parking;1165;
1278amenity|nursing_home;1166;
1279amenity|payment_terminal;1167;
1280amenity|prison;1168;
1281amenity|shower;1169;
1282amenity|water_point;1170;
1283emergency|defibrillator;1171;
1284emergency|fire_hydrant;1172;
1285highway|services;1173;
1286leisure|fitness_station;1174;
1287leisure|ice_rink;1175;
1288leisure|marina;1176;
1289shop|medical_supply;1177;
1290man_made|surveillance;1178;
1291man_made|water_tap;1179;
1292man_made|works;1180;
1293office|insurance;1181;
1294office|ngo;1182;
1295shop|chocolate;1183;
1296shop|erotic;1184;
1297shop|kitchen;1185;
1298shop|fabric;1186;
1299shop|funeral_directors;1187;
1300shop|massage;1188;
1301shop|motorcycle;1189;
1302shop|music;1190;
1303shop|musical_instrument;1191;
1304shop|newsagent;1192;
1305shop|pawnbroker;1193;
1306shop|stationery;1194;
1307shop|tattoo;1195;
1308shop|variety_store;1196;
1309shop|video;1197;
1310tourism|theme_park;1198;
1311tourism|wilderness_hut;1199;
1312shop|boutique;1200;
1313shop|lottery;1201;
1314shop|antiques;1202;
1315shop|wholesale;1203;
1316shop|perfumery;1204;
1317shop|baby_goods;1205;
1318shop|bag;1206;
1319shop|dairy;1207;
1320shop|electrical;1208;
1321shop|cheese;1209;
1322shop|money_lender;1210;
1323shop|health_food;1211;
1324shop|fishing;1212;
1325shop|grocery;1213;
1326shop|nutrition_supplements;1214;
1327shop|watches;1215;
1328shop|second_hand;1216;
1329shop|craft;1217;
1330shop|sewing;1218;
1331railway|station|subway|warszawa;[railway=station][transport=subway][city=warszawa],[railway=station][station=subway][city=warszawa];;name;int_name;1219;
1332railway|subway_entrance|warszawa;[railway=subway_entrance][city=warszawa];;name;int_name;1220;
1333shop|bed;1221;
1334shop|outpost;1222;
1335shop|gas;1223;
1336natural|desert;1224;
1337natural|water|tunnel;[natural=water][tunnel?];;name;int_name;1225;
1338place|square;1226;
1339tourism|artwork|architecture;[tourism=artwork][artwork_type=architecture],[tourism=artwork][type=architecture];;name;int_name;1227;
1340tourism|artwork|sculpture;[tourism=artwork][artwork_type=sculpture],[tourism=artwork][type=sculpture];;name;int_name;1228;
1341tourism|artwork|statue;[tourism=artwork][artwork_type=statue],[tourism=artwork][type=statue];;name;int_name;1229;
1342tourism|artwork|painting;[tourism=artwork][artwork_type=painting],[tourism=artwork][type=painting];;name;int_name;1230;
1343historic|memorial|sculpture;[historic=memorial][memorial=sculpture],[historic=memorial][memorial:type=sculpture];;name;int_name;1231;
1344historic|memorial|statue;[historic=memorial][memorial=statue],[historic=memorial][memorial:type=statue];;name;int_name;1232;
1345historic|memorial|plaque;[historic=memorial][memorial=plaque],[historic=memorial][memorial:type=plaque];;name;int_name;1233;
1346historic|castle|defensive;[historic=castle][castle_type=defensive];;name;int_name;1234;
1347historic|castle|stately;[historic=castle][castle_type=stately];;name;int_name;1235;
1348attraction|animal;1236;
1349disusedbusiness;[disused:shop?],[disused:amenity=restaurant],[disused:amenity=fast_food],[disused:amenity=cafe],[disused:amenity=pub],[disused:amenity=bar];;;;1237;
1350cuisine|regional;1238;
1351cuisine|pizza;1239;
1352cuisine|burger;1240;
1353cuisine|italian;1241;
1354cuisine|chinese;1242;
1355cuisine|coffee_shop;1243;
1356cuisine|sandwich;1244;
1357cuisine|german;1245;
1358cuisine|japanese;1246;
1359cuisine|kebab;1247;
1360cuisine|mexican;1248;
1361cuisine|indian;1249;
1362cuisine|american;1250;
1363cuisine|french;1251;
1364cuisine|ice_cream;1252;
1365cuisine|asian;1253;
1366cuisine|chicken;1254;
1367cuisine|greek;1255;
1368cuisine|thai;1256;
1369cuisine|international;1257;
1370cuisine|sushi;1258;
1371cuisine|fish_and_chips;1259;
1372cuisine|turkish;1260;
1373cuisine|seafood;1261;
1374cuisine|steak_house;1262;
1375cuisine|spanish;1263;
1376cuisine|fish;1264;
1377cuisine|vietnamese;1265;
1378cuisine|noodles;1266;
1379cuisine|vegetarian;1267;
1380cuisine|korean;1268;
1381cuisine|friture;1269;
1382cuisine|barbecue;1270;
1383cuisine|bavarian;1271;
1384cuisine|ramen;1272;
1385cuisine|italian_pizza;1273;
1386cuisine|mediterranean;1274;
1387cuisine|donut;1275;
1388cuisine|beef_bowl;1276;
1389cuisine|cake;1277;
1390cuisine|crepe;1278;
1391cuisine|heuriger;1279;
1392cuisine|lebanese;1280;
1393cuisine|local;1281;
1394cuisine|curry;1282;
1395cuisine|filipino;1283;
1396cuisine|russian;1284;
1397cuisine|breakfast;1285;
1398cuisine|tapas;1286;
1399cuisine|bagel;1287;
1400cuisine|pasta;1288;
1401cuisine|buschenschank;1289;
1402cuisine|sausage;1290;
1403cuisine|portuguese;1291;
1404cuisine|grill;1292;
1405cuisine|pancake;1293;
1406cuisine|malagasy;1294;
1407cuisine|polish;1295;
1408cuisine|diner;1296;
1409cuisine|african;1297;
1410cuisine|georgian;1298;
1411cuisine|croatian;1299;
1412cuisine|arab;1300;
1413cuisine|balkan;1301;
1414cuisine|brazilian;1302;
1415cuisine|caribbean;1303;
1416cuisine|austrian;1304;
1417cuisine|vegan;1305;
1418cuisine|argentinian;1306;
1419cuisine|persian;1307;
1420cuisine|soba;1308;
1421cuisine|malaysian;1309;
1422cuisine|indonesian;1310;
1423cuisine|ethiopian;1311;
1424cuisine|deli;1312;
1425cuisine|irish;1313;
1426cuisine|hungarian;1314;
1427cuisine|lao;1315;
1428cuisine|hotdog;1316;
1429cuisine|oriental;1317;
1430cuisine|savory_pancakes;1318;
1431cuisine|moroccan;1319;
1432cuisine|peruvian;1320;
1433cuisine|fine_dining;1321;
1434cuisine|tea;1322;
1435natural|geyser;1323;
1436cuisine|bubble_tea;1324;
1437natural|hot_spring;1325;
1438amenity|parking_space;1326;
1439amenity|parking_space|underground;[amenity=parking_space][parking=underground];;name;int_name;1327;
1440amenity|parking_space|private;[amenity=parking_space][access=private];;name;int_name;1328;
1441amenity|parking_space|permissive;[amenity=parking_space][access=permissive];;name;int_name;1329;
1442landuse|religious;1330;
1443isoline|step_1000;1331;
1444isoline|step_500;1332;
1445isoline|step_100;1333;
1446isoline|step_50;1334;
1447isoline|step_10;1335;
1448isoline|zero;1336;
1449complex_entry;[complex_entry];;name;int_name;1337;
1450recycling|batteries;[recycling:batteries=yes];;name;int_name;1338;
1451recycling|clothes;[recycling:clothes=yes];;name;int_name;1339;
1452recycling|glass_bottles;[recycling:glass_bottles=yes];;name;int_name;1340;
1453recycling|paper;[recycling:paper=yes];;name;int_name;1341;
1454recycling|plastic;[recycling:plastic=yes];;name;int_name;1342;
1455recycling|plastic_bottles;[recycling:plastic_bottles=yes];;name;int_name;1343;
1456recycling|scrap_metal;[recycling:scrap_metal=yes];;name;int_name;1344;
1457recycling|small_appliances;[recycling:small_appliances=yes];;name;int_name;1345;
1458amenity|recycling_container;[amenity=recycling][recycling_type=container],[amenity=recycling][!recycling_type];x;name;int_name;1346;amenity|recycling|container
1459hwtag|onedir_bicycle;1347;
1460shop|video_games;1348;
1461natural|strait;1349;
1462recycling|cardboard;[recycling:cardboard=yes];;name;int_name;1350;
1463recycling|cans;[recycling:cans=yes];;name;int_name;1351;
1464recycling|shoes;[recycling:shoes=yes];;name;int_name;1352;
1465recycling|green_waste;[recycling:green_waste=yes];;name;int_name;1353;
1466recycling|cartons;[recycling:cartons=yes];;name;int_name;1354;
1467amenity|parking_space|disabled;[amenity=parking_space][parking_space=disabled];;name;int_name;1355;
1468railway|station|subway|adana;[railway=station][transport=subway][city=adana],[railway=station][station=subway][city=adana];;name;int_name;1356;
1469railway|station|subway|algiers;[railway=station][transport=subway][city=algiers],[railway=station][station=subway][city=algiers];;name;int_name;1357;
1470railway|station|subway|almaty;[railway=station][transport=subway][city=almaty],[railway=station][station=subway][city=almaty];;name;int_name;1358;
1471railway|station|subway|amsterdam;[railway=station][transport=subway][city=amsterdam],[railway=station][station=subway][city=amsterdam];;name;int_name;1359;
1472railway|station|subway|ankara;[railway=station][transport=subway][city=ankara],[railway=station][station=subway][city=ankara];;name;int_name;1360;
1473railway|station|subway|athens;[railway=station][transport=subway][city=athens],[railway=station][station=subway][city=athens];;name;int_name;1361;
1474railway|station|subway|baku;[railway=station][transport=subway][city=baku],[railway=station][station=subway][city=baku];;name;int_name;1362;
1475railway|station|subway|bangkok;[railway=station][transport=subway][city=bangkok],[railway=station][station=subway][city=bangkok];;name;int_name;1363;
1476railway|station|subway|beijing;[railway=station][transport=subway][city=beijing],[railway=station][station=subway][city=beijing];;name;int_name;1364;
1477railway|station|subway|bengalore;[railway=station][transport=subway][city=bengalore],[railway=station][station=subway][city=bengalore];;name;int_name;1365;
1478railway|station|subway|brasilia;[railway=station][transport=subway][city=brasilia],[railway=station][station=subway][city=brasilia];;name;int_name;1366;
1479railway|station|subway|brescia;[railway=station][transport=subway][city=brescia],[railway=station][station=subway][city=brescia];;name;int_name;1367;
1480railway|station|subway|brussels;[railway=station][transport=subway][city=brussels],[railway=station][station=subway][city=brussels];;name;int_name;1368;
1481railway|station|subway|bucharest;[railway=station][transport=subway][city=bucharest],[railway=station][station=subway][city=bucharest];;name;int_name;1369;
1482railway|station|subway|budapest;[railway=station][transport=subway][city=budapest],[railway=station][station=subway][city=budapest];;name;int_name;1370;
1483railway|station|subway|buenos_aires;[railway=station][transport=subway][city=buenos_aires],[railway=station][station=subway][city=buenos_aires];;name;int_name;1371;
1484railway|station|subway|bursa;[railway=station][transport=subway][city=bursa],[railway=station][station=subway][city=bursa];;name;int_name;1372;
1485railway|station|subway|cairo;[railway=station][transport=subway][city=cairo],[railway=station][station=subway][city=cairo];;name;int_name;1373;
1486railway|station|subway|caracas;[railway=station][transport=subway][city=caracas],[railway=station][station=subway][city=caracas];;name;int_name;1374;
1487railway|station|subway|catania;[railway=station][transport=subway][city=catania],[railway=station][station=subway][city=catania];;name;int_name;1375;
1488railway|station|subway|changchun;[railway=station][transport=subway][city=changchun],[railway=station][station=subway][city=changchun];;name;int_name;1376;
1489railway|station|subway|chengdu;[railway=station][transport=subway][city=chengdu],[railway=station][station=subway][city=chengdu];;name;int_name;1377;
1490railway|station|subway|chicago;[railway=station][transport=subway][city=chicago],[railway=station][station=subway][city=chicago];;name;int_name;1378;
1491railway|station|subway|chongqing;[railway=station][transport=subway][city=chongqing],[railway=station][station=subway][city=chongqing];;name;int_name;1379;
1492railway|station|subway|dalian;[railway=station][transport=subway][city=dalian],[railway=station][station=subway][city=dalian];;name;int_name;1380;
1493railway|station|subway|delhi;[railway=station][transport=subway][city=delhi],[railway=station][station=subway][city=delhi];;name;int_name;1381;
1494railway|station|subway|dnepro;[railway=station][transport=subway][city=dnepro],[railway=station][station=subway][city=dnepro];;name;int_name;1382;
1495railway|station|subway|dubai;[railway=station][transport=subway][city=dubai],[railway=station][station=subway][city=dubai];;name;int_name;1383;
1496railway|station|subway|ekb;[railway=station][transport=subway][city=ekb],[railway=station][station=subway][city=ekb];;name;int_name;1384;
1497railway|station|subway|fukuoka;[railway=station][transport=subway][city=fukuoka],[railway=station][station=subway][city=fukuoka];;name;int_name;1385;
1498railway|station|subway|glasgow;[railway=station][transport=subway][city=glasgow],[railway=station][station=subway][city=glasgow];;name;int_name;1386;
1499railway|station|subway|guangzhou;[railway=station][transport=subway][city=guangzhou],[railway=station][station=subway][city=guangzhou];;name;int_name;1387;
1500railway|station|subway|hamburg;[railway=station][transport=subway][city=hamburg],[railway=station][station=subway][city=hamburg];;name;int_name;1388;
1501railway|station|subway|helsinki;[railway=station][transport=subway][city=helsinki],[railway=station][station=subway][city=helsinki];;name;int_name;1389;
1502railway|station|subway|hiroshima;[railway=station][transport=subway][city=hiroshima],[railway=station][station=subway][city=hiroshima];;name;int_name;1390;
1503railway|station|subway|isfahan;[railway=station][transport=subway][city=isfahan],[railway=station][station=subway][city=isfahan];;name;int_name;1391;
1504railway|station|subway|istanbul;[railway=station][transport=subway][city=istanbul],[railway=station][station=subway][city=istanbul];;name;int_name;1392;
1505railway|station|subway|izmir;[railway=station][transport=subway][city=izmir],[railway=station][station=subway][city=izmir];;name;int_name;1393;
1506railway|station|subway|kazan;[railway=station][transport=subway][city=kazan],[railway=station][station=subway][city=kazan];;name;int_name;1394;
1507railway|station|subway|kharkiv;[railway=station][transport=subway][city=kharkiv],[railway=station][station=subway][city=kharkiv];;name;int_name;1395;
1508railway|station|subway|kobe;[railway=station][transport=subway][city=kobe],[railway=station][station=subway][city=kobe];;name;int_name;1396;
1509railway|station|subway|kolkata;[railway=station][transport=subway][city=kolkata],[railway=station][station=subway][city=kolkata];;name;int_name;1397;
1510railway|station|subway|kunming;[railway=station][transport=subway][city=kunming],[railway=station][station=subway][city=kunming];;name;int_name;1398;
1511railway|station|subway|kyoto;[railway=station][transport=subway][city=kyoto],[railway=station][station=subway][city=kyoto];;name;int_name;1399;
1512railway|station|subway|la;[railway=station][transport=subway][city=la],[railway=station][station=subway][city=la];;name;int_name;1400;
1513railway|station|subway|lausanne;[railway=station][transport=subway][city=lausanne],[railway=station][station=subway][city=lausanne];;name;int_name;1401;
1514railway|station|subway|lille;[railway=station][transport=subway][city=lille],[railway=station][station=subway][city=lille];;name;int_name;1402;
1515railway|station|subway|lima;[railway=station][transport=subway][city=lima],[railway=station][station=subway][city=lima];;name;int_name;1403;
1516railway|station|subway|lisboa;[railway=station][transport=subway][city=lisboa],[railway=station][station=subway][city=lisboa];;name;int_name;1404;
1517railway|station|subway|bilbao;[railway=station][transport=subway][city=bilbao],[railway=station][station=subway][city=bilbao];;name;int_name;1405;
1518railway|station|subway|lyon;[railway=station][transport=subway][city=lyon],[railway=station][station=subway][city=lyon];;name;int_name;1406;
1519railway|station|subway|malaga;[railway=station][transport=subway][city=malaga],[railway=station][station=subway][city=malaga];;name;int_name;1407;
1520railway|station|subway|manila;[railway=station][transport=subway][city=manila],[railway=station][station=subway][city=manila];;name;int_name;1408;
1521railway|station|subway|maracaibo;[railway=station][transport=subway][city=maracaibo],[railway=station][station=subway][city=maracaibo];;name;int_name;1409;
1522railway|station|subway|mashhad;[railway=station][transport=subway][city=mashhad],[railway=station][station=subway][city=mashhad];;name;int_name;1410;
1523railway|station|subway|mecca;[railway=station][transport=subway][city=mecca],[railway=station][station=subway][city=mecca];;name;int_name;1411;
1524railway|station|subway|medellin;[railway=station][transport=subway][city=medellin],[railway=station][station=subway][city=medellin];;name;int_name;1412;
1525railway|station|subway|mexico;[railway=station][transport=subway][city=mexico],[railway=station][station=subway][city=mexico];;name;int_name;1413;
1526railway|station|subway|milan;[railway=station][transport=subway][city=milan],[railway=station][station=subway][city=milan];;name;int_name;1414;
1527railway|station|subway|montreal;[railway=station][transport=subway][city=montreal],[railway=station][station=subway][city=montreal];;name;int_name;1415;
1528railway|station|subway|munchen;[railway=station][transport=subway][city=munchen],[railway=station][station=subway][city=munchen];;name;int_name;1416;
1529railway|station|subway|nagoya;[railway=station][transport=subway][city=nagoya],[railway=station][station=subway][city=nagoya];;name;int_name;1417;
1530railway|station|subway|nnov;[railway=station][transport=subway][city=nnov],[railway=station][station=subway][city=nnov];;name;int_name;1418;
1531railway|station|subway|novosibirsk;[railway=station][transport=subway][city=novosibirsk],[railway=station][station=subway][city=novosibirsk];;name;int_name;1419;
1532railway|station|subway|osaka;[railway=station][transport=subway][city=osaka],[railway=station][station=subway][city=osaka];;name;int_name;1420;
1533railway|station|subway|oslo;[railway=station][transport=subway][city=oslo],[railway=station][station=subway][city=oslo];;name;int_name;1421;
1534railway|station|subway|palma;[railway=station][transport=subway][city=palma],[railway=station][station=subway][city=palma];;name;int_name;1422;
1535railway|station|subway|panama;[railway=station][transport=subway][city=panama],[railway=station][station=subway][city=panama];;name;int_name;1423;
1536railway|station|subway|philadelphia;[railway=station][transport=subway][city=philadelphia],[railway=station][station=subway][city=philadelphia];;name;int_name;1424;
1537railway|station|subway|pyongyang;[railway=station][transport=subway][city=pyongyang],[railway=station][station=subway][city=pyongyang];;name;int_name;1425;
1538railway|station|subway|rennes;[railway=station][transport=subway][city=rennes],[railway=station][station=subway][city=rennes];;name;int_name;1426;
1539railway|station|subway|rio;[railway=station][transport=subway][city=rio],[railway=station][station=subway][city=rio];;name;int_name;1427;
1540railway|station|subway|rotterdam;[railway=station][transport=subway][city=rotterdam],[railway=station][station=subway][city=rotterdam];;name;int_name;1428;
1541railway|station|subway|samara;[railway=station][transport=subway][city=samara],[railway=station][station=subway][city=samara];;name;int_name;1429;
1542railway|station|subway|santiago;[railway=station][transport=subway][city=santiago],[railway=station][station=subway][city=santiago];;name;int_name;1430;
1543railway|station|subway|santo_domingo;[railway=station][transport=subway][city=santo_domingo],[railway=station][station=subway][city=santo_domingo];;name;int_name;1431;
1544railway|station|subway|saopaulo;[railway=station][transport=subway][city=saopaulo],[railway=station][station=subway][city=saopaulo];;name;int_name;1432;
1545railway|station|subway|sapporo;[railway=station][transport=subway][city=sapporo],[railway=station][station=subway][city=sapporo];;name;int_name;1433;
1546railway|station|subway|sendai;[railway=station][transport=subway][city=sendai],[railway=station][station=subway][city=sendai];;name;int_name;1434;
1547railway|station|subway|sf;[railway=station][transport=subway][city=sf],[railway=station][station=subway][city=sf];;name;int_name;1435;
1548railway|station|subway|shanghai;[railway=station][transport=subway][city=shanghai],[railway=station][station=subway][city=shanghai];;name;int_name;1436;
1549railway|station|subway|shiraz;[railway=station][transport=subway][city=shiraz],[railway=station][station=subway][city=shiraz];;name;int_name;1437;
1550railway|station|subway|sofia;[railway=station][transport=subway][city=sofia],[railway=station][station=subway][city=sofia];;name;int_name;1438;
1551railway|station|subway|stockholm;[railway=station][transport=subway][city=stockholm],[railway=station][station=subway][city=stockholm];;name;int_name;1439;
1552railway|station|subway|tabriz;[railway=station][transport=subway][city=tabriz],[railway=station][station=subway][city=tabriz];;name;int_name;1440;
1553railway|station|subway|taipei;[railway=station][transport=subway][city=taipei],[railway=station][station=subway][city=taipei];;name;int_name;1441;
1554railway|station|subway|taoyuan;[railway=station][transport=subway][city=taoyuan],[railway=station][station=subway][city=taoyuan];;name;int_name;1442;
1555railway|station|subway|tashkent;[railway=station][transport=subway][city=tashkent],[railway=station][station=subway][city=tashkent];;name;int_name;1443;
1556railway|station|subway|tbilisi;[railway=station][transport=subway][city=tbilisi],[railway=station][station=subway][city=tbilisi];;name;int_name;1444;
1557railway|station|subway|tianjin;[railway=station][transport=subway][city=tianjin],[railway=station][station=subway][city=tianjin];;name;int_name;1445;
1558railway|station|subway|tokyo;[railway=station][transport=subway][city=tokyo],[railway=station][station=subway][city=tokyo];;name;int_name;1446;
1559railway|station|subway|valencia;[railway=station][transport=subway][city=valencia],[railway=station][station=subway][city=valencia];;name;int_name;1447;
1560railway|station|subway|vienna;[railway=station][transport=subway][city=vienna],[railway=station][station=subway][city=vienna];;name;int_name;1448;
1561railway|station|subway|washington;[railway=station][transport=subway][city=washington],[railway=station][station=subway][city=washington];;name;int_name;1449;
1562railway|station|subway|wuhan;[railway=station][transport=subway][city=wuhan],[railway=station][station=subway][city=wuhan];;name;int_name;1450;
1563railway|station|subway|yerevan;[railway=station][transport=subway][city=yerevan],[railway=station][station=subway][city=yerevan];;name;int_name;1451;
1564railway|station|subway|yokohama;[railway=station][transport=subway][city=yokohama],[railway=station][station=subway][city=yokohama];;name;int_name;1452;
1565railway|subway_entrance|adana;[railway=subway_entrance][city=adana];;name;int_name;1453;
1566railway|subway_entrance|algiers;[railway=subway_entrance][city=algiers];;name;int_name;1454;
1567railway|subway_entrance|almaty;[railway=subway_entrance][city=almaty];;name;int_name;1455;
1568railway|subway_entrance|amsterdam;[railway=subway_entrance][city=amsterdam];;name;int_name;1456;
1569railway|subway_entrance|ankara;[railway=subway_entrance][city=ankara];;name;int_name;1457;
1570railway|subway_entrance|athens;[railway=subway_entrance][city=athens];;name;int_name;1458;
1571railway|subway_entrance|baku;[railway=subway_entrance][city=baku];;name;int_name;1459;
1572railway|subway_entrance|bangkok;[railway=subway_entrance][city=bangkok];;name;int_name;1460;
1573railway|subway_entrance|beijing;[railway=subway_entrance][city=beijing];;name;int_name;1461;
1574railway|subway_entrance|bengalore;[railway=subway_entrance][city=bengalore];;name;int_name;1462;
1575railway|subway_entrance|brasilia;[railway=subway_entrance][city=brasilia];;name;int_name;1463;
1576railway|subway_entrance|brescia;[railway=subway_entrance][city=brescia];;name;int_name;1464;
1577railway|subway_entrance|brussels;[railway=subway_entrance][city=brussels];;name;int_name;1465;
1578railway|subway_entrance|bucharest;[railway=subway_entrance][city=bucharest];;name;int_name;1466;
1579railway|subway_entrance|budapest;[railway=subway_entrance][city=budapest];;name;int_name;1467;
1580railway|subway_entrance|buenos_aires;[railway=subway_entrance][city=buenos_aires];;name;int_name;1468;
1581railway|subway_entrance|bursa;[railway=subway_entrance][city=bursa];;name;int_name;1469;
1582railway|subway_entrance|cairo;[railway=subway_entrance][city=cairo];;name;int_name;1470;
1583railway|subway_entrance|caracas;[railway=subway_entrance][city=caracas];;name;int_name;1471;
1584railway|subway_entrance|catania;[railway=subway_entrance][city=catania];;name;int_name;1472;
1585railway|subway_entrance|changchun;[railway=subway_entrance][city=changchun];;name;int_name;1473;
1586railway|subway_entrance|chengdu;[railway=subway_entrance][city=chengdu];;name;int_name;1474;
1587railway|subway_entrance|chicago;[railway=subway_entrance][city=chicago];;name;int_name;1475;
1588railway|subway_entrance|chongqing;[railway=subway_entrance][city=chongqing];;name;int_name;1476;
1589railway|subway_entrance|dalian;[railway=subway_entrance][city=dalian];;name;int_name;1477;
1590railway|subway_entrance|delhi;[railway=subway_entrance][city=delhi];;name;int_name;1478;
1591railway|subway_entrance|dnepro;[railway=subway_entrance][city=dnepro];;name;int_name;1479;
1592railway|subway_entrance|dubai;[railway=subway_entrance][city=dubai];;name;int_name;1480;
1593railway|subway_entrance|ekb;[railway=subway_entrance][city=ekb];;name;int_name;1481;
1594railway|subway_entrance|fukuoka;[railway=subway_entrance][city=fukuoka];;name;int_name;1482;
1595railway|subway_entrance|glasgow;[railway=subway_entrance][city=glasgow];;name;int_name;1483;
1596railway|subway_entrance|guangzhou;[railway=subway_entrance][city=guangzhou];;name;int_name;1484;
1597railway|subway_entrance|hamburg;[railway=subway_entrance][city=hamburg];;name;int_name;1485;
1598railway|subway_entrance|helsinki;[railway=subway_entrance][city=helsinki];;name;int_name;1486;
1599railway|subway_entrance|hiroshima;[railway=subway_entrance][city=hiroshima];;name;int_name;1487;
1600railway|subway_entrance|isfahan;[railway=subway_entrance][city=isfahan];;name;int_name;1488;
1601railway|subway_entrance|istanbul;[railway=subway_entrance][city=istanbul];;name;int_name;1489;
1602railway|subway_entrance|izmir;[railway=subway_entrance][city=izmir];;name;int_name;1490;
1603railway|subway_entrance|kazan;[railway=subway_entrance][city=kazan];;name;int_name;1491;
1604railway|subway_entrance|kharkiv;[railway=subway_entrance][city=kharkiv];;name;int_name;1492;
1605railway|subway_entrance|kobe;[railway=subway_entrance][city=kobe];;name;int_name;1493;
1606railway|subway_entrance|kolkata;[railway=subway_entrance][city=kolkata];;name;int_name;1494;
1607railway|subway_entrance|kunming;[railway=subway_entrance][city=kunming];;name;int_name;1495;
1608railway|subway_entrance|kyoto;[railway=subway_entrance][city=kyoto];;name;int_name;1496;
1609railway|subway_entrance|la;[railway=subway_entrance][city=la];;name;int_name;1497;
1610railway|subway_entrance|lausanne;[railway=subway_entrance][city=lausanne];;name;int_name;1498;
1611railway|subway_entrance|lille;[railway=subway_entrance][city=lille];;name;int_name;1499;
1612railway|subway_entrance|lima;[railway=subway_entrance][city=lima];;name;int_name;1500;
1613railway|subway_entrance|lisboa;[railway=subway_entrance][city=lisboa];;name;int_name;1501;
1614railway|subway_entrance|tehran;[railway=subway_entrance][city=tehran];;name;int_name;1502;
1615railway|subway_entrance|lyon;[railway=subway_entrance][city=lyon];;name;int_name;1503;
1616railway|subway_entrance|malaga;[railway=subway_entrance][city=malaga];;name;int_name;1504;
1617railway|subway_entrance|manila;[railway=subway_entrance][city=manila];;name;int_name;1505;
1618railway|subway_entrance|maracaibo;[railway=subway_entrance][city=maracaibo];;name;int_name;1506;
1619railway|subway_entrance|mashhad;[railway=subway_entrance][city=mashhad];;name;int_name;1507;
1620railway|subway_entrance|mecca;[railway=subway_entrance][city=mecca];;name;int_name;1508;
1621railway|subway_entrance|medellin;[railway=subway_entrance][city=medellin];;name;int_name;1509;
1622railway|subway_entrance|mexico;[railway=subway_entrance][city=mexico];;name;int_name;1510;
1623railway|subway_entrance|milan;[railway=subway_entrance][city=milan];;name;int_name;1511;
1624railway|subway_entrance|montreal;[railway=subway_entrance][city=montreal];;name;int_name;1512;
1625railway|subway_entrance|munchen;[railway=subway_entrance][city=munchen];;name;int_name;1513;
1626railway|subway_entrance|nagoya;[railway=subway_entrance][city=nagoya];;name;int_name;1514;
1627railway|subway_entrance|nnov;[railway=subway_entrance][city=nnov];;name;int_name;1515;
1628railway|subway_entrance|novosibirsk;[railway=subway_entrance][city=novosibirsk];;name;int_name;1516;
1629railway|subway_entrance|osaka;[railway=subway_entrance][city=osaka];;name;int_name;1517;
1630railway|subway_entrance|oslo;[railway=subway_entrance][city=oslo];;name;int_name;1518;
1631railway|subway_entrance|palma;[railway=subway_entrance][city=palma];;name;int_name;1519;
1632railway|subway_entrance|panama;[railway=subway_entrance][city=panama];;name;int_name;1520;
1633railway|subway_entrance|philadelphia;[railway=subway_entrance][city=philadelphia];;name;int_name;1521;
1634railway|subway_entrance|pyongyang;[railway=subway_entrance][city=pyongyang];;name;int_name;1522;
1635railway|subway_entrance|rennes;[railway=subway_entrance][city=rennes];;name;int_name;1523;
1636railway|subway_entrance|rio;[railway=subway_entrance][city=rio];;name;int_name;1524;
1637railway|subway_entrance|rotterdam;[railway=subway_entrance][city=rotterdam];;name;int_name;1525;
1638railway|subway_entrance|samara;[railway=subway_entrance][city=samara];;name;int_name;1526;
1639railway|subway_entrance|santiago;[railway=subway_entrance][city=santiago];;name;int_name;1527;
1640railway|subway_entrance|santo_domingo;[railway=subway_entrance][city=santo_domingo];;name;int_name;1528;
1641railway|subway_entrance|saopaulo;[railway=subway_entrance][city=saopaulo];;name;int_name;1529;
1642railway|subway_entrance|sapporo;[railway=subway_entrance][city=sapporo];;name;int_name;1530;
1643railway|subway_entrance|sendai;[railway=subway_entrance][city=sendai];;name;int_name;1531;
1644railway|subway_entrance|sf;[railway=subway_entrance][city=sf];;name;int_name;1532;
1645railway|subway_entrance|shanghai;[railway=subway_entrance][city=shanghai];;name;int_name;1533;
1646railway|subway_entrance|shiraz;[railway=subway_entrance][city=shiraz];;name;int_name;1534;
1647railway|subway_entrance|sofia;[railway=subway_entrance][city=sofia];;name;int_name;1535;
1648railway|subway_entrance|stockholm;[railway=subway_entrance][city=stockholm];;name;int_name;1536;
1649railway|subway_entrance|tabriz;[railway=subway_entrance][city=tabriz];;name;int_name;1537;
1650railway|subway_entrance|taipei;[railway=subway_entrance][city=taipei];;name;int_name;1538;
1651railway|subway_entrance|taoyuan;[railway=subway_entrance][city=taoyuan];;name;int_name;1539;
1652railway|subway_entrance|tashkent;[railway=subway_entrance][city=tashkent];;name;int_name;1540;
1653railway|subway_entrance|tbilisi;[railway=subway_entrance][city=tbilisi];;name;int_name;1541;
1654railway|subway_entrance|tianjin;[railway=subway_entrance][city=tianjin];;name;int_name;1542;
1655railway|subway_entrance|tokyo;[railway=subway_entrance][city=tokyo];;name;int_name;1543;
1656railway|subway_entrance|valencia;[railway=subway_entrance][city=valencia];;name;int_name;1544;
1657railway|subway_entrance|vienna;[railway=subway_entrance][city=vienna];;name;int_name;1545;
1658railway|subway_entrance|washington;[railway=subway_entrance][city=washington];;name;int_name;1546;
1659railway|subway_entrance|wuhan;[railway=subway_entrance][city=wuhan];;name;int_name;1547;
1660railway|subway_entrance|yerevan;[railway=subway_entrance][city=yerevan];;name;int_name;1548;
1661railway|subway_entrance|yokohama;[railway=subway_entrance][city=yokohama];;name;int_name;1549;
1662railway|subway_entrance|bilbao;[railway=subway_entrance][city=bilbao];;name;int_name;1550;
1663craft|key_cutter;1551;
1664craft|locksmith;1552;
1665shop|carpet;1553;
1666shop|motorcycle_repair;1554;
1667shop|pet_grooming;1555;
1668shop|hifi;1556;
1669shop|bathroom_furnishing;1557;
1670shop|curtain;1558;
1671shop|fashion_accessories;1559;
1672shop|cannabis;1560;
1673shop|herbalist;1561;
1674shop|camera;1562;
1675shop|auction;1563;
1676shop|collector;1564;
1677railway|station|subway|tehran;[railway=station][transport=subway][city=tehran],[railway=station][station=subway][city=tehran];;name;int_name;1565;
1678amenity|stripclub;1566;
1679tourism|aquarium;1567;
1680emergency|assembly_point;1568;
1681amenity|gambling;1569;
1682leisure|adult_gaming_centre;1570;
1683leisure|amusement_arcade;1571;
1684amenity|place_of_worship|christian|mormon;[amenity=place_of_worship][religion=christian][denomination=mormon];;name;int_name;1572;
1685amenity|public_bath;1573;
1686amenity|vehicle_inspection;1574;
1687historic|cannon;1575;
1688historic|anchor;1576;
1689historic|stone;1577;
1690historic|aircraft;1578;
1691historic|tank;1579;
1692historic|mine;1580;
1693historic|wreck;1581;
1694historic|locomotive;1582;
1695craft|caterer;1583;
1696craft|grinding_mill;1584;
1697leisure|outdoor_seating;1585;
1698railway|station|light_rail|london;[railway=station][station=light_rail][city=london];;name;int_name;1586;
1699railway|station|light_rail|porto;[railway=station][station=light_rail][city=porto];;name;int_name;1587;
1700amenity|place_of_worship|christian|jehovahs_witness;[amenity=place_of_worship][religion=christian][denomination=jehovahs_witness];;name;int_name;1588;
1701amenity|parking|underground|private;[amenity=parking][location=underground][access=private],[amenity=parking][parking=underground][access=private];;name;int_name;1589;
1702amenity|parking|street_side|private;[amenity=parking][parking=street_side][access=private];;name;int_name;1590;
1703amenity|parking|lane|private;[amenity=parking][parking=lane][access=private];;name;int_name;1591;
1704amenity|compressed_air;1592;
1705leisure|hackerspace;1593;
1706railway|station|subway|singapore;[railway=station][transport=subway][city=singapore],[railway=station][station=subway][city=singapore];;name;int_name;1594;
1707railway|subway_entrance|singapore;[railway=subway_entrance][city=singapore];;name;int_name;1595;
1708railway|station|subway|boston;[railway=station][transport=subway][city=boston],[railway=station][station=subway][city=boston];;name;int_name;1596;
1709railway|subway_entrance|boston;[railway=subway_entrance][city=boston];;name;int_name;1597;
1710leisure|miniature_golf;1598;
1711amenity|social_facility;1599;
1712craft;[craft?];;name;int_name;1600;
1713emergency|emergency_ward_entrance;1601;
1714amenity|dojo;1602;
1715leisure|sports_hall;1603;
1716man_made|water_tap|drinking_water_no;[man_made=water_tap][drinking_water=not],[man_made=water_tap][drinking_water=no],[man_made=water_tap][drinking_water:legal=not],[man_made=water_tap][drinking_water:legal=no];;;;1604;
1717man_made|water_well|drinking_water_no;[man_made=water_well][drinking_water=not],[man_made=water_well][drinking_water=no],[man_made=water_well][drinking_water:legal=not],[man_made=water_well][drinking_water:legal=no];;;;1605;
1718natural|spring|drinking_water_no;[natural=spring][drinking_water=not],[natural=spring][drinking_water=no];;;;1606;
1719amenity|water_point|drinking_water_no;[amenity=water_point][drinking_water=not],[amenity=water_point][drinking_water=no];;;;1607;
1720shop|pasta;1608;
1721attraction|water_slide;1609;
1722attraction|amusement_ride;1610;
1723attraction|carousel;1611;
1724attraction|roller_coaster;1612;
1725attraction|maze;1613;
1726attraction|historic;1614;
1727attraction|big_wheel;1615;
1728attraction|bumper_car;1616;
1729railway|station|subway|hongkong;[railway=station][transport=subway][city=hongkong],[railway=station][station=subway][city=hongkong];;name;int_name;1617;
1730railway|subway_entrance|hongkong;[railway=subway_entrance][city=hongkong];;name;int_name;1618;
1731railway|station|light_rail|berlin;[railway=station][station=light_rail][city=berlin],[railway=halt][station=light_rail][city=berlin];;name;int_name;1619;
1732railway|station|subway|shenzhen;[railway=station][transport=subway][city=shenzhen],[railway=station][station=subway][city=shenzhen];;name;int_name;1620;
1733railway|subway_entrance|shenzhen;[railway=subway_entrance][city=shenzhen];;name;int_name;1621;
1734shop|hearing_aids;1622;
1735railway|station|subway|qingdao;[railway=station][transport=subway][city=qingdao],[railway=station][station=subway][city=qingdao];;name;int_name;1623;
1736railway|subway_entrance|qingdao;[railway=subway_entrance][city=qingdao];;name;int_name;1624;
1737amenity|bicycle_parking|covered;[amenity=bicycle_parking][covered=yes];;;;1625;
1738post_office|post_partner;1626;
1739amenity|ranger_station;1627;
1740leisure|escape_game;1628;
1741amenity|luggage_locker;1629;
1742building|guardhouse;[building=guardhouse],[amenity=security_booth],[amenity=checkpoint];;;;1630;
1743office|security;1631;
1744shop|lighting;1632;