organicmaps/data/mapcss-mapping.csv
Konstantin Pastbin e49e836f42 [classif] Add man_made=utility_pole
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-02-25 21:48:40 +03:00

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