-
Notifications
You must be signed in to change notification settings - Fork 3
/
taginfo.json
3600 lines (3600 loc) · 344 KB
/
taginfo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"data_format": 1,
"data_url": "https://raw.githubusercontent.com/SomeoneElseOSM/SomeoneElse-style/master/taginfo.json",
"data_updated": "20241105T112600Z",
"project": {
"name": "SomeoneElse: Rural pedestrian CartoCSS maps",
"description": "This map style is designed for England and Wales-based rural pedestrians. It shows public rights of way and long distance paths.",
"project_url": "https://github.com/SomeoneElseOSM/SomeoneElse-style",
"contact_name": "Andy Townsend",
"contact_email": "[email protected]"
},
"tags": [
{ "key": "LPG", "description": "Detect non-standard tagging of LPG fuel stations" },
{ "key": "LPG", "value": "yes", "description": "Detect non-standard tagging of LPG fuel stations" },
{ "key": "abandoned", "description": "Obscure tagging used to say if a canal has been abandoned" },
{ "key": "abandoned", "value": "waterway=canal", "description": "Obscure tagging used to say if a canal has been abandoned" },
{ "key": "abandoned:amenity", "description": "Obscure tagging used for former pubs and telephones" },
{ "key": "abandoned:amenity", "value": "pub", "description": "Obscure tagging used for former pubs" },
{ "key": "abandoned:amenity", "value": "telephone", "description": "Obscure tagging used for former telephones" },
{ "key": "abandoned:railway", "description": "Detect former railway stations" },
{ "key": "abandoned:railway", "value": "station", "description": "Show former railway stations as historic items" },
{ "key": "abandoned:waterway", "description": "Former canals" },
{ "key": "abandoned:waterway", "value": "canal", "description": "Former canals" },
{ "key": "access", "description": "Many access values and tag combinations handled - for example 'no' on some amenities suppresses the amenity" },
{ "key": "access", "value": "agricultural", "description": "Treated the same as 'no'" },
{ "key": "access", "value": "customers", "description": "Treated the same as 'destination'" },
{ "key": "access", "value": "delivery", "description": "Treated the same as 'no'" },
{ "key": "access", "value": "designated", "description": "Removed when considering access rules" },
{ "key": "access", "value": "destination", "description": "Shown with a coloured overlay" },
{ "key": "access", "value": "forestry", "description": "Treated the same as 'no'" },
{ "key": "access", "value": "military", "description": "Treated the same as 'no'" },
{ "key": "access", "value": "no", "description": "Shown with a coloured overlay" },
{ "key": "access", "value": "permissive", "description": "Ignore on car parking" },
{ "key": "access", "value": "permit", "description": "Treated the same as 'no'" },
{ "key": "access", "value": "private", "description": "Treated the same as 'no'" },
{ "key": "access:bicycle", "description": "Obscure synonym for bicycle" },
{ "key": "access:bicycle", "value": "yes", "description": "Obscure synonym for bicycle" },
{ "key": "access:covid19", "description": "Detects pubs closed due to covid" },
{ "key": "access:covid19", "value": "no", "description": "Detects pubs closed due to covid" },
{ "key": "access:foot", "description": "Obscure synonym for foot" },
{ "key": "access:foot", "value": "yes", "description": "Obscure synonym for foot" },
{ "key": "access:horse", "description": "Obscure synonym for horse" },
{ "key": "access:horse", "value": "yes", "description": "Obscure synonym for horse" },
{ "key": "accommodation", "description": "Causes 'roof' over pubs with accommodation" },
{ "key": "accomodation", "description": "Misspelling of accommodation" },
{ "key": "addr:housename", "description": "Displayed if present" },
{ "key": "addr:housenumber", "description": "Appended to addr:unit, if set" },
{ "key": "addr:interpolation", "description": "Address interpolation" },
{ "key": "addr:unit", "description": "Appended to addr:housenumber, if set" },
{ "key": "admin_level", "description": "Administrative level on admin boundaries - shown on admin overlay" },
{ "key": "admin_ref", "description": "Indicates an unsigned ref" },
{ "key": "admin:ref", "description": "Indicates an unsigned ref" },
{ "key": "advertising", "description": "Advertising columns" },
{ "key": "advertising", "value": "column", "description": "Advertising columns" },
{ "key": "aerialway", "description": "Different sorts of aerialways" },
{ "key": "aerialway", "value": "cable_car", "description": "Different sorts of aerialways" },
{ "key": "aerialway", "value": "chair_lift", "description": "Different sorts of aerialways" },
{ "key": "aerialway", "value": "drag_lift", "description": "Different sorts of aerialways" },
{ "key": "aerialway", "value": "gondola", "description": "Different sorts of aerialways" },
{ "key": "aerialway", "value": "goods", "description": "Different sorts of aerialways" },
{ "key": "aerialway", "value": "j-bar", "description": "Different sorts of aerialways" },
{ "key": "aerialway", "value": "platter", "description": "Different sorts of aerialways" },
{ "key": "aerialway", "value": "rope_tow", "description": "Different sorts of aerialways" },
{ "key": "aerialway", "value": "station", "description": "Aerialway stations" },
{ "key": "aerialway", "value": "t-bar", "description": "Different sorts of aerialways" },
{ "key": "aerodrome:type", "description": "Non-military aerodromes may be large airports depending on other tags" },
{ "key": "aerodrome:type", "value": "military", "description": "Military aerodromes are not shown as large airports" },
{ "key": "aeroway", "description": "Many aeroway features rendered. Also used to detect and not render non-historic beacons" },
{ "key": "aeroway", "value": "aerodrome", "description": "Aerodromes: depending on other tags (iata etc.) shown as large or small" },
{ "key": "aeroway", "value": "apron", "description": "Runway aprons: depending on other tags (surface etc.) shown as normal or grass" },
{ "key": "aeroway", "value": "control_tower", "description": "Synonym for tower:type=aircraft_control" },
{ "key": "aeroway", "value": "fuel", "description": "Show as amenity=fuel" },
{ "key": "aeroway", "value": "gate", "description": "Aircraft parking gates" },
{ "key": "aeroway", "value": "helipad", "description": "Helipads" },
{ "key": "aeroway", "value": "heliport", "description": "Shown in the same way as aerodromes" },
{ "key": "aeroway", "value": "parking_position", "description": "Synonym for aeroway=gate" },
{ "key": "aeroway", "value": "runway", "description": "Runways: depending on other tags (surface etc.) shown as normal or grass" },
{ "key": "aeroway", "value": "taxiway", "description": "Aerodrome taxiways" },
{ "key": "aeroway", "value": "terminal", "description": "Special rendering for airport terminals" },
{ "key": "aeroway", "value": "windsock", "description": "Show windsocks in orange" },
{ "key": "agrarian", "description": "Used to distinguish agricultural machinery and feed shops" },
{ "key": "agrarian", "value": "agricultural_machinery", "description": "Agricultural machinery shops" },
{ "key": "agrarian", "value": "agricultural_machinery;feed", "description": "Agricultural machinery shops" },
{ "key": "agrarian", "value": "agricultural_machinery;machine_parts", "description": "Agricultural machinery shops" },
{ "key": "agrarian", "value": "agricultural_machinery;machine_parts;tools", "description": "Agricultural machinery shops" },
{ "key": "agrarian", "value": "agricultural_machinery;machine_parts;tools;signs", "description": "Agricultural machinery shops" },
{ "key": "agrarian", "value": "agricultural_machinery;seed", "description": "Agricultural machinery shops" },
{ "key": "agrarian", "value": "feed", "description": "Feed shops" },
{ "key": "agrarian", "value": "feed;fertilizer;seed;pesticide", "description": "Feed shops" },
{ "key": "agrarian", "value": "feed;pesticide;seed", "description": "Feed shops" },
{ "key": "agrarian", "value": "feed;seed", "description": "Feed shops" },
{ "key": "agrarian", "value": "feed;tools", "description": "Feed shops" },
{ "key": "agrarian", "value": "feed;tools;fuel;firewood", "description": "Feed shops" },
{ "key": "agrarian", "value": "machine_parts;agricultural_machinery", "description": "Agricultural machinery shops" },
{ "key": "agrarian", "value": "machine_parts;agricultural_machinery;tools", "description": "Agricultural machinery shops" },
{ "key": "agrarian", "value": "yes", "description": "Feed shops" },
{ "key": "aircraft:model", "description": "If set can be used as name of historic aircraft" },
{ "key": "airmark", "description": "Used to detect and not render non-historic beacons" },
{ "key": "amenity", "description": "All common amenities rendered. Also used to detect that some rare features such as windmills aren't now something else. Some non-public e.g. cafes not shown" },
{ "key": "amenity", "value": "accountants", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "advice", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "advice_service", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "ambulance_station", "description": "Shown with icon" },
{ "key": "amenity", "value": "amusement", "description": "Rendered as gambling shop" },
{ "key": "amenity", "value": "amusements", "description": "Rendered as gambling shop" },
{ "key": "amenity", "value": "animal_boarding", "description": "Rendered as animal shop, name incorporates brand" },
{ "key": "amenity", "value": "animal_shelter", "description": "Rendered as animal shop, name incorporates brand" },
{ "key": "amenity", "value": "archive", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "art_gallery", "description": "Shown as nonspecific shop" },
{ "key": "amenity", "value": "arts_centre", "description": "Shown as leisure=nonspecific; if tagged on a museum of gallery, remove tag" },
{ "key": "amenity", "value": "atm", "description": "ATMs: If in an old phone box, display as such" },
{ "key": "amenity", "value": "bank", "description": "Banks: Underline shows wheelchair tags" },
{ "key": "amenity", "value": "bar", "description": "Bars: Undeline shows wheelchair tags, roof shows accommodation available" },
{ "key": "amenity", "value": "bar;restaurant", "description": "Synonym for bar" },
{ "key": "amenity", "value": "bbq", "description": "Shown as 'BBQ'" },
{ "key": "amenity", "value": "beer_garden", "description": "Beer gardens themselves shown as garden, pubs with a beer garden shown with a green underline to the right" },
{ "key": "amenity", "value": "bench", "description": "Non-standing benches are shown as benches" },
{ "key": "amenity", "value": "betting", "description": "Rendered as gambling shop" },
{ "key": "amenity", "value": "bicycle_parking", "description": "Rendered with icon" },
{ "key": "amenity", "value": "bicycle_parking;bicycle_rental", "description": "Rendered as bicycle_rental with icon" },
{ "key": "amenity", "value": "bicycle_rental", "description": "Rendered with icon, name incorporates brand" },
{ "key": "amenity", "value": "bicycle_repair_station", "description": "Public bike pumps: If in an old phone box, display as such" },
{ "key": "amenity", "value": "biergarten", "description": "Shown as green. If named, shown with biergarten icon; if not, without." },
{ "key": "amenity", "value": "bingo", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "bird_hide", "description": "Leisure amenities shown in green" },
{ "key": "amenity", "value": "boat_rental", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "brothel", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "building_society", "description": "Synonym for bank" },
{ "key": "amenity", "value": "bureau_de_change", "description": "Rendered as nonspecific shop" },
{ "key": "amenity", "value": "bus_depot", "description": "Synonym for indstrial landuse" },
{ "key": "amenity", "value": "bus_station", "description": "Shown as blue bus station" },
{ "key": "amenity", "value": "bus_stand", "description": "Shown as disused bus stop" },
{ "key": "amenity", "value": "bus_stop", "description": "Shown as blue bus stop" },
{ "key": "amenity", "value": "cafe", "description": "Cafes: Undeline shows wheelchair tags, roof shows accommodation available" },
{ "key": "amenity", "value": "car_boot_sale", "description": "Synonym for meadow" },
{ "key": "amenity", "value": "car_rental", "description": "Synonym for shop=car_rental" },
{ "key": "amenity", "value": "car_rental;bicycle_rental", "description": "Synonym for shop=car_rental" },
{ "key": "amenity", "value": "car_sharing", "description": "Shown as car share space" },
{ "key": "amenity", "value": "car_wash", "description": "Shown as car wash" },
{ "key": "amenity", "value": "care_home", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "casino", "description": "Rendered as gambling shop" },
{ "key": "amenity", "value": "cattery", "description": "Rendered as animal shop, name incorporates brand" },
{ "key": "amenity", "value": "charging_station", "description": "Rendered with icon, name incorporates brand" },
{ "key": "amenity", "value": "childcare", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "childrens_centre", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "chiropodist", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "chiropractor", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "church_hall", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "cinema", "description": "Shown as cinema" },
{ "key": "amenity", "value": "clinic", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "clock", "description": "Rendered with icon that varies by type; also used to detect clock towers" },
{ "key": "amenity", "value": "closed_pub", "description": "Synonym for lifecycle tag on pubs" },
{ "key": "amenity", "value": "club", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "club_house", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "clubhouse", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "coast_guard", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "college", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "common", "description": "Obscure synonym for leisure=common" },
{ "key": "amenity", "value": "community_centre", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "community_hall", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "compressed_air", "description": "Shown in car/shop purple" },
{ "key": "amenity", "value": "concert_hall", "description": "Shown as musical location" },
{ "key": "amenity", "value": "conference_centre", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "convent", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "cooking_school", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "courier", "description": "Shown as nonspecific shop" },
{ "key": "amenity", "value": "courthouse", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "coworking_space", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "credit_union", "description": "Synonym for bank" },
{ "key": "amenity", "value": "crematorium", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "dancing_school", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "daycare", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "dead_pub", "description": "Synonym for lifecycle tag on pubs" },
{ "key": "amenity", "value": "delivery_office", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "dentist", "description": "Shown as dentist" },
{ "key": "amenity", "value": "depot", "description": "Synonym for indstrial landuse" },
{ "key": "amenity", "value": "dish_washing", "description": "Shown as drinking or nondrinking water" },
{ "key": "amenity", "value": "disused_pub", "description": "Synonym for lifecycle tag on pubs" },
{ "key": "amenity", "value": "doctors", "description": "Shown as doctors" },
{ "key": "amenity", "value": "doctors; pharmacy", "description": "Synonym for doctors" },
{ "key": "amenity", "value": "dog_grooming", "description": "Rendered as animal shop" },
{ "key": "amenity", "value": "dojo", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "drinking_water", "description": "Shown with appropriate icon" },
{ "key": "amenity", "value": "driving_school", "description": "Shown as nonspecific shop" },
{ "key": "amenity", "value": "education_centre", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "electronics_repair", "description": "Synonym for shop=electronics" },
{ "key": "amenity", "value": "embassy", "description": "Synonym for diplomatic=embassy" },
{ "key": "amenity", "value": "escape_game", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "escooter_parking", "description": "Synonym for 'amenity=scooter_rental'. Rendered with icon, name incorporates brand" },
{ "key": "amenity", "value": "escooter_rental", "description": "Synonym for 'amenity=scooter_rental'. Rendered with icon, name incorporates brand" },
{ "key": "amenity", "value": "estate_agent", "description": "Synonym for shop=estate_agent" },
{ "key": "amenity", "value": "events_venue", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "exhibition_centre", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "fast_food", "description": "Rendered with icon for cuisine" },
{ "key": "amenity", "value": "feeding_place", "description": "Typically on a farm, rendered as a generic roof" },
{ "key": "amenity", "value": "ferry_terminal", "description": "Shown as ferry terminal" },
{ "key": "amenity", "value": "festival_grounds", "description": "Synonym for meadow" },
{ "key": "amenity", "value": "financial_advice", "description": "Rendered as nonspecific shop" },
{ "key": "amenity", "value": "fire_station", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "food_court", "description": "Synonym for retail landuse" },
{ "key": "amenity", "value": "former_pub", "description": "Synonym for lifecycle tag on pubs" },
{ "key": "amenity", "value": "former_telephone", "description": "Sometimes used in place of lifecycle tag" },
{ "key": "amenity", "value": "fountain", "description": "Shown as fountain" },
{ "key": "amenity", "value": "fuel", "description": "Rendered with icon, name incorporates brand" },
{ "key": "amenity", "value": "fuel_depot", "description": "Synonym for indstrial landuse" },
{ "key": "amenity", "value": "function_room", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "funeral", "description": "Synonym for shop=funeral_directors" },
{ "key": "amenity", "value": "funeral_directors", "description": "Synonym for shop=funeral_directors" },
{ "key": "amenity", "value": "gallery", "description": "Shown as nonspecific shop" },
{ "key": "amenity", "value": "gambling", "description": "Rendered as gambling shop" },
{ "key": "amenity", "value": "grave_yard", "description": "Rendered as graveyard" },
{ "key": "amenity", "value": "grit_bin", "description": "Shown as grit bin" },
{ "key": "amenity", "value": "gym", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "hall", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "health_centre", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "healthcare", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "holy_well", "description": "Usually mapped as place of worship" },
{ "key": "amenity", "value": "horse_dismount_block", "description": "Horse mounting blocks" },
{ "key": "amenity", "value": "hospice", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "hospital", "description": "Shown as hospital" },
{ "key": "amenity", "value": "hunting_stand", "description": "Shown as a hunting stand" },
{ "key": "amenity", "value": "ice_cream", "description": "Shown as fast food place that servers ice cream" },
{ "key": "amenity", "value": "information", "description": "Synonym for tourism" },
{ "key": "amenity", "value": "internet_cafe", "description": "Shown as nonspecific shop" },
{ "key": "amenity", "value": "job_centre", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "jobcentre", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "kennels", "description": "Rendered as animal shop, name incorporates brand" },
{ "key": "amenity", "value": "kick-scooter_rental", "description": "Synonym for 'amenity=scooter_rental'. Rendered with icon, name incorporates brand" },
{ "key": "amenity", "value": "kindergarten", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "laboratory", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "lawyer", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "layby", "description": "Synonym for parking" },
{ "key": "amenity", "value": "left_luggage", "description": "Left luggage lockers" },
{ "key": "amenity", "value": "leisure_centre", "description": "Synonym for sports_centre" },
{ "key": "amenity", "value": "library", "description": "Libraries: If in an old phone box, display as such" },
{ "key": "amenity", "value": "lifeboat", "description": "Lifeboats" },
{ "key": "amenity", "value": "lifeboat_station", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "lottery", "description": "Rendered as gambling shop" },
{ "key": "amenity", "value": "lounger", "description": "Loungers are shown as benches" },
{ "key": "amenity", "value": "luggage_locker", "description": "Synonym for left_luggage" },
{ "key": "amenity", "value": "market", "description": "Synonym for retail landuse" },
{ "key": "amenity", "value": "marketplace", "description": "Synonym for retail landuse" },
{ "key": "amenity", "value": "medical_centre", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "medical_laboratory", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "minicab", "description": "Synonym for office=taxi etc." },
{ "key": "amenity", "value": "mobility", "description": "Used to detect shopmobility" },
{ "key": "amenity", "value": "mobility_aids_hire", "description": "Used to detect shopmobility" },
{ "key": "amenity", "value": "mobility_equipment_hire", "description": "Used to detect shopmobility" },
{ "key": "amenity", "value": "monastery", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "motorcycle_parking", "description": "Shown as motorcycle parking" },
{ "key": "amenity", "value": "mountain_rescue", "description": "Shown with icon, generic name used if blank" },
{ "key": "amenity", "value": "mounting_block", "description": "Horse mounting blocks" },
{ "key": "amenity", "value": "mounting_step", "description": "Horse mounting blocks" },
{ "key": "amenity", "value": "mounting_steps", "description": "Horse mounting blocks" },
{ "key": "amenity", "value": "music_school", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "music_venue", "description": "Synonym for concert_hall" },
{ "key": "amenity", "value": "musical_instrument", "description": "Shown from zoom 21" },
{ "key": "amenity", "value": "nightclub", "description": "Shown with a bar-like icon" },
{ "key": "amenity", "value": "notice_board", "description": "Synonym for tourism" },
{ "key": "amenity", "value": "nursery", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "nursery_school", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "nursing_home", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "office", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "old_pub", "description": "Synonym for lifecycle tag on pubs" },
{ "key": "amenity", "value": "optician", "description": "Synonym for shop=optician" },
{ "key": "amenity", "value": "optometrist", "description": "Synonym for shop=optician" },
{ "key": "amenity", "value": "outdoor_education_centre", "description": "Shown in green as 'leisure' amenity" },
{ "key": "amenity", "value": "parcel_box", "description": "Used to detect parcel lockers, dog poo bag machines" },
{ "key": "amenity", "value": "parcel_locker", "description": "Rendered with icon, name incorporates brand" },
{ "key": "amenity", "value": "parcel_pickup", "description": "Used to detect parcel lockers" },
{ "key": "amenity", "value": "parking", "description": "Shown differently if a fee is charged or if non-public, or motorcycle" },
{ "key": "amenity", "value": "parking_space", "description": "Show as small private parking area" },
{ "key": "amenity", "value": "pharmacy", "description": "Pharmacies: If tagged on supermarket, removed. Underline shows wheelchair tags" },
{ "key": "amenity", "value": "phone", "description": "Synonym for telephone" },
{ "key": "amenity", "value": "photo_booth", "description": "Shown as photo booths" },
{ "key": "amenity", "value": "physiotherapist", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "piano", "description": "Public and public-ish pianos shown as public musical instruments" },
{ "key": "amenity", "value": "pinfold", "description": "Shown as historic pinfold" },
{ "key": "amenity", "value": "place_of_worship", "description": "Shown with appropriate icon for religion" },
{ "key": "amenity", "value": "plant_hire;tool_hire", "description": "Shown as DIY-type shop" },
{ "key": "amenity", "value": "playground_structure", "description": "Small piece of playground equipment" },
{ "key": "amenity", "value": "podiatrist", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "police", "description": "Synonym as police" },
{ "key": "amenity", "value": "post_box", "description": "Shown as post box" },
{ "key": "amenity", "value": "post_depot", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "post_office", "description": "Shown as post office" },
{ "key": "amenity", "value": "preschool", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "printer", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "prison", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "pub", "description": "Pubs: Different colours show beer served, underlines show garden and wheelshair access, roof shows accommodation, name incorporates brand or operator" },
{ "key": "amenity", "value": "public_bath", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "public_bookcase", "description": "Show as small library. If in an old phone box shown as such" },
{ "key": "amenity", "value": "public_building", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "recycling", "description": "Depending on recycling_type, either a centre or a bin" },
{ "key": "amenity", "value": "register_office", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "rental", "description": "Shown as nonspecific shop" },
{ "key": "amenity", "value": "research_institute", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "residential_home", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "restaurant", "description": "Restaurants: Roof shows accommodation available" },
{ "key": "amenity", "value": "retirement_home", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "school", "description": "Shown as school" },
{ "key": "amenity", "value": "scooter_parking", "description": "Synonym for 'amenity=scooter_rental'. Rendered with icon, name incorporates brand" },
{ "key": "amenity", "value": "scooter_rental", "description": "Rendered with icon, name incorporates brand" },
{ "key": "amenity", "value": "scout_camp", "description": "Synonym for park" },
{ "key": "amenity", "value": "scout_hall", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "scout_hut", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "scrapyard", "description": "Synonym for indstrial landuse" },
{ "key": "amenity", "value": "self_storage", "description": "Synonym for shop=storage" },
{ "key": "amenity", "value": "shelter", "description": "Various shelters shown as a roof" },
{ "key": "amenity", "value": "sheltered_housing", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "shop_mobility", "description": "Used to detect shopmobility" },
{ "key": "amenity", "value": "show_ground", "description": "Synonym for meadow" },
{ "key": "amenity", "value": "show_grounds", "description": "Synonym for meadow" },
{ "key": "amenity", "value": "shower", "description": "Show according to gender, if set; show differently if non-free" },
{ "key": "amenity", "value": "showground", "description": "Synonym for meadow" },
{ "key": "amenity", "value": "small_electric_vehicle", "description": "Synonym for 'amenity=scooter_rental'. Rendered with icon, name incorporates brand" },
{ "key": "amenity", "value": "social_centre", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "social_club", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "social_facility", "description": "Synonym for shop=healthnonspecific" },
{ "key": "amenity", "value": "solicitor", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "solicitors", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "sorting_office", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "spa", "description": "Rendered as nonspecific shop" },
{ "key": "amenity", "value": "storage", "description": "Synonym for shop=storage" },
{ "key": "amenity", "value": "stripclub", "description": "Shown as nonspecific shop" },
{ "key": "amenity", "value": "studio", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "sundial", "description": "Shown as sundial" },
{ "key": "amenity", "value": "surgery", "description": "Synonym for doctors" },
{ "key": "amenity", "value": "swimming_pool", "description": "Total area, shown as leisure=nonspecific" },
{ "key": "amenity", "value": "tax_advisor", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "taxi", "description": "Shown as taxi" },
{ "key": "amenity", "value": "telephone", "description": "Phone boxes - show in appropriate colour" },
{ "key": "amenity", "value": "telephone_exchange", "description": "Descriptive name added to whatever else is there" },
{ "key": "amenity", "value": "theatre", "description": "Synonym for concert_hall if theatre=concert_hall" },
{ "key": "amenity", "value": "toilets", "description": "Show according to gender, if set; show differently if non-free" },
{ "key": "amenity", "value": "townhall", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "training", "description": "Shown as nonspecific shop" },
{ "key": "amenity", "value": "tutoring_centre", "description": "Shown as nonspecific shop" },
{ "key": "amenity", "value": "undertaker", "description": "Synonym for shop=funeral_directors" },
{ "key": "amenity", "value": "university", "description": "Shown as university" },
{ "key": "amenity", "value": "utilities", "description": "Shown as drinking or nondrinking water" },
{ "key": "amenity", "value": "van_rental", "description": "Synonym for shop=car_rental" },
{ "key": "amenity", "value": "vehicle_inspection", "description": "Synonym for shop=car_repair" },
{ "key": "amenity", "value": "vending_machine", "description": "Used to detect parcel lockers" },
{ "key": "amenity", "value": "veterinary", "description": "Rendered as animal shop" },
{ "key": "amenity", "value": "village_hall", "description": "Synonym for office=nonspecific" },
{ "key": "amenity", "value": "washing_area", "description": "Shown as drinking or nondrinking water" },
{ "key": "amenity", "value": "waste_basket", "description": "Removed from bus stops, shown as bin" },
{ "key": "amenity", "value": "waste_disposal", "description": "Shown as large bin" },
{ "key": "amenity", "value": "waste_transfer_station", "description": "Synonym for indstrial landuse" },
{ "key": "amenity", "value": "watering_place", "description": "Ways shown as water, nodes as a blue dot" },
{ "key": "amenity", "value": "water_point", "description": "Shown as drinking or nondrinking water" },
{ "key": "amenity", "value": "wildlife_hide", "description": "Leisure amenities shown in green" },
{ "key": "amenity", "value": "working_mens_club", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "youth_centre", "description": "Shown as leisure=nonspecific" },
{ "key": "amenity", "value": "youth_club", "description": "Not an expected value in OSM data. Shown as leisure=nonspecific" },
{ "key": "amenity:disused", "description": "Explicitly render disused pubs; handle disused telephones" },
{ "key": "amenity:disused", "value": "pub", "description": "Used to detect former pubs" },
{ "key": "animal", "description": "Used to infer more detail about other tags" },
{ "key": "animal", "value": "cattle", "description": "Detect meadows as agricultural" },
{ "key": "animal", "value": "chicken", "description": "Detect meadows as agricultural" },
{ "key": "animal", "value": "cow", "description": "Detect meadows as agricultural" },
{ "key": "animal", "value": "horse", "description": "Detect meadows as agricultural" },
{ "key": "animal", "value": "horse_walker", "description": "Show horse walkers as a roof" },
{ "key": "animal", "value": "pig", "description": "Detect meadows as agricultural" },
{ "key": "animal", "value": "sheep", "description": "Detect meadows as agricultural" },
{ "key": "animal", "value": "shelter", "description": "Rendered as animal shop, name incorporates brand" },
{ "key": "animal", "value": "wellness", "description": "Rendered as animal shop, name incorporates brand" },
{ "key": "archaeological_site", "description": "Show different archaeological sites differently" },
{ "key": "archaeological_site", "value": "castle", "description": "Not an expected value in OSM data. Show castle with a unique icon" },
{ "key": "archaeological_site", "value": "crannog", "description": "Show crannog with a unique icon" },
{ "key": "archaeological_site", "value": "fortification", "description": "Show archaeological fortifications" },
{ "key": "archaeological_site", "value": "hill_fort", "description": "Not an expected value in OSM data. Show hill forts with a unique icon" },
{ "key": "archaeological_site", "value": "hillfort", "description": "Not an expected value in OSM data. Show hill forts with a unique icon" },
{ "key": "archaeological_site", "value": "hilltop_enclosure", "description": "Show hilltop enclosures as hill forts" },
{ "key": "archaeological_site", "value": "megalith", "description": "Detect standing stones and ogham stones" },
{ "key": "archaeological_site", "value": "standing_stone", "description": "Detect standing stones and ogham stones" },
{ "key": "archaeological_site", "value": "settlement", "description": "Detect some ringforts" },
{ "key": "archaeological_site", "value": "tumulus", "description": "Show archaeological tumuli" },
{ "key": "area", "description": "Drop some highway areas" },
{ "key": "area", "value": "yes", "description": "Detect and don't show area highways" },
{ "key": "area:highway", "description": "Show traffic islands as kerbs" },
{ "key": "area:highway", "value": "traffic_island", "description": "Shown as a kerb" },
{ "key": "attraction", "description": "Mazes and zoo enclosures" },
{ "key": "attraction", "value": "animal", "description": "Shown as zoo enclosure" },
{ "key": "attraction", "value": "maze", "description": "Shown as nonspecific leisure item" },
{ "key": "barrier", "description": "Most barriers shown" },
{ "key": "barrier", "value": "a_frame", "description": "Shown as a cycle_barrier" },
{ "key": "barrier", "value": "bar", "description": "Shown as a horse_stile" },
{ "key": "barrier", "value": "barrier", "description": "Nodes shown as bollard; ways as fence" },
{ "key": "barrier", "value": "berm", "description": "Shown as an embankment" },
{ "key": "barrier", "value": "block", "description": "Shown as wall" },
{ "key": "barrier", "value": "bollard", "description": "Nodes shown as bollard" },
{ "key": "barrier", "value": "bollards", "description": "Nodes shown as bollard" },
{ "key": "barrier", "value": "border_control", "description": "Shown as a lift_gate" },
{ "key": "barrier", "value": "bump_gate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "bund", "description": "Shown as an embankment or an embanked highway" },
{ "key": "barrier", "value": "bus_trap", "description": "Nodes shown as bollard" },
{ "key": "barrier", "value": "car_trap", "description": "Nodes shown as bollard" },
{ "key": "barrier", "value": "cattle_grid", "description": "Shown with an icon" },
{ "key": "barrier", "value": "cattle_grid;gate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "chain", "description": "Nodes shown as horse_stile; ways as fence" },
{ "key": "barrier", "value": "checkpoint", "description": "Shown as a lift_gate" },
{ "key": "barrier", "value": "chicane", "description": "Shown as a cycle_barrier" },
{ "key": "barrier", "value": "cycle_barrier", "description": "Nodes shown as a cycle_barrier; ways as fence" },
{ "key": "barrier", "value": "ditch", "description": "Shown as a waterway=ditch" },
{ "key": "barrier", "value": "door", "description": "Shown as gate" },
{ "key": "barrier", "value": "dragons_teeth", "description": "Nodes shown as bollard; ways as wall" },
{ "key": "barrier", "value": "embankment", "description": "Shown as an embankment or an embanked highway" },
{ "key": "barrier", "value": "fence", "description": "Shown as a thin line" },
{ "key": "barrier", "value": "flood_bank", "description": "Shown as an embankment or an embanked highway" },
{ "key": "barrier", "value": "flood_gate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "flood_wall", "description": "Shown as wall" },
{ "key": "barrier", "value": "footgate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "full-height_turnstile", "description": "Shown as a kissing_gate" },
{ "key": "barrier", "value": "gate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "gate;kissing_gate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "gate;stile", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "gate_pier", "description": "Nodes shown as bollard" },
{ "key": "barrier", "value": "gate_post", "description": "Nodes shown as bollard" },
{ "key": "barrier", "value": "gatehouse", "description": "Shown as a lift_gate" },
{ "key": "barrier", "value": "guard_rail", "description": "Shown as a fence" },
{ "key": "barrier", "value": "haha", "description": "Shown as wall" },
{ "key": "barrier", "value": "hampshire_gate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "hand_rail_fence", "description": "Shown as fence" },
{ "key": "barrier", "value": "hedge", "description": "Shown as a green line" },
{ "key": "barrier", "value": "hoarding", "description": "Nodes shown as bollard; ways as fence" },
{ "key": "barrier", "value": "horse_barrier", "description": "Shown as a cycle_barrier" },
{ "key": "barrier", "value": "horse_jump", "description": "Shown as a fence" },
{ "key": "barrier", "value": "horse_stile", "description": "Nodes shown as a horse_stile; ways as fence" },
{ "key": "barrier", "value": "jersey_barrier", "description": "Shown as wall" },
{ "key": "barrier", "value": "kerb", "description": "Shown as thin line, like fence" },
{ "key": "barrier", "value": "kissing_gate", "description": "Shown as a kissing_gate" },
{ "key": "barrier", "value": "kissing_gate;gate", "description": "Shown as a kissing_gate" },
{ "key": "barrier", "value": "lift_gate", "description": "Shown as a lift_gate" },
{ "key": "barrier", "value": "lych_gate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "lytch_gate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "motorcycle_barrier", "description": "Shown as a cycle_barrier" },
{ "key": "barrier", "value": "mound", "description": "Shown as an embankment or an embanked highway" },
{ "key": "barrier", "value": "obstruction", "description": "Shown as wall" },
{ "key": "barrier", "value": "pengate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "pengates", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "pole", "description": "Nodes shown as bollard" },
{ "key": "barrier", "value": "post", "description": "Nodes shown as bollard" },
{ "key": "barrier", "value": "pull_apart_gate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "railing", "description": "Shown as a fence" },
{ "key": "barrier", "value": "ramblers_gate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "retaining_wall", "description": "Shown as wall" },
{ "key": "barrier", "value": "ridge", "description": "Shown as an embankment or an embanked highway" },
{ "key": "barrier", "value": "rising_bollard", "description": "Nodes shown as bollard" },
{ "key": "barrier", "value": "sally_port", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "sea_wall", "description": "Shown as wall" },
{ "key": "barrier", "value": "security_control", "description": "Shown as a lift_gate" },
{ "key": "barrier", "value": "snow_gate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "squeeze", "description": "Shown as a cycle_barrier" },
{ "key": "barrier", "value": "squeeze_point", "description": "Shown as a stile" },
{ "key": "barrier", "value": "squeeze_stile", "description": "Shown as a stile" },
{ "key": "barrier", "value": "step", "description": "Nodes shown as bollard; ways as fence" },
{ "key": "barrier", "value": "step_over", "description": "Shown as a stile" },
{ "key": "barrier", "value": "stepping_stones", "description": "Shown as generic barrier" },
{ "key": "barrier", "value": "step", "description": "Nodes shown as bollard; ways as fence" },
{ "key": "barrier", "value": "steps", "description": "Nodes shown as bollard; ways as fence" },
{ "key": "barrier", "value": "step_over", "description": "Shown as a stile" },
{ "key": "barrier", "value": "stile", "description": "Nodes shown with an icon; ways shown as fence" },
{ "key": "barrier", "value": "stile;gate", "description": "Shown as a stile" },
{ "key": "barrier", "value": "stone", "description": "Nodes shown as bollard" },
{ "key": "barrier", "value": "sump_buster", "description": "Nodes shown as bollard" },
{ "key": "barrier", "value": "swing_gate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "tank_trap", "description": "Shwn as bollard; ways as wall" },
{ "key": "barrier", "value": "ticket", "description": "Shown as a lift_gate" },
{ "key": "barrier", "value": "ticket_barrier", "description": "Shown as a lift_gate" },
{ "key": "barrier", "value": "toll_booth", "description": "Shown as a paying gate" },
{ "key": "barrier", "value": "traffic_island", "description": "Shown as a fence" },
{ "key": "barrier", "value": "turnstile", "description": "Shown as a kissing_gate" },
{ "key": "barrier", "value": "v_stile", "description": "Nodes shown as stile; ways as fence" },
{ "key": "barrier", "value": "wall", "description": "Shown as a thicker line; Castle walls shown as citywalls" },
{ "key": "barrier", "value": "wicket_gate", "description": "Shown as a gate or locked gate if locked" },
{ "key": "barrier", "value": "wire_fence", "description": "Shown as a fence" },
{ "key": "barrier", "value": "wood_fence", "description": "Shown as a fence" },
{ "key": "barrier", "value": "yes", "description": "Unknown non-linear barriers shown as bollard; linear as fence" },
{ "key": "basin", "description": "Shown as either permanent water or flood prone based on value" },
{ "key": "basin", "value": "wastewater", "description": "Shown as permanent water" },
{ "key": "basin", "value": "detention", "description": "Shown as flood-prone" },
{ "key": "basin", "value": "retention", "description": "Shown as flood-prone" },
{ "key": "basin", "value": "infiltration", "description": "Shown as flood-prone" },
{ "key": "basin", "value": "side_pound", "description": "Shown as flood-prone" },
{ "key": "beer_garden", "description": "Explicitly render pubs with beer gardens" },
{ "key": "beer_garden", "value": "yes", "description": "Explicitly render pubs with beer gardens" },
{ "key": "bench", "description": "Don't show stand-up benches as benches" },
{ "key": "bench", "value": "stand_up_bench", "description": "Don't show stand-up benches as benches" },
{ "key": "bicycle", "description": "Bicycle access; used with other tags to infer net access representation" },
{ "key": "board:title", "description": "Used as mames on information boards and signs" },
{ "key": "board_type", "description": "Determine type of information boards and signs" },
{ "key": "board_type", "value": "public_transport", "description": "Determine type of information boards and signs" },
{ "key": "booth", "description": "Used when deciding how to show telephone boxes and former telephone boxes (e.g. red or not red)" },
{ "key": "booth", "value": "K2", "description": "Detect telephone boxes" },
{ "key": "booth", "value": "K4 Post Office", "description": "Detect telephone boxes" },
{ "key": "booth", "value": "K6", "description": "Detect telephone boxes" },
{ "key": "booth", "value": "K8", "description": "Detect telephone boxes" },
{ "key": "booth", "value": "K1", "description": "Detect telephone boxes" },
{ "key": "booth", "value": "KX100", "description": "Detect telephone boxes" },
{ "key": "booth", "value": "KX200", "description": "Detect telephone boxes" },
{ "key": "booth", "value": "KX300", "description": "Detect telephone boxes" },
{ "key": "booth", "value": "KX410", "description": "Detect telephone boxes" },
{ "key": "booth", "value": "KX420", "description": "Detect telephone boxes" },
{ "key": "booth", "value": "KX520", "description": "Detect telephone boxes" },
{ "key": "booth", "value": "KXPlus", "description": "Detect telephone boxes" },
{ "key": "booth", "value": "ST6", "description": "Detect telephone boxes" },
{ "key": "booth", "value": "oakham", "description": "Detect telephone boxes" },
{ "key": "boundary", "description": "Various boundary features processed" },
{ "key": "boundary", "value": "administrative", "description": "Admin boundaries are not shown on main map but are shown on an overlay" },
{ "key": "boundary", "value": "forest", "description": "Handled as landuse=forest" },
{ "key": "boundary", "value": "marker", "description": "Used as synonym for boundary stone" },
{ "key": "boundary", "value": "protected_area", "description": "Used to detect AONBs and National Parks" },
{ "key": "brand", "description": "Used after name in brackets. Some generic ones (e.g. Independent) are suppressed as not a real brand" },
{ "key": "brand", "value": "Independant", "description": "Suppressed as not a real brand" },
{ "key": "brand", "value": "Independent", "description": "Suppressed as not a real brand" },
{ "key": "brand", "value": "Traditional Free House", "description": "Suppressed as not a real brand" },
{ "key": "brand", "value": "independant", "description": "Suppressed as not a real brand" },
{ "key": "brand", "value": "independent", "description": "Suppressed as not a real brand" },
{ "key": "bridge", "description": "Many bridge types detected" },
{ "key": "bridge", "value": "aqueduct", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "bailey", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "boardwalk", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "building_passage", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "cantilever", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "chain", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "covered", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "foot", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "footbridge", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "gangway", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "low_water_crossing", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "movable", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "pier", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "plank", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "plank_bridge", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "pontoon", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "rope", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "swing", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "trestle", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "undefined", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "viaduct", "description": "One of many bridge types detected" },
{ "key": "bridge", "value": "yes", "description": "One of many bridge types detected" },
{ "key": "bridge:name", "description": "Used in place of name on bridges" },
{ "key": "bridge:ref", "description": "Used in place of ref on bridges" },
{ "key": "bridge_name", "description": "Used in place of name on bridges" },
{ "key": "bridge_ref", "description": "Used in place of ref on bridges" },
{ "key": "building", "description": "Many building types processed to help infer other feature types" },
{ "key": "building", "value": "air_shaft", "description": "One of the ways of identifying ventilation shafts" },
{ "key": "building", "value": "boathouse", "description": "Tell lifeboats from lifeboat stations" },
{ "key": "building", "value": "bunker", "description": "Shown as historic or normal military bunker" },
{ "key": "building", "value": "canopy", "description": "Shown as roof; a lighter colour building" },
{ "key": "building", "value": "car_port", "description": "Shown as roof; a lighter colour building" },
{ "key": "building", "value": "chimney", "description": "Shown as a large or small chimney" },
{ "key": "building", "value": "clock_tower", "description": "Shown as a clock tower" },
{ "key": "building", "value": "club_house", "description": "Shown as nonspecified leisure" },
{ "key": "building", "value": "clubhouse", "description": "Shown as nonspecified leisure" },
{ "key": "building", "value": "collapsed", "description": "Shown as roof; a lighter colour building" },
{ "key": "building", "value": "commercial", "description": "Tell lifeboats from lifeboat stations" },
{ "key": "building", "value": "community_centre", "description": "Shown as nonspecified leisure" },
{ "key": "building", "value": "container", "description": "Tell lifeboats from lifeboat stations" },
{ "key": "building", "value": "depot", "description": "Shown as industrial building" },
{ "key": "building", "value": "entrance", "description": "Detect building entrances" },
{ "key": "building", "value": "former_watermill", "description": "Not a current value in OSM data. Shown as historic watermill" },
{ "key": "building", "value": "former_windmill", "description": "Shown as historic windmill" },
{ "key": "building", "value": "health_centre", "description": "Shown as nonspecified health" },
{ "key": "building", "value": "house", "description": "Tell lifeboats from lifeboat stations" },
{ "key": "building", "value": "industrial", "description": "Shown as industrial building" },
{ "key": "building", "value": "manufacture", "description": "Shown as industrial building" },
{ "key": "building", "value": "medical_centre", "description": "Shown as nonspecified health" },
{ "key": "building", "value": "no", "description": "Used to help classify things as not buildings" },
{ "key": "building", "value": "nursing_home", "description": "Shown as nonspecified health" },
{ "key": "building", "value": "office", "description": "Shown as office" },
{ "key": "building", "value": "pillbox", "description": "Shown as historic military bunker" },
{ "key": "building", "value": "preschool", "description": "Shown as nonspecified health" },
{ "key": "building", "value": "public", "description": "Tell lifeboats from lifeboat stations" },
{ "key": "building", "value": "retail", "description": "Tell lifeboats from lifeboat stations" },
{ "key": "building", "value": "roof", "description": "Shown as roof; a lighter colour building" },
{ "key": "building", "value": "ruins", "description": "Shown as roof; a lighter colour building" },
{ "key": "building", "value": "scout_hut", "description": "Shown as commercial landuse" },
{ "key": "building", "value": "service", "description": "Tell lifeboats from lifeboat stations" },
{ "key": "building", "value": "ship", "description": "Tell lifeboats from lifeboat stations" },
{ "key": "building", "value": "station", "description": "Special rendering for station buildings" },
{ "key": "building", "value": "supermarket", "description": "Shown as regular building" },
{ "key": "building", "value": "telephone_box", "description": "Used when deciding how to show telephone boxes and former telephone boxes (e.g. red or not red)" },
{ "key": "building", "value": "telephone_exchange", "description": "Used to identify telephone exchanges" },
{ "key": "building", "value": "tower", "description": "Used as part of the test to identify church spires" },
{ "key": "building", "value": "unit", "description": "Used as part of the test to identify shopmobility amenities" },
{ "key": "building", "value": "vent_shaft", "description": "One of the ways of identifying ventilation shafts" },
{ "key": "building", "value": "ventilation_shaft", "description": "One of the ways of identifying ventilation shafts" },
{ "key": "building", "value": "village_hall", "description": "Shown as commercial landuse" },
{ "key": "building", "value": "warehouse", "description": "Shown as industrial building" },
{ "key": "building", "value": "watermill", "description": "Shown as historic watermill if appropriate" },
{ "key": "building", "value": "windmill", "description": "Shown as historic windmill if appropriate" },
{ "key": "building", "value": "works", "description": "Shown as industrial building" },
{ "key": "building", "value": "yes", "description": "Shown as regular building" },
{ "key": "building:part", "description": "Detect clock towers so that they can be rendered as clocks" },
{ "key": "building:part", "value": "yes", "description": "Detect clock towers so that they can be rendered as clocks" },
{ "key": "building:ruins", "description": "Shown as roof; a lighter colour building" },
{ "key": "building:ruins", "value": "yes", "description": "Shown as roof; a lighter colour building" },
{ "key": "building:type", "description": "Show canopies as roofs; a lighter colour building" },
{ "key": "building:type", "value": "canopy", "description": "Shown as roof; a lighter colour building" },
{ "key": "bulk_purchase", "description": "Detect 'eco' shops and supermarkets" },
{ "key": "bulk_purchase", "value": "only", "description": "Detect 'eco' shops and supermarkets" },
{ "key": "bulk_purchase", "value": "yes", "description": "Detect 'eco' shops and supermarkets" },
{ "key": "bus_display_name", "description": "Appended to bus stop name if different" },
{ "key": "bus_speech_output_name", "description": "Appended to bus stop name if different" },
{ "key": "business", "description": "'business' is used as an alternative to 'office' and by some people." },
{ "key": "canal_bridge_ref", "description": "Used as an obscure synonym for bridge_ref" },
{ "key": "canoe", "description": "Detect waterway access points" },
{ "key": "canoe", "value": "put_in", "description": "Shown as a waterway access point" },
{ "key": "capital", "description": "Find capital cities and towns" },
{ "key": "capital", "value": "yes", "description": "Find capital cities and towns" },
{ "key": "castle_type", "description": "Detect things tagged as castles that are not castles" },
{ "key": "castle_type", "value": "manor", "description": "Shown as manor house" },
{ "key": "castle_type", "value": "palace", "description": "Shown as manor house" },
{ "key": "castle_type", "value": "stately", "description": "Shown as manor house" },
{ "key": "climbing", "description": "Identify climbing boulders" },
{ "key": "climbing", "value": "boulder", "description": "Identify climbing boulders" },
{ "key": "closed:amenity", "description": "Handle closed version of tag as disused" },
{ "key": "closed:shop", "description": "Handle closed version of tag as disused" },
{ "key": "club", "description": "Many values shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "air_cadets", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "army_cadets", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "automobile", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "boat", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "bowling", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "bowls", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "boxing", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "bridge", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "cadet", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "card_games", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "charity", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "conservative", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "cricket", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "fishing", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "football", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "freemasonry", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "game", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "girlguiding", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "golf", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "guide", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "health", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "labour_club", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "military", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "model_aircraft", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "model_railway", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "music", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "photography", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "politics", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "rowing", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "sailing", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "scout", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "scouts", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "scuba_diving", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "sea_cadets", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "sea_scout", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "snooker", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "social", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "social_club", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "sport", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "sports", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "tennis", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "theatre", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "veterans", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "women", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "working_men", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "yachting", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "yes", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "youth", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "club", "value": "youth_movement", "description": "Shown as unnamed commercial landuse and nonspecific leisure" },
{ "key": "colour", "description": "Show trail colours as names" },
{ "key": "colour", "value": "black", "description": "Show black, white, blue, green, grey and gold phone boxes as the correct colour rather than red" },
{ "key": "colour", "value": "white", "description": "Show black, white, blue, green, grey and gold phone boxes as the correct colour rather than red" },
{ "key": "colour", "value": "cream", "description": "Show black, white, blue, green, grey and gold phone boxes as the correct colour rather than red" },
{ "key": "colour", "value": "blue", "description": "Show black, white, blue, green, grey and gold phone boxes as the correct colour rather than red" },
{ "key": "colour", "value": "green", "description": "Show black, white, blue, green, grey and gold phone boxes as the correct colour rather than red" },
{ "key": "colour", "value": "grey", "description": "Show black, white, blue, green, grey and gold phone boxes as the correct colour rather than red" },
{ "key": "colour", "value": "gold", "description": "Show black, white, blue, green, grey and gold phone boxes as the correct colour rather than red" },
{ "key": "commercial", "description": "Obscure synonym for office" },
{ "key": "commercial", "value": "office", "description": "Obscure synonym for office" },
{ "key": "company", "description": "'business' is used as an alternative to 'office' and by some people." },
{ "key": "construction", "description": "Roads under construction" },
{ "key": "construction", "value": "motorway", "description": "Roads under construction" },
{ "key": "construction", "value": "motorway_link", "description": "Roads under construction" },
{ "key": "construction", "value": "trunk", "description": "Roads under construction" },
{ "key": "construction", "value": "trunk_link", "description": "Roads under construction" },
{ "key": "construction", "value": "primary", "description": "Roads under construction" },
{ "key": "construction", "value": "primary_link", "description": "Roads under construction" },
{ "key": "construction", "value": "secondary", "description": "Roads under construction" },
{ "key": "construction", "value": "secondary_link", "description": "Roads under construction" },
{ "key": "construction", "value": "tertiary", "description": "Roads under construction" },
{ "key": "construction", "value": "tertiary_link", "description": "Roads under construction" },
{ "key": "construction", "value": "unclassified", "description": "Roads under construction" },
{ "key": "construction", "value": "residential", "description": "Roads under construction" },
{ "key": "construction", "value": "living_street", "description": "Roads under construction" },
{ "key": "construction", "value": "service", "description": "Roads under construction" },
{ "key": "consulate", "description": "Detect whether a consulate is actually a consulate or just an office" },
{ "key": "consulate", "value": "consular_agency", "description": "Shown as an office" },
{ "key": "consulate", "value": "consular_office", "description": "Shown as an office" },
{ "key": "consulate", "value": "consulate_general", "description": "Shown as an embassy" },
{ "key": "consulate", "value": "residence", "description": "Shown as an office" },
{ "key": "consulate", "value": "yes", "description": "Shown as an embassy" },
{ "key": "covered", "description": "Handle various synonyms for 'yes'" },
{ "key": "covered", "value": "arcade", "description": "Handle various synonyms for 'yes'" },
{ "key": "covered", "value": "booth", "description": "Used when deciding how to show telephone boxes and former telephone boxes (e.g. red or not red)" },
{ "key": "covered", "value": "building_arcade", "description": "Handle various synonyms for 'yes'" },
{ "key": "covered", "value": "building_passage", "description": "Handle various synonyms for 'yes'" },
{ "key": "covered", "value": "colonnade", "description": "Handle various synonyms for 'yes'" },
{ "key": "covered", "value": "covered", "description": "Handle various synonyms for 'yes'" },
{ "key": "covered", "value": "no", "description": "Used when deciding whether to show a bicycle parking area with a roof" },
{ "key": "covered", "value": "portico", "description": "Handle various synonyms for 'yes'" },
{ "key": "covered", "value": "roof", "description": "Handled as a synonym for 'building=roof' on non-highways, Handled as a synonym for 'yes' elsewhere" },
{ "key": "covered", "value": "yes", "description": "Show covered waterways as tunnels" },
{ "key": "craft", "description": "Most common crafts rendered as either shop-style or office-style icons" },
{ "key": "craft", "value": "agricultural_engines", "description": "Shown as office" },
{ "key": "craft", "value": "artist", "description": "Shown as a synonym for 'art'" },
{ "key": "craft", "value": "atelier", "description": "Shown as office" },
{ "key": "craft", "value": "bakery", "description": "Shown as industrial landuse" },
{ "key": "craft", "value": "beekeeper", "description": "Shown as office" },
{ "key": "craft", "value": "blacksmith", "description": "Shown as office" },
{ "key": "craft", "value": "boatbuilder", "description": "Shown as furniture shop" },
{ "key": "craft", "value": "bookbinder", "description": "Shown as office" },
{ "key": "craft", "value": "brewery", "description": "Shown as craft brewery" },
{ "key": "craft", "value": "brewery;cider", "description": "Shown as craft brewery" },
{ "key": "craft", "value": "builder", "description": "Shown as doityourself shop" },
{ "key": "craft", "value": "cabinet_maker", "description": "Shown as office" },
{ "key": "craft", "value": "carpet_layer", "description": "Shown as office" },
{ "key": "craft", "value": "car_repair", "description": "Shown as car repair shop" },
{ "key": "craft", "value": "carpenter", "description": "Shown as furniture shop" },
{ "key": "craft", "value": "caterer", "description": "Shown as office" },
{ "key": "craft", "value": "cider", "description": "Shown as craft cider maker" },
{ "key": "craft", "value": "cleaning", "description": "Shown as office" },
{ "key": "craft", "value": "clockmaker", "description": "Shown as office" },
{ "key": "craft", "value": "coachbuilder", "description": "Shown as car repair shop" },
{ "key": "craft", "value": "cobbler", "description": "Shown as nonspecific shop" },
{ "key": "craft", "value": "confectionery", "description": "Shown as office" },
{ "key": "craft", "value": "counsellor", "description": "Shown as nonspecific health" },
{ "key": "craft", "value": "decorator", "description": "Shown as furniture shop" },
{ "key": "craft", "value": "dental_technician", "description": "Shown as office" },
{ "key": "craft", "value": "distillery", "description": "Shown as industrial landuse" },
{ "key": "craft", "value": "dog_grooming", "description": "Shown as pet shop" },
{ "key": "craft", "value": "dressmaker", "description": "Shown as clothes shop" },
{ "key": "craft", "value": "electrician", "description": "Shown as office" },
{ "key": "craft", "value": "electrician;plumber", "description": "Shown as office" },
{ "key": "craft", "value": "electronics_repair", "description": "Shown as electronics shop" },
{ "key": "craft", "value": "embroiderer", "description": "Various shops shown" },
{ "key": "craft", "value": "engineering", "description": "Shown as office" },
{ "key": "craft", "value": "engraver", "description": "Synonym for 'jewelry'" },
{ "key": "craft", "value": "floorer", "description": "Shown as doityourself shop" },
{ "key": "craft", "value": "framing", "description": "Shown as homeware shop" },
{ "key": "craft", "value": "furniture", "description": "Shown as office" },
{ "key": "craft", "value": "furniture_maker", "description": "Shown as office" },
{ "key": "craft", "value": "gardener", "description": "Shown as office" },
{ "key": "craft", "value": "glaziery", "description": "Shown as furniture shop" },
{ "key": "craft", "value": "gunsmith", "description": "Shown as nonspecific shop" },
{ "key": "craft", "value": "handicraft", "description": "Shown as office" },
{ "key": "craft", "value": "hvac", "description": "Shown as nonspecific office" },
{ "key": "craft", "value": "insulation", "description": "Shown as office" },
{ "key": "craft", "value": "jeweller", "description": "Synonym for 'jewelry'" },
{ "key": "craft", "value": "jewellery_repair", "description": "Synonym for 'jewelry'" },
{ "key": "craft", "value": "joiner", "description": "Shown as office" },
{ "key": "craft", "value": "key_cutter", "description": "Shown as shoe repair etc. shop" },
{ "key": "craft", "value": "key_cutter;shoe_repair", "description": "Shown as shoe repair etc. shop" },
{ "key": "craft", "value": "locksmith", "description": "Shown as locksmith shop" },
{ "key": "craft", "value": "metal_construction", "description": "Shown as office" },
{ "key": "craft", "value": "optician", "description": "Shown as optician shop" },
{ "key": "craft", "value": "painter", "description": "Shown as office" },
{ "key": "craft", "value": "photographer", "description": "Shown as photo shop" },
{ "key": "craft", "value": "photographic_laboratory", "description": "Shown as nonspecific office" },
{ "key": "craft", "value": "plasterer", "description": "Shown as office" },
{ "key": "craft", "value": "plumber", "description": "Shown as furniture shop" },
{ "key": "craft", "value": "pottery", "description": "Shown as a synonym for 'art'" },
{ "key": "craft", "value": "printer", "description": "Shown as nonspecific office" },
{ "key": "craft", "value": "printmaker", "description": "Shown as nonspecific office" },
{ "key": "craft", "value": "print_shop", "description": "Shown as nonspecific office" },
{ "key": "craft", "value": "roofer", "description": "Shown as doityourself shop" },
{ "key": "craft", "value": "saddler", "description": "Shown as office" },
{ "key": "craft", "value": "sailmaker", "description": "Shown as office" },
{ "key": "craft", "value": "sawmill", "description": "Shown as industrial landuse" },
{ "key": "craft", "value": "scaffolder", "description": "Shown as office" },
{ "key": "craft", "value": "sculptor", "description": "Shown as a synonym for 'art'" },
{ "key": "craft", "value": "shoe_repair", "description": "Shown as shoe repair etc. shop" },
{ "key": "craft", "value": "shoemaker", "description": "Shown as nonspecific shop" },
{ "key": "craft", "value": "signmaker", "description": "Shown as doityourself shop" },
{ "key": "craft", "value": "stonemason", "description": "Shown as funeral directors" },
{ "key": "craft", "value": "tailor", "description": "Shown as clothes shop" },
{ "key": "craft", "value": "tiler", "description": "Shown as office" },
{ "key": "craft", "value": "upholsterer", "description": "Shown as homeware shop" },
{ "key": "craft", "value": "watchmaker", "description": "Shown as office" },
{ "key": "craft", "value": "window_construction", "description": "Shown as homeware shop" },
{ "key": "craft", "value": "winery", "description": "Shown as shop=alcohol" },
{ "key": "craft", "value": "yes", "description": "Shown as nonspecific shop" },
{ "key": "crossing", "description": "Some crossing types shown as 'highway=traffic_signals'" },
{ "key": "crossing", "value": "island;traffic_signals", "description": "Shown as 'highway=traffic_signals'" },
{ "key": "crossing", "value": "light controlled", "description": "Shown as 'highway=traffic_signals'" },
{ "key": "crossing", "value": "light_controlled", "description": "Shown as 'highway=traffic_signals'" },
{ "key": "crossing", "value": "pedestrian_signals", "description": "Shown as 'highway=traffic_signals'" },
{ "key": "crossing", "value": "pegasus", "description": "Shown as 'highway=traffic_signals'" },
{ "key": "crossing", "value": "puffin", "description": "Shown as 'highway=traffic_signals'" },
{ "key": "crossing", "value": "signals", "description": "Shown as 'highway=traffic_signals'" },
{ "key": "crossing", "value": "toucan", "description": "Shown as 'highway=traffic_signals'" },
{ "key": "crossing", "value": "traffic_lights", "description": "Shown as 'highway=traffic_signals'" },
{ "key": "crossing", "value": "traffic_signals", "description": "Shown as 'highway=traffic_signals'" },
{ "key": "crossing", "value": "traffic_signals;island", "description": "Shown as 'highway=traffic_signals'" },
{ "key": "cuisine", "description": "Many fast food cuisines used to determine fast food icon" },
{ "key": "cuisine", "value": "afghan", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "american", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "argentinian", "description": "Shown as fast food place that serves burgers" },
{ "key": "cuisine", "value": "asian", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "bangladeshi", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "bangladeshi;indian", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "brazilian", "description": "Shown as fast food place that serves burgers" },
{ "key": "cuisine", "value": "burger", "description": "Shown as fast food place that serves burgers" },
{ "key": "cuisine", "value": "burger;chicken", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "burger;chicken;fish_and_chips;kebab", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "burger;chicken;indian;kebab;pizza", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "burger;chicken;kebab", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "burger;chicken;kebab;pizza", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "burger;chicken;pizza", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "burger;fish_and_chips", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "burger;fish_and_chips;kebab;pizza", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "burger;indian;kebab;pizza", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "burger;kebab", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "burger;kebab;pizza", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "burger;pizza", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "burger;pizza;kebab", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "burger;sandwich", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "cake;coffee_shop", "description": "Shown as fast food place that servers coffee" },
{ "key": "cuisine", "value": "cantonese", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "chicken", "description": "Shown as fast food place that servers chicken" },
{ "key": "cuisine", "value": "chicken;burger;pizza", "description": "Shown as fast food place that servers chicken" },
{ "key": "cuisine", "value": "chicken;fish_and_chips", "description": "Shown as fast food place that servers chicken" },
{ "key": "cuisine", "value": "chicken;grill", "description": "Shown as fast food place that servers chicken" },
{ "key": "cuisine", "value": "chicken;kebab", "description": "Shown as fast food place that servers chicken" },
{ "key": "cuisine", "value": "chicken;pizza", "description": "Shown as fast food place that servers chicken" },
{ "key": "cuisine", "value": "chicken;portuguese", "description": "Shown as fast food place that servers chicken" },
{ "key": "cuisine", "value": "chinese", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "chinese;asian", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "chinese;cantonese", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "chinese;english", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "chinese;fish_and_chips", "description": "Shown as fast food place that servers fish and chips" },
{ "key": "cuisine", "value": "chinese;japanese", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "chinese;thai", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "chinese;thai;malaysian", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "coffee", "description": "Shown as fast food place that servers coffee" },
{ "key": "cuisine", "value": "coffee_shop", "description": "Shown as fast food place that servers coffee" },
{ "key": "cuisine", "value": "coffee_shop;breakfast", "description": "Shown as fast food place that servers coffee" },
{ "key": "cuisine", "value": "coffee_shop;cake", "description": "Shown as fast food place that servers coffee" },
{ "key": "cuisine", "value": "coffee_shop;ice_cream", "description": "Shown as fast food place that servers coffee" },
{ "key": "cuisine", "value": "coffee_shop;italian", "description": "Shown as fast food place that servers coffee" },
{ "key": "cuisine", "value": "coffee_shop;local", "description": "Shown as fast food place that servers coffee" },
{ "key": "cuisine", "value": "coffee_shop;regional", "description": "Shown as fast food place that servers coffee" },
{ "key": "cuisine", "value": "coffee_shop;sandwich", "description": "Shown as fast food place that servers coffee" },
{ "key": "cuisine", "value": "coffee_shop;sandwich;cake", "description": "Shown as fast food place that servers coffee" },
{ "key": "cuisine", "value": "cornish_pasty", "description": "Shown as fast food place that servers pies or similar" },
{ "key": "cuisine", "value": "curry", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "curry;indian", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "diner", "description": "Shown as fast food place that servers burgers" },
{ "key": "cuisine", "value": "fish", "description": "Shown as fast food place that servers fish and chips" },
{ "key": "cuisine", "value": "fish_and_chips", "description": "Shown as fast food place that servers fish and chips" },
{ "key": "cuisine", "value": "fish_and_chips;chinese", "description": "Shown as fast food place that servers fish and chips" },
{ "key": "cuisine", "value": "fish_and_chips;indian", "description": "Shown as fast food place that servers fish and chips" },
{ "key": "cuisine", "value": "fish_and_chips;kebab", "description": "Shown as fast food place that servers fish and chips" },
{ "key": "cuisine", "value": "fish_and_chips;pizza", "description": "Shown as fast food place that servers fish and chips" },
{ "key": "cuisine", "value": "fish_and_chips;pizza;burger;kebab", "description": "Shown as fast food place that servers fish and chips" },
{ "key": "cuisine", "value": "fish_and_chips;pizza;kebab", "description": "Shown as fast food place that servers fish and chips" },
{ "key": "cuisine", "value": "fried_chicken", "description": "Shown as fast food place that servers chicken" },
{ "key": "cuisine", "value": "grill", "description": "Shown as fast food place that serves burgers" },
{ "key": "cuisine", "value": "ice_cream", "description": "Shown as fast food place that servers ice cream" },
{ "key": "cuisine", "value": "ice_cream;cake;coffee", "description": "Shown as fast food place that servers ice cream" },
{ "key": "cuisine", "value": "ice_cream;cake;sandwich", "description": "Shown as fast food place that servers ice cream" },
{ "key": "cuisine", "value": "ice_cream;coffee;waffle", "description": "Shown as fast food place that servers ice cream" },
{ "key": "cuisine", "value": "ice_cream;coffee_shop", "description": "Shown as fast food place that servers ice cream" },
{ "key": "cuisine", "value": "ice_cream;donut", "description": "Shown as fast food place that servers ice cream" },
{ "key": "cuisine", "value": "ice_cream;pizza", "description": "Shown as fast food place that servers ice cream" },
{ "key": "cuisine", "value": "ice_cream;sandwich", "description": "Shown as fast food place that servers ice cream" },
{ "key": "cuisine", "value": "ice_cream;tea;coffee", "description": "Shown as fast food place that servers ice cream" },
{ "key": "cuisine", "value": "indian", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "indian;bangladeshi", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "indian;curry", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "indian;kebab", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "indian;kebab;burger", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "indian;nepalese", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "indian;pakistani", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "indian;pizza", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "indian;thai", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "indonesian", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "italian", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "italian;pizza", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "italian_pizza", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "japanese", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "japanese;korean", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "japanese;sushi", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "kebab", "description": "Shown as fast food place that servers kebabs or similar food" },
{ "key": "cuisine", "value": "kebab;burger", "description": "Shown as fast food place that servers kebabs or similar food" },
{ "key": "cuisine", "value": "kebab;burger;chicken", "description": "Shown as fast food place that servers kebabs or similar food" },
{ "key": "cuisine", "value": "kebab;burger;pizza", "description": "Shown as fast food place that servers kebabs or similar food" },
{ "key": "cuisine", "value": "kebab;fish_and_chips", "description": "Shown as fast food place that servers kebabs or similar food" },
{ "key": "cuisine", "value": "kebab;pizza", "description": "Shown as fast food place that servers kebabs or similar food" },
{ "key": "cuisine", "value": "kebab;pizza;burger", "description": "Shown as fast food place that servers kebabs or similar food" },
{ "key": "cuisine", "value": "korean", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "korean;japanese", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "malaysian", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "malaysian;chinese", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "mediterranean", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "nepalese", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "nepalese;indian", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "noodle", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "noodle;ramen", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "oriental", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "pakistani", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "pasta", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "pasties", "description": "Shown as fast food place that servers pies or similar" },
{ "key": "cuisine", "value": "pasty", "description": "Shown as fast food place that servers pies or similar" },
{ "key": "cuisine", "value": "pie", "description": "Shown as fast food place that servers pies or similar" },
{ "key": "cuisine", "value": "pies", "description": "Shown as fast food place that servers pies or similar" },
{ "key": "cuisine", "value": "pizza", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "pizza;burger", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "pizza;burger;kebab", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "pizza;chicken", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "pizza;fish_and_chips", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "pizza;indian", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "pizza;italian", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "pizza;kebab", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "pizza;kebab;burger", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "pizza;kebab;burger;chicken", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "pizza;kebab;chicken", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "pizza;pasta", "description": "Shown as fast food place that servers pizza or italian food" },
{ "key": "cuisine", "value": "punjabi", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "ramen", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "sandwich", "description": "Shown as fast food place that servers sandwiches" },
{ "key": "cuisine", "value": "sandwich;bakery", "description": "Shown as fast food place that servers sandwiches" },
{ "key": "cuisine", "value": "sandwich;coffee_shop", "description": "Shown as fast food place that servers sandwiches" },
{ "key": "cuisine", "value": "sri_lankan", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "steak_house", "description": "Shown as fast food place that serves burgers" },
{ "key": "cuisine", "value": "sushi", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "sushi;japanese", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "tandoori", "description": "Shown as fast food place that servers indian or similar food" },
{ "key": "cuisine", "value": "thai", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "thai;chinese", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "turkish", "description": "Shown as fast food place that servers kebabs or similar food" },
{ "key": "cuisine", "value": "vietnamese", "description": "Shown as fast food place that servers chinese or similar food" },
{ "key": "cuisine", "value": "wings", "description": "Shown as fast food place that servers chicken" },
{ "key": "cycleway", "description": "With some values, show the road as having a sidewalk or equivalent" },
{ "key": "cycleway", "value": "opposite_track", "description": "If present, show the road as having a sidewalk or equivalent" },
{ "key": "cycleway", "value": "segregated", "description": "If present, show the road as having a sidewalk or equivalent" },
{ "key": "cycleway", "value": "separate", "description": "If present, show the road as having a sidewalk or equivalent" },
{ "key": "cycleway", "value": "sidepath", "description": "If present, show the road as having a sidewalk or equivalent" },
{ "key": "cycleway", "value": "sidewalk", "description": "If present, show the road as having a sidewalk or equivalent" },
{ "key": "cycleway", "value": "track", "description": "If present, show the road as having a sidewalk or equivalent" },
{ "key": "cycleway", "value": "yes", "description": "If present, show the road as having a sidewalk or equivalent" },
{ "key": "dance:teaching", "description": "Detect dance places" },
{ "key": "dance:teaching", "value": "yes", "description": "Detect dance places" },
{ "key": "defensive_works", "description": "Detect batteries not mapped as historic" },
{ "key": "defensive_works", "value": "battery", "description": "Shown as nonspecific historic item" },
{ "key": "demolished:amenity", "description": "Detect former telephone boxes" },
{ "key": "demolished:amenity", "value": "telephone", "description": "Detect former telephone boxes" },
{ "key": "denomination", "description": "Don't use a cross for Jehovahs Witness buildings" },
{ "key": "denomination", "value": "jehovahs_witness", "description": "Don't use a cross for Jehovahs Witness buildings" },
{ "key": "description:floor", "description": "Detect noncarpeted pub floors" },
{ "key": "departures_board", "description": "What sort of departures board does a bus stop have?" },
{ "key": "departures_board", "value": "realtime", "description": "Some sort of realtime display" },
{ "key": "departures_board", "value": "timetable; realtime", "description": "Some sort of realtime display" },
{ "key": "departures_board", "value": "realtime;timetable", "description": "Some sort of realtime display" },
{ "key": "departures_board", "value": "timetable;realtime", "description": "Some sort of realtime display" },
{ "key": "departures_board", "value": "realtime_multiline", "description": "Some sort of realtime display" },
{ "key": "departures_board", "value": "realtime,timetable", "description": "Some sort of realtime display" },
{ "key": "departures_board", "value": "multiline", "description": "Some sort of realtime display" },
{ "key": "departures_board", "value": "realtime_multiline;timetable", "description": "Some sort of realtime display" },
{ "key": "departures_board", "value": "timetable", "description": "Some sort of fixed timetable" },
{ "key": "departures_board", "value": "schedule", "description": "Some sort of fixed timetable" },
{ "key": "departures_board", "value": "separate", "description": "Some sort of fixed timetable" },
{ "key": "departures_board", "value": "paper timetable", "description": "Some sort of fixed timetable" },
{ "key": "departures_board", "value": "yes", "description": "At timetable" },
{ "key": "departures_board:speech_output", "description": "Is there a button you can press to hear bus times" },
{ "key": "departures_board:speech_output", "value": "yes", "description": "There is speech output of bus times" },
{ "key": "designation", "description": "Legal PRoW or similar status. Also used to suppress non-PRoWs in certain circumstances." },
{ "key": "designation", "value": "March Stone", "description": "Aberdeen boundary stone" },
{ "key": "designation", "value": "Marine Conservation Zone", "description": "Shown as nature reserve" },
{ "key": "designation", "value": "Nature Reserve", "description": "Shown as nature reserve" },
{ "key": "designation", "value": "PROW", "description": "Shown as public footpath (NI)" },
{ "key": "designation", "value": "access_land", "description": "Areas shown as nature reserves, highways shown as public_footpath" },
{ "key": "designation", "value": "adopted", "description": "Shown as public highway" },
{ "key": "designation", "value": "adopted_highway", "description": "Shown as public highway" },
{ "key": "designation", "value": "adopted_highway;public_footpath", "description": "Shown as public highway" },
{ "key": "designation", "value": "area_of_outstanding_natural_beauty", "description": "Shown as national park" },
{ "key": "designation", "value": "bridleway", "description": "Show as public bridleway" },
{ "key": "designation", "value": "byway", "description": "Show as byway open to all traffic" },
{ "key": "designation", "value": "byway_open_to_all_traffic", "description": "Shown as byway open to all traffic" },
{ "key": "designation", "value": "carriageway", "description": "Shown as byway open to all traffic (NI)" },
{ "key": "designation", "value": "common", "description": "Show as 'leisure=common'" },
{ "key": "designation", "value": "core_path", "description": "Shown in same way as public footpaths" },
{ "key": "designation", "value": "footpath", "description": "Shown as public footpath" },
{ "key": "designation", "value": "local_nature_reserve", "description": "Shown as nature reserve" },
{ "key": "designation", "value": "national_nature_reserve", "description": "Shown as nature reserve" },
{ "key": "designation", "value": "national_park", "description": "Shown as national park" },
{ "key": "designation", "value": "national_scenic_area", "description": "Shown as national park" },
{ "key": "designation", "value": "orpa", "description": "Shown as retricted byway" },
{ "key": "designation", "value": "public_bridleway", "description": "Shown as public bridleway" },