forked from simonpoole/beautified-JOSM-preset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster_preset.xml
11349 lines (11343 loc) · 701 KB
/
master_preset.xml
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
<?xml version="1.0"?>
<presets version="1.8.15" xmlns="http://josm.openstreetmap.de/tagging-preset-1.0" shortdescription="Default OpenStreetMap Preset for Vespucci and JOSM"
description="General purpose OpenStreetMap preset for Vespucci and JOSM, based on the original JOSM version"
object_keys="attraction,public_transport,traffic_calming,traffic_sign,traffic_sign:forward,traffic_sign:backward,playground,advertising,ford,club,traffic_calming,cemetery,indoor,police,disused:amenity,disused:leisure,disused:shop,disused:man_made">
<!--
Icons have been derived from mainly from
http://www.sjjb.co.uk/mapicons/ (meanwhile in osm svn)
http://osm-icons.org/
Format description: https://josm.openstreetmap.de/wiki/TaggingPresets and http://vespucci.io/tutorials/presets/
-->
<!-- Item chunks -->
<chunk id="incline">
<combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down" display_values="10%,-10%,10°,-10°,Up,Down" values_sort="false"/>
</chunk>
<chunk id="material">
<combo key="material" text="Material" values="concrete,metal,plastic,stone,wood" display_values="Concrete,Metal,Plastic,Stone,Wood" values_context="material"/>
</chunk>
<chunk id="wall_material">
<combo key="material" text="Material" values="adobe,brick,concrete,masonry,reinforced_concrete,stone" display_values="Adobe,Brick,Concrete,Masonry,Reinforced concrete,Stone" values_context="material" />
</chunk>
<chunk id="surface">
<combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,concrete:plates,concrete:lanes,metal,wood,paving_stones,sett,cobblestone,gravel,fine_gravel,pebblestone,compacted,grass_paver,grass,sand,ground,dirt,mud"
display_values="Paved,Unpaved,Asphalt,Concrete,Concrete plates,Concrete lanes,Metal,Wood,Paving stones,Sett,Cobblestone,Gravel,Fine gravel,Pebblestone,Compacted,Grass paver,Grass,Sand,Ground,Dirt,Mud" values_sort="false" values_context="surface"/>
</chunk>
<chunk id="footway_surface">
<combo key="footway:surface" text="Segregated footway surface" values="paved,unpaved,asphalt,concrete,concrete:plates,concrete:lanes,metal,wood,paving_stones,sett,cobblestone,gravel,fine_gravel,pebblestone,compacted,grass_paver,grass,sand,ground,dirt,mud"
display_values="Paved,Unpaved,Asphalt,Concrete,Concrete plates,Concrete lanes,Metal,Wood,Paving stones,Sett,Cobblestone,Gravel,Fine gravel,Pebblestone,Compacted,Grass paver,Grass,Sand,Ground,Dirt,Mud" values_sort="false" values_context="surface"/>
</chunk>
<chunk id="cycleway_surface">
<combo key="cycleway:surface" text="Segregated cycleway surface" values="paved,unpaved,asphalt,concrete,concrete:plates,concrete:lanes,metal,wood,paving_stones,sett,cobblestone,gravel,fine_gravel,pebblestone,compacted,grass_paver,grass,sand,ground,dirt,mud"
display_values="Paved,Unpaved,Asphalt,Concrete,Concrete plates,Concrete lanes,Metal,Wood,Paving stones,Sett,Cobblestone,Gravel,Fine gravel,Pebblestone,Compacted,Grass paver,Grass,Sand,Ground,Dirt,Mud" values_sort="false" values_context="surface"/>
</chunk>
<chunk id="surface_smoothness">
<reference ref="surface"/>
<combo key="smoothness" text="Smoothness" values_searchable="true" values_sort="false">
<list_entry value="excellent" short_description="Thin Rollers: rollerblade, skateboard"/>
<list_entry value="good" short_description="Thin Wheels: racing bike"/>
<list_entry value="intermediate" short_description="Wheels: city bike, wheelchair, scooter"/>
<list_entry value="bad" short_description="Robust Wheels: trekking bike, car, rickshaw"/>
<list_entry value="very_bad" short_description="High Clearance: light duty off-road vehicle"/>
<list_entry value="horrible" short_description="Off-Road: heavy duty off-road vehicle"/>
<list_entry value="very_horrible" short_description="Specialized off-road: tractor, ATV"/>
<list_entry value="impassable" short_description="No wheeled vehicle"/>
</combo>
</chunk>
<chunk id="mtb_scale">
<combo key="mtb:scale" text="MTB Scale">
<list_entry value="0" short_description="0: Solid gravel/packed earth, no obstacles, wide curves"/>
<list_entry value="1" short_description="1: Some loose surface, small obstacles, wide curves"/>
<list_entry value="2" short_description="2: Much loose surface, large obstacles, easy hairpins"/>
<list_entry value="3" short_description="3: Slippery surface, large obstacles, tight hairpins"/>
<list_entry value="4" short_description="4: Loose surface or boulders, dangerous hairpins"/>
<list_entry value="5" short_description="5: Maximum difficulty, boulder fields, landslides"/>
<list_entry value="6" short_description="6: Not rideable"/>
</combo>
</chunk>
<chunk id="riding_surface">
<combo key="leisure" text="Type" values="horse_riding,pitch,sports_centre,stadium,track" display_values="Horse riding,Pitch,Sports centre,Stadium,Track" values_context="riding"/>
<combo key="surface" text="Surface" values="grass,sand,clay,dirt,fine_gravel,ground,mud,unpaved,compacted"
display_values="Grass,Sand,Clay,Dirt,Fine gravel,Ground,Mud,Unpaved,Compacted"/>
</chunk>
<chunk id="lanes">
<combo key="lanes" text="Lanes" values="1,2,3,4,5,6" length="3" match="none" value_type="integer"/>
<combo key="lanes:forward" text="Lanes →" long_text="Number of lanes in way direction" values="1,2,3,4,5" length="3" match="none" value_type="integer"/>
<combo key="lanes:backward" text="Lanes ←" long_text="Number of lanes opposite way direction" values="1,2,3,4,5" length="3" match="none" value_type="integer"/>
<preset_link preset_name="Public transport lanes"/>
</chunk>
<chunk id="maxspeed">
<text key="maxspeed" text="Max speed" long_text="Maximum speed in km/h if no units specified"/>
</chunk>
<chunk id="highway_base">
<reference ref="maxspeed"/>
<preset_link preset_name="Cond. & direct. max speed"/>
<space/>
<reference ref="surface_smoothness"/>
<space/>
<reference ref="lanes"/>
</chunk>
<chunk id="layer">
<combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5" length="3" match="none" editable="true" value_type="integer"/>
</chunk>
<chunk id="name">
<text key="name" text="Name"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="name_layer">
<reference ref="name"/>
<reference ref="layer"/>
</chunk>
<chunk id="tunnel">
<combo key="tunnel" text="Tunnel" values="yes,building_passage" display_values="Yes,Building passage" values_sort="false" match="key"/>
<optional>
<reference ref="layer"/>
<text key="width" text="Width (meters)"/>
<text key="maxheight" text="Max. height (meters)"/>
<reference ref="maxspeed"/>
<reference ref="incline"/>
</optional>
</chunk>
<chunk id="highway_additional">
<check key="bridge" text="Bridge" disable_off="true"/>
<reference ref="tunnel"/>
<reference ref="layer"/>
<check key="cutting" text="Cutting" disable_off="true"/>
<check key="embankment" text="Embankment" disable_off="true"/>
<reference ref="incline"/>
<check key="noexit" text="No exit (cul-de-sac)" disable_off="true"/>
<check key="narrow" text="Narrow" disable_off="true"/>
</chunk>
<chunk id="highway_additional_oneway">
<check key="oneway" text="Oneway" disable_off="true"/>
<reference ref="highway_additional"/>
<combo key="overtaking" text="Overtaking" values="yes,both,forward,backward,no" display_values="Yes,Both directions,In way direction,Opposite to way direction,No" values_sort="false" values_context="overtaking" match="key"/>
</chunk>
<chunk id="highway_additional_oneway_lit_width">
<reference ref="highway_additional_oneway"/>
<check key="lit" text="Lit" disable_off="true"/>
<text key="width" text="Width (meters)"/>
</chunk>
<chunk id="sidewalk">
<combo key="sidewalk" text="Sidewalk" values_context="sidewalk" match="key">
<list_entry value="both" short_description="Both sides"/>
<list_entry value="left" short_description="Only left side"/>
<list_entry value="right" short_description="Only right side"/>
<list_entry value="no" short_description="None"/>
<list_entry value="separate" short_description="Mapped separately"/>
</combo>
</chunk>
<chunk id="highway_additional_oneway_lit_width_sidewalk">
<reference ref="highway_additional_oneway_lit_width"/>
<reference ref="sidewalk"/>
</chunk>
<chunk id="highway_additional_oneway_lit_width_sidewalk_winter">
<reference ref="highway_additional_oneway_lit_width_sidewalk"/>
<reference ref="sidewalk"/>
<check key="winter_road" text="Winter road" disable_off="true" />
<check key="ice_road" text="Ice road" disable_off="true" />
</chunk>
<chunk id="major_highway_additional">
<text key="destination" text="Destination"/>
<text key="destination:ref" text="Destination reference"/>
<text key="junction:ref" text="Junction reference" />
<text key="width" text="Width (meters)"/>
<reference ref="placement"/>
<checkgroup text="Additional attributes" columns="4">
<check key="oneway" text="Oneway" default="on"/>
<check key="motorroad" text="Motorroad" default="on"/>
<check key="bridge" text="Bridge" disable_off="true"/>
<check key="tunnel" text="Tunnel" disable_off="true"/>
<check key="cutting" text="Cutting" disable_off="true"/>
<check key="embankment" text="Embankment" disable_off="true"/>
<check key="lit" text="Lit" disable_off="true"/>
<check key="toll" text="Toll" disable_off="true"/>
<check key="winter_road" text="Winter road" disable_off="true" />
<check key="ice_road" text="Ice road" disable_off="true" />
</checkgroup>
</chunk>
<chunk id="highway_ref">
<text key="ref" text="Reference"/>
<optional>
<text key="unsigned_ref" text="Unsigned reference"/>
</optional>
</chunk>
<chunk id="crossing_type">
<multiselect key="crossing" text="Crossing type" values_context="pedestrian" text_context="pedestrian">
<list_entry value="uncontrolled" short_description="Not controlled" icon="presets/vehicle/crossing.svg"/>
<list_entry value="traffic_signals" short_description="Traffic signals" icon="presets/vehicle/crossing_traffic_signals.svg"/>
<list_entry value="island" short_description="Island (deprecated)" icon="presets/vehicle/crossing_island.svg"/>
<list_entry value="unmarked" short_description="Unmarked" icon="presets/vehicle/crossing_unmarked.svg"/>
<list_entry value="no" short_description="No crossing"/>
</multiselect>
<check key="crossing:island" text="With island" />
<optional>
<combo key="crossing_ref" text="Crossing type name (UK)" values="zebra,pelican,toucan,puffin,pegasus,tiger" values_searchable="true"/>
</optional>
</chunk>
<chunk id="railway_service">
<combo key="service" text="Service type" values="yard,siding,spur,crossover" display_values="Yard,Siding,Spur,Crossover" values_context="railway" />
</chunk>
<chunk id="railway_electrified">
<combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" values_context="electrified"/>
<combo key="voltage" text="Voltage in Volts (V)" values="600,650,750,1500,3000,15000,25000" length="5"/>
<combo key="frequency" text="Frequency in Hertz (Hz)" values="0,16.67,16.7" length="5"/>
</chunk>
<chunk id="railway_service_gauge_electrified">
<reference ref="railway_service"/>
<combo key="tracks" text="Tracks" text_context="railway" values="1,2,3,4" length="4"/>
<combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" length="4"/>
<reference ref="railway_electrified"/>
</chunk>
<chunk id="barrier_5">
<optional text="Allowed traffic:">
<check key="foot" text="Foot"/>
<check key="bicycle" text="Bicycle"/>
<check key="horse" text="Horse"/>
<check key="motorcycle" text="Motorcycle"/>
<check key="motorcar" text="Motorcar"/>
</optional>
</chunk>
<chunk id="barrier_4">
<optional text="Allowed traffic:">
<check key="foot" text="Foot"/>
<check key="bicycle" text="Bicycle"/>
<check key="horse" text="Horse"/>
<check key="motorcycle" text="Motorcycle"/>
</optional>
</chunk>
<chunk id="barrier_2">
<optional text="Allowed traffic:">
<check key="foot" text="Foot"/>
<check key="bicycle" text="Bicycle"/>
</optional>
</chunk>
<chunk id="traffic_signals_direction">
<combo key="direction" text="For traffic direction" values="N,E,S,W,0,90,180,270,forward,backward"
display_values="North,East,South,West,0°,90°,180°,270°,Forward,Backward" values_sort="false" />
</chunk>
<chunk id="min_age">
<text key="min_age" text="Minimum age" value_type="integer"/>
</chunk>
<chunk id="max_age">
<text key="max_age" text="Maximum age" value_type="integer"/>
</chunk>
<chunk id="min_max_age">
<reference ref="min_age"/>
<reference ref="max_age"/>
</chunk>
<chunk id="name_ref">
<text key="name" text="Name"/>
<text key="ref" text="Reference"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="name_ref_operator">
<text key="name" text="Name"/>
<text key="ref" text="Reference"/>
<text key="operator" text="Operator"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="name_operator">
<text key="name" text="Name"/>
<text key="operator" text="Operator"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="level">
<combo text="Level" long_text="For indoor mapping, level 0 is the ground floor" key="level" length="3" values="20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,-1,-2,-3,-4,-5" values_sort="false" match="none" editable="true"/>
</chunk>
<chunk id="optional_level">
<optional>
<reference ref="level"/>
</optional>
</chunk>
<chunk id="door_type">
<combo key="door" text="Door type" values="hinged,sliding,revolving,folding,trapdoor,overhead,loadingdock,no" display_values="Hinged,Sliding,Revolving,Folding,Trapdoor,Overhead,Loadingdock,None" values_context="entrance" match="key"/>
</chunk>
<chunk id="service_times">
<combo key="service_times" text="Service Times" delimiter="|" values="18:00|sunset,sunrise|Su 09:30,11:00|Sa,Su,PH 09:00|Sa 18:00; Su 10:45|Fr 08:00-18:00; Apr 10-15 off; Jun 07:00-20:00; Aug off; Dec 24 08:00-24:00|Sa 10:00+|week 01-53/2 Fr 09:00-12:00; week 02-52/2 We 09:00-12:00" values_no_i18n="true" match="none" editable="true"/>
</chunk>
<chunk id="oh">
<combo key="opening_hours" text="Opening Hours" delimiter="|" values="24/7|08:30-12:30,15:30-20:00|Sa-Su 00:00-24:00|Mo-Fr 08:30-20:00; Sa,Su 08:00-15:00; PH off|Mo-Fr 08:30-20:00, Tu-Su 08:00-15:00; Sa 08:00-12:00|Mo-Su 08:00-18:00; Apr 10-15 off; Jun 08:00-14:00; Aug off; Dec 25 off|sunrise-sunset|Su 10:00+|week 01-53/2 Fr 09:00-12:00; week 02-52/2 We 09:00-12:00" values_no_i18n="true" match="none" editable="true"/>
</chunk>
<chunk id="optional_oh">
<optional>
<combo key="opening_hours" text="Opening Hours" delimiter="|" values="24/7|08:30-12:30,15:30-20:00|Sa-Su 00:00-24:00|Mo-Fr 08:30-20:00; Sa,Su 08:00-15:00; PH off|Mo-Fr 08:30-20:00, Tu-Su 08:00-15:00; Sa 08:00-12:00|Mo-Su 08:00-18:00; Apr 10-15 off; Jun 08:00-14:00; Aug off; Dec 25 off|sunrise-sunset|Su 10:00+|week 01-53/2 Fr 09:00-12:00; week 02-52/2 We 09:00-12:00" values_no_i18n="true" match="none" editable="true"/>
</optional>
</chunk>
<chunk id="changing_table">
<combo key="diaper" text="Diaper changing (deprecated)" values_sort="false">
<list_entry value="yes" short_description="Available"/>
<list_entry value="no" short_description="Not available"/>
<list_entry value="room" short_description="Dedicated room"/>
<list_entry value="1" short_description="1 table"/>
<list_entry value="2" short_description="2 tables"/>
<list_entry value="3" short_description="3 tables"/>
<list_entry value="4" short_description="4 tables"/>
<list_entry value="5" short_description="5 tables"/>
</combo>
<combo key="changing_table" text="Baby changing table" values_sort="false">
<list_entry value="yes" short_description="Available"/>
<list_entry value="limited" short_description="Inofficial"/>
<list_entry value="no" short_description="Not available"/>
</combo>
<check key="changing_table:fee" text="Changing table fee"/>
<combo key="changing_table:count" text="Changing table count" values="1,2,3,4,5" value_type="integer" values_sort="false" />
<multiselect key="changing_table:location" text="Changing table location">
<list_entry value="wheelchair_toilet" short_description="Wheelchair users toilet"/>
<list_entry value="female_toilet" short_description="Womens toilet"/>
<list_entry value="male_toilet" short_description="Mens toilet"/>
<list_entry value="unisex_toilet" short_description="Unisex toilet"/>
<list_entry value="dedicated_room" short_description="Dedicated room"/>
<list_entry value="room" short_description="Multi purpose room"/>
<list_entry value="sales_area" short_description="Sales area"/>
</multiselect>
</chunk>
<chunk id="toilets">
<check key="toilets" text="Toilets" />
<reference ref="changing_table"/>
<combo key="toilets:wheelchair" text="Wheelchair toilets" match="none" values_searchable="true" values_sort="false">
<list_entry value="designated" short_description="Dedicated facilities"/>
<list_entry value="yes" short_description="Unrestricted access"/>
<list_entry value="limited" short_description="Partial access"/>
<list_entry value="no" short_description="No access"/>
</combo>
</chunk>
<chunk id="toilets_with_access">
<reference ref="toilets"/>
<combo key="toilets:access" text="Toilet access" values="yes,permissive,customers,private" display_values="Public,Permissive,Customers,Private" match="none"/>
</chunk>
<chunk id="wheelchair">
<combo key="wheelchair" text="Wheelchairs" match="none" values_searchable="true" values_sort="false">
<list_entry value="designated" short_description="Dedicated facilities"/>
<list_entry value="yes" short_description="Unrestricted access"/>
<list_entry value="limited" short_description="Partial access"/>
<list_entry value="no" short_description="No access"/>
</combo>
<optional>
<text key="wheelchair:description" text="Wheelchair access details" length="255" i18n="true"/>
<text key="wheelchair:entrance_width" text="Entrance width in cm"/>
<text key="wheelchair:step_height" text="Step height in cm"/>
</optional>
</chunk>
<chunk id="wheelchair_rooms">
<optional>
<text key="wheelchair:rooms" text="Number of rooms suitable for wheelchairs" alue_type="integer"/>
</optional>
</chunk>
<chunk id="wheelchair_seating">
<optional>
<text key="wheelchair:places" text="Number of wheelchair seating places" alue_type="integer"/>
</optional>
</chunk>
<chunk id="oh_wheelchair">
<reference ref="oh"/>
<reference ref="wheelchair"/>
</chunk>
<chunk id="oh_wheelchair_level">
<reference ref="oh_wheelchair"/>
<reference ref="level"/>
</chunk>
<chunk id="oh_wheelchair_toilets">
<reference ref="oh_wheelchair"/>
<reference ref="toilets_with_access"/>
</chunk>
<chunk id="name_oh_wheelchair">
<text key="name" text="Name"/>
<reference ref="oh_wheelchair"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="name_wheelchair">
<text key="name" text="Name"/>
<reference ref="wheelchair"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="name_oh_wheelchair_toilets">
<text key="name" text="Name"/>
<reference ref="oh_wheelchair"/>
<reference ref="toilets_with_access"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="name_wheelchair_toilets">
<text key="name" text="Name"/>
<reference ref="wheelchair"/>
<reference ref="toilets_with_access"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="name_oh_wheelchair_level">
<reference ref="name_oh_wheelchair"/>
<reference ref="level"/>
</chunk>
<chunk id="name_wheelchair_level">
<reference ref="name_wheelchair"/>
<reference ref="level"/>
</chunk>
<chunk id="name_oh_wheelchair_level_toilets">
<reference ref="name_oh_wheelchair"/>
<reference ref="level"/>
<reference ref="toilets_with_access"/>
</chunk>
<chunk id="name_operator_level">
<reference ref="name_operator"/>
<reference ref="level"/>
</chunk>
<chunk id="name_operator_oh_wheelchair">
<reference ref="name_operator"/>
<reference ref="oh_wheelchair"/>
</chunk>
<chunk id="name_operator_wheelchair">
<reference ref="name_operator"/>
<reference ref="wheelchair"/>
</chunk>
<chunk id="name_operator_oh_wheelchair_toilets">
<reference ref="name_operator"/>
<reference ref="oh_wheelchair"/>
<reference ref="toilets_with_access"/>
</chunk>
<chunk id="name_operator_wheelchair_level">
<reference ref="name_operator_wheelchair"/>
<reference ref="level"/>
</chunk>
<chunk id="name_operator_oh_wheelchair_level">
<reference ref="name_operator_oh_wheelchair"/>
<reference ref="level"/>
</chunk>
<chunk id="name_operator_oh_wheelchair_level_toilets">
<reference ref="name_operator_oh_wheelchair_level"/>
<reference ref="toilets_with_access"/>
</chunk>
<chunk id="brand">
<text key="brand" text="Brand"/>
<optional>
<text key="brand:wikipedia" text="Brand wikipedia entry" value_type="wikipedia"/>
<text key="brand:wikidata" text="Brand wikidata entry" value_type="wikidata"/>
</optional>
</chunk>
<chunk id="name_brand_operator_oh_wheelchair">
<text key="name" text="Name"/>
<reference ref="brand"/>
<text key="operator" text="Operator"/>
<reference ref="oh_wheelchair"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="optional_name_brand_operator_oh_wheelchair">
<optional>
<text key="name" text="Name"/>
<reference ref="brand"/>
<text key="operator" text="Operator"/>
</optional>
<reference ref="oh_wheelchair"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="name_brand_operator_oh_wheelchair_level">
<reference ref="name_brand_operator_oh_wheelchair"/>
<reference ref="level"/>
</chunk>
<chunk id="name_brand_operator_oh_wheelchair_level_toilets">
<reference ref="name_brand_operator_oh_wheelchair"/>
<reference ref="level"/>
<reference ref="toilets_with_access"/>
</chunk>
<chunk id="name_brand_oh_wheelchair">
<text key="name" text="Name"/>
<text key="brand" text="Brand"/>
<reference ref="oh_wheelchair"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="name_brand_oh_wheelchair_level">
<text key="name" text="Name"/>
<reference ref="brand"/>
<reference ref="oh_wheelchair"/>
<reference ref="level"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="name_brand_oh_wheelchair_toilets">
<text key="name" text="Name"/>
<reference ref="brand"/>
<reference ref="oh_wheelchair"/>
<reference ref="toilets_with_access"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="name_brand_oh_wheelchair_toilets_level">
<text key="name" text="Name"/>
<reference ref="brand"/>
<reference ref="oh_wheelchair"/>
<reference ref="toilets_with_access"/>
<reference ref="level"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="organic">
<combo key="organic" text="Organic" values="only,yes,no" display_values="Only,Yes,No"/>
</chunk>
<chunk id="cuisine">
<multiselect key="cuisine" text="Cuisine"
values="african;american;arab;argentinian;asian;bagel;balkan;barbecue;bavarian;beef_bowl;brazilian;burger;cake;caribbean;chicken;chinese;coffee_shop;crepe;curry;danish;donut;ethiopian;filipino;fish;fish_and_chips;fondue;french;friture;frozen_yogurt;german;georgian;greek;heuriger;hot_dog;ice_cream;indian;indonesian;international;italian;japanese;kebab;korean;lebanese;malaysian;mediterranean;mexican;moroccan;noodle;pancake;pasta;persian;peruvian;pizza;polish;portuguese;ramen;regional;russian;sandwich;sausage;seafood;soba;spanish;steak_house;sushi;tex-mex;tapas;thai;turkish;vietnamese;wings"
display_values="African;American;Arab;Argentinian;Asian;Bagel;Balkan;Barbecue;Bavarian;Beef bowl;Brazilian;Burger;Cake;Caribbean;Chicken;Chinese;Coffee shop;Crepe;Curry;Danish;Donut;Ethiopian;Filipino;Fish;Fish and chips;Fondue;French;Friture;Frozen yogurt;German;Georgian;Greek;Heuriger;Hot dog;Ice cream;Indian;Indonesian;International;Italian;Japanese;Kebab;Korean;Lebanese;Malaysian;Mediterranean;Mexican;Moroccan;Noodle;Pancake;Pasta;Persian;Peruvian;Pizza;Polish;Portuguese;Ramen;Regional;Russian;Sandwich;Sausage;Seafood;Soba;Spanish;Steak house;Sushi;Tex-mex;Tapas;Thai;Turkish;Vietnamese;Wings" values_searchable="true" match="key"/>
</chunk>
<chunk id="clothes">
<multiselect key="clothes" text="Kind of clothes" values_searchable="true" match="key">
<list_entry value="babies" short_description="Babies"/>
<list_entry value="children" short_description="Children"/>
<list_entry value="costumes" short_description="Costumes"/>
<list_entry value="denim" short_description="Denim"/>
<list_entry value="fashion" short_description="Fashion"/>
<list_entry value="fur" short_description="Fur"/>
<list_entry value="hats" short_description="Hats"/>
<list_entry value="leather" short_description="Leather"/>
<list_entry value="maternity" short_description="Maternity"/>
<list_entry value="men" short_description="Men"/>
<list_entry value="motorcycle" short_description="Motorcycle"/>
<list_entry value="oversize" short_description="Oversize"/>
<list_entry value="schoolwear" short_description="Schoolwear"/>
<list_entry value="sports" short_description="Sports"/>
<list_entry value="suits" short_description="Suits"/>
<list_entry value="swimwear" short_description="Swimwear"/>
<list_entry value="traditional" short_description="Traditional"/>
<list_entry value="underwear" short_description="Underwear"/>
<list_entry value="wedding" short_description="Wedding"/>
<list_entry value="women" short_description="Women"/>
<list_entry value="workwear" short_description="Workwear"/>
</multiselect>
</chunk>
<chunk id="internet">
<combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no" display_values="Available,WLAN,Wired,Terminal,Not available" values_sort="false"/>
<combo key="internet_access:fee" text="Internet access fee" values="yes,no" display_values="Yes,No"/>
</chunk>
<chunk id="internet_smoking">
<reference ref="internet"/>
<combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,outside,no" display_values="Yes,Dedicated,Separated,Isolated,Outside,No" values_sort="false"/>
</chunk>
<chunk id="optional_height">
<optional>
<text key="height" text="Height (meters)" length="7"/>
</optional>
</chunk>
<chunk id="optional_maxwidth">
<optional>
<text key="maxwidth" text="Max. width (meters)" length="7"/>
</optional>
</chunk>
<chunk id="optional_maxheight_maxwidth">
<optional>
<text key="maxheight" text="Max. height (meters)" length="7"/>
<text key="maxwidth" text="Max. width (meters)" length="7"/>
</optional>
</chunk>
<chunk id="optional_name">
<optional>
<text key="name" text="Name"/>
</optional>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="optional_name_operator">
<optional>
<text key="name" text="Name"/>
<text key="operator" text="Operator"/>
</optional>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="optional_name_wikipedia">
<optional>
<text key="name" text="Name"/>
<text key="wikipedia" text="Wikipedia" value_type="wikipedia"/>
<text key="wikidata" text="Wikidata" value_type="wikidata"/>
</optional>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="sport_facility">
<combo key="leisure" text="Type" values="pitch,sports_centre,stadium" display_values="Pitch,Sports centre,Stadium" values_context="sport"/>
</chunk>
<chunk id="sport_facility_track">
<combo key="leisure" text="Type" values="pitch,sports_centre,stadium,track" display_values="Pitch,Sports centre,Stadium,Track" values_context="sport"/>
</chunk>
<chunk id="name_leisure_pitch">
<reference ref="optional_name"/>
<reference ref="sport_facility"/>
</chunk>
<chunk id="sport">
<multiselect key="sport" text="Sport"
values="multi;archery;athletics;american_football;australian_football;badminton;baseball;basketball;beachvolleyball;billiards;boules;bowls;canadian_football;canoe;chess;climbing;cricket;croquet;cycling;dog_racing;equestrian;field_hockey;fitness;gaelic_games;golf;gymnastics;handball;horse_racing;horseshoes;ice_hockey;karting;martial_arts;model_aerodrome;motocross;motor;netball;pelota;racquet;rc_car;rowing;rugby_league;rugby_union;running;safety_training;shooting;shuffleboard;skateboard;skating;softball;roller_skating;ice_skating;soccer;swimming;table_tennis;tennis;volleyball;yoga;9pin;10pin"
display_values="Multiple;Archery;Athletics;American football;Australian football;Badminton;Baseball;Basketball;Beach volleyball;Billiards;Boules;Bowls;Canadian football;Canoe;Chess;Climbing;Cricket;Croquet;Cycling;Dog racing;Equestrian;Field hockey;Fitness;Gaelic games;Golf;Gymnastics;Handball;Horse racing;Horseshoes;Ice hockey;Karting;Martial arts;Model aerodrome;Motocross;Motor;Netball;Pelota;Racquet;RC car;Rowing;Rugby league;Rugby union;Running;Safety training;Shooting;Shuffleboard;Skateboard;Skating;Softball;Roller skating;Ice skating;Soccer;Swimming;Table tennis;Tennis;Volleyball;Yoga;9pin;10pin"
match="key" values_context="sport"/>
</chunk>
<chunk id="bin">
<combo key="bin" text="Bin" values="yes,no" display_values="Yes,No" default=""/>
</chunk>
<chunk id="fee">
<combo key="fee" text="Fee" values="yes,no" display_values="Yes,No" match="none"/>
</chunk>
<chunk id="fee_interval">
<combo key="fee" text="Fee" delimiter="|" value_type="opening_hours_mixed" values="yes|no" display_values="Yes|No" match="none" values_sort="false" editable="true"/>
</chunk>
<chunk id="parking_name_type_ref">
<combo key="parking" text="Type" values="multi-storey,surface,underground,rooftop,sheds,carports,garage_boxes" display_values="Multi-storey,Surface,Underground,Rooftop,Sheds,Carports,Garage boxes" values_context="parking"/>
<optional>
<text key="name" text="Name"/>
<text key="ref" text="Reference number"/>
</optional>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="parking_access_fee_operator_surface_smoothness">
<space/>
<combo key="access" text="Access" values="yes,private,customers,permissive,no" display_values="General access,Private,Customers,Permissive,No access" values_sort="false" match="none"/>
<reference ref="fee_interval"/>
<text key="operator" text="Operator"/>
<reference ref="surface_smoothness"/>
</chunk>
<chunk id="maxstay">
<combo key="maxstay" text="Time Limit (minutes)" values="0,30,60,90,120,180" match="none" editable="true"/>
</chunk>
<chunk id="supervised">
<combo key="supervised" text="Supervised" delimiter="|" value_type="opening_hours_mixed" values="yes|no" display_values="Yes|No" values_sort="false" match="none" editable="true"/>
</chunk>
<chunk id="supervised_lit_oh">
<reference ref="supervised"/>
<combo key="lit" text="Lit" delimiter="|" value_type="opening_hours_mixed" values="yes|no" display_values="Yes|No" values_sort="false" match="none" editable="true"/>
<optional>
<reference ref="oh"/>
</optional>
</chunk>
<chunk id="general_access">
<combo key="access" text="General Access" values="yes,destination,delivery,permissive,private,customers,agricultural,forestry,permit,no" display_values="General access,Destination,Delivery,Permissive,Private,Customers,Agricultural,Forestry,Permit required,No access" values_context="access" values_sort="false" values_searchable="true" match="none"/>
</chunk>
<chunk id="name_wikipedia">
<text key="name" text="Name"/>
<text key="wikipedia" text="Wikipedia" value_type="wikipedia"/>
<text key="wikidata" text="Wikidata" value_type="wikidata"/>
<preset_link preset_name="Name"/>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="population_postcode_website">
<text key="population" text="Population"/>
<text key="postal_code" text="Postal code"/>
<text key="website" text="Website" value_type="website"/>
</chunk>
<chunk id="route_hikebike_optionals">
<check key="network:type" text="Node network" value_on="node_network" disable_off="true" />
<text key="ref" text="Reference"/>
<text key="operator" text="Operator"/>
<text key="distance" text="Distance (km)"/>
<text key="ascent" text="Ascent (m)"/>
<text key="descent" text="Descent (m)"/>
<check key="roundtrip" text="Roundtrip"/>
<text key="symbol" text="Symbol description"/>
<text key="description" text="Description" length="255" />
</chunk>
<chunk id="genus_species_taxon">
<text key="genus" text="Genus"/>
<text key="species" text="Species"/>
<text key="taxon" text="Taxon"/>
</chunk>
<chunk id="leaf">
<combo key="leaf_type" text="Leaf type" values="broadleaved,needleleaved,mixed,leafless" display_values="Broadleaved,Needleleaved,Mixed,Leafless" values_searchable="true"/>
<combo key="leaf_cycle" text="Leaf cycle" values_searchable="true">
<list_entry value="deciduous" display_value="Deciduous" short_description="Plants that are leafless for a certain period during the year."/>
<list_entry value="evergreen" display_value="Evergreen" short_description="Plants that are never entirely without green foliage."/>
<list_entry value="semi_deciduous" display_value="Semi deciduous" short_description="Plants that lose their foliage for a very short period, when old leaves fall off and new foliage growth is starting."/>
<list_entry value="semi_evergreen" display_value="Semi evergreen" short_description="Plants that lose most, but not all, of their foliage for a fraction of the year."/>
<list_entry value="mixed" display_value="Mixed" short_description="Habitat with evergreen and deciduous vegetation."/>
</combo>
</chunk>
<!-- start of religions and denominations -->
<chunk id="religious"> <!-- all religions and denominations -->
<combo key="religion" text="Religion"
values="bahai,buddhist,caodaism,christian,confucian,hindu,jain,jewish,muslim,shinto,sikh,spiritualist,taoist,tenrikyo,unitarian_universalist,zoroastrian"
display_values="Bahai,Buddhist,Caodaism,Christian,Confucian,Hindu,Jain,Jewish,Muslim,Shinto,Sikh,Spiritualist,Taoist,Tenrikyo,Unitarian universalist,Zoroastrian"/>
<combo key="denomination" text="Denomination"
values="anglican,baptist,catholic,church_of_scotland,conservative,evangelical,greek_catholic,greek_orthodox,ibadi,iglesia_ni_cristo,jehovahs_witness,lutheran,mahayana,methodist,mormon,new_apostolic,nondenominational,old_catholic,orthodox,pentecostal,presbyterian,protestant,quaker,reform,reformed,roman_catholic,romanian_orthodox,russian_orthodox,serbian_orthodox,seventh_day_adventist,shaivism,shaktism,shia,smartism,spiritist,sunni,tibetan,theravada,united,united_methodist,vaishnavism,vajrayana"
display_values="Anglican,Baptist,Catholic,Church of Scotland,Conservative,Evangelical,Greek catholic,Greek orthodox,Ibadi,Iglesia ni cristo,Jehovahs witness,Lutheran,Mahayana,Methodist,Mormon,New apostolic,Nondenominational,Old catholic,Orthodox,Pentecostal,Presbyterian,Protestant,Quaker,Reform,Reformed,Roman catholic,Romanian orthodox,Russian orthodox,Serbian orthodox,Seventh day adventist,Shaivism,Shaktism,Shia,Smartism,Spiritist,Sunni,Tibetan,Theravada,United,United methodist,Vaishnavism,Vajrayana"/>
</chunk>
<chunk id="religious_catholic_christian"> <!-- special case for wayside_shrine and wayside_cross: all religions and catholic denominations with default to catholic christian -->
<combo key="religion" text="Religion"
values="bahai,buddhist,caodaism,christian,confucian,hindu,jain,jewish,muslim,shinto,sikh,spiritualist,taoist,tenrikyo,unitarian_universalist,zoroastrian"
display_values="Bahai,Buddhist,Caodaism,Christian,Confucian,Hindu,Jain,Jewish,Muslim,Shinto,Sikh,Spiritualist,Taoist,Tenrikyo,Unitarian universalist,Zoroastrian"
default="christian" values_searchable="true" />
<combo key="denomination" text="Denomination"
values="catholic,greek_catholic,old_catholic,orthodox,roman_catholic"
display_values="Catholic,Greek catholic,Old catholic,Orthodox,Roman catholic"
default="catholic" values_searchable="true" use_last_as_default="true" />
</chunk>
<chunk id="other_religions"> <!-- religions which don't have an own preset -->
<combo key="religion" text="Religion" values="bahai,caodaism,confucian,jain,sikh,spiritualist,taoist,tenrikyo,unitarian_universalist,zoroastrian"
display_values="Bahai,Caodaism,Confucian,Jain,Sikh,Spiritualist,Taoist,Tenrikyo,Unitarian universalist,Zoroastrian"
match="keyvalue!" values_searchable="true" />
</chunk>
<chunk id="christian_denominations"> <!-- christian denominations -->
<combo key="denomination" text="Denomination"
values="anglican,baptist,catholic,church_of_scotland,evangelical,greek_catholic,greek_orthodox,iglesia_ni_cristo,jehovahs_witness,lutheran,methodist,mormon,new_apostolic,nondenominational,old_catholic,orthodox,pentecostal,presbyterian,protestant,quaker,reformed,roman_catholic,romanian_orthodox,russian_orthodox,serbian_orthodox,seventh_day_adventist,spiritist,united,united_methodist"
display_values="Anglican,Baptist,Catholic,Church of Scotland,Evangelical,Greek catholic,Greek orthodox,Iglesia ni cristo,Jehovahs witness,Lutheran,Methodist,Mormon,New apostolic,Nondenominational,Old catholic,Orthodox,Pentecostal,Presbyterian,Protestant,Quaker,Reformed,Roman catholic,Romanian orthodox,Russian orthodox,Serbian orthodox,Seventh day adventist,Spiritist,United,United methodist"
values_searchable="true" />
</chunk>
<chunk id="muslim_denominations"> <!-- muslim denominations -->
<combo key="denomination" text="Denomination" values="ibadi,nondenominational,shia,sunni" display_values="Ibadi,Nondenominational,Shia,Sunni" values_searchable="true" />
</chunk>
<chunk id="jewish_denominations"> <!-- jewish denominations -->
<combo key="denomination" text="Denomination" values="orthodox,conservative,nondenominational,reform" display_values="Orthodox,Conservative,Nondenominational,Reform" values_context="jewish" values_searchable="true" /> <!-- values_context because of orthodox, #9629 -->
</chunk>
<chunk id="buddhist_denominations"> <!-- buddhist denominations -->
<combo key="denomination" text="Denomination" values="tibetan,theravada,mahayana,vajrayana" display_values="Tibetan,Theravada,Mahayana,Vajrayana" values_searchable="true" />
</chunk>
<chunk id="hindu_denominations"> <!-- hindu denominations -->
<combo key="denomination" text="Denomination" values="vaishnavism,shaivism,shaktism,smartism" display_values="Vaishnavism,Shaivism,Shaktism,Smartism" values_searchable="true" />
</chunk>
<!-- shinto and the religions which don't have an own preset don't have denominations (yet) -->
<!-- end of religions and denominations -->
<chunk id="voltage">
<combo key="voltage" text="Voltage in Volts (V)" values="1150000,765000,750000,735000,500000,450000,420000,400000,380000,350000,345000,330000,315000,300000,275000,238000,230000,225000,220000,200000,161000,154000,150000,138000,132000,120000,115000,110000,100000,90000,69000,66000,65000,63000,60000,55000,49000,45000,35000,33000,30000,22000,20000,15000,15000,110000;20000" values_sort="false"/>
</chunk>
<chunk id="frequency">
<combo key="frequency" text="Frequency in Hertz (Hz)" values="0,16.67,16.7,50,60" length="5" values_sort="false"/>
</chunk>
<chunk id="voltage_frequency">
<reference ref="voltage"/>
<reference ref="frequency"/>
</chunk>
<chunk id="transformer_voltage_frequency">
<combo key="voltage:primary" text="Primary voltage in Volts (V)" values="765000,750000,735000,500000,450000,420000,400000,380000,350000,345000,330000,315000,300000,275000,238000,230000,225000,220000,200000,161000,154000,150000,138000,132000,120000,115000,110000,100000,90000,69000,66000,65000,63000,60000,55000,49000,45000,35000,33000,30000,20000,15000"/>
<combo key="voltage:secondary" text="Secondary voltage in Volts (V)" values="765000,750000,735000,500000,450000,420000,400000,380000,350000,345000,330000,315000,300000,275000,238000,230000,225000,220000,200000,161000,154000,150000,138000,132000,120000,115000,110000,100000,90000,69000,66000,65000,63000,60000,55000,49000,45000,35000,33000,30000,20000,15000"/>
<combo key="voltage:tertiary" text="Tertiary voltage in Volts (V)" values="765000,750000,735000,500000,450000,420000,400000,380000,350000,345000,330000,315000,300000,275000,238000,230000,225000,220000,200000,161000,154000,150000,138000,132000,120000,115000,110000,100000,90000,69000,66000,65000,63000,60000,55000,49000,45000,35000,33000,30000,20000,15000"/>
<reference ref="frequency"/>
</chunk>
<chunk id="ref_operator">
<text key="ref" text="Reference"/>
<text key="operator" text="Operator"/>
</chunk>
<chunk id="cables">
<combo key="cables" text="Cable count" values="1,2,3,4,6,9,12" values_sort="false"/>
</chunk>
<chunk id="cables_circuits">
<reference ref="cables"/>
<combo key="circuits" text="Number of circuits" values="1,2,3,4"/>
</chunk>
<chunk id="power_loc">
<combo key="location" text="Location" values="outdoor,indoor,underground,platform,roof" display_values="Outdoor,Indoor,Underground,Platform,Roof" values_context="power"/>
</chunk>
<chunk id="power_extra">
<reference ref="power_loc"/>
<reference ref="voltage_frequency"/>
<reference ref="ref_operator"/>
</chunk>
<chunk id="power_line_extra">
<reference ref="cables_circuits"/>
<reference ref="voltage_frequency"/>
</chunk>
<chunk id="power_generator">
<link wiki="Tag:power=generator"/>
<space/>
<key key="power" value="generator"/>
<reference ref="name_ref_operator"/>
<text key="branch" text="Branch operator"/>
<text key="start_date" text="Start date"/>
</chunk>
<chunk id="power_output">
<optional text="Output forms of energy:">
<combo key="generator:output:biogas" text="biogas" values="yes,2 W,3 kW,5 MW,7 GW" values_sort="false"/>
<combo key="generator:output:electricity" text="electricity" values="yes,2 W,3 kW,5 MW,7 GW" values_sort="false"/>
<combo key="generator:output:hot_water" text="hot water" values="yes,2 W,3 kW,5 MW,7 GW" values_sort="false"/>
<combo key="generator:output:hot_air" text="hot air" values="yes,2 W,3 kW,5 MW,7 GW" values_sort="false"/>
<combo key="generator:output:cold_water" text="cold water" values="yes,2 W,3 kW,5 MW,7 GW" values_sort="false"/>
<combo key="generator:output:cold_air" text="cold air" values="yes,2 W,3 kW,5 MW,7 GW" values_sort="false"/>
<combo key="generator:output:compressed_air" text="compressed air" values="yes,2 W,3 kW,5 MW,7 GW" values_sort="false"/>
<combo key="generator:output:steam" text="steam" values="yes,2 W,3 kW,5 MW,7 GW" values_sort="false"/>
<combo key="generator:output:vacuum" text="vacuum" values="yes,2 W,3 kW,5 MW,7 GW" values_sort="false"/>
<space/>
<reference ref="voltage_frequency"/>
</optional>
</chunk>
<chunk id="power_pole">
<text key="height" text="Height (meters)"/>
<reference ref="material"/>
<combo key="line_attachment" text="Line attachment" values="anchor,pin,pulley,suspension" display_values="Anchor,Pin,Pulley,Suspension" values_context="power" />
<check key="location:transition" text="Location transition" disable_off="true"/>
<reference ref="ref_operator"/>
</chunk>
<chunk id="rating_phases">
<combo key="rating" text="Power rating (kVA/MVA)" values="2700 kVA,12500 kVA,15 MVA,50 MVA,100 MVA"/>
<combo key="phases" text="Phases" values="1,3" length="1"/>
</chunk>
<chunk id="optional_rating_phases">
<optional>
<reference ref="rating_phases"/>
</optional>
</chunk>
<chunk id="optional_transformer_rating_phases_devices_windings">
<optional>
<reference ref="rating_phases"/>
<combo key="devices" text="Number of devices" values="1,2,3,4"/>
<combo key="windings" text="Number of windings" values="1,2,3,4"/>
<!-- #16364: don't use simple "power" context to avoid conflict with "delta" used for power towers -->
<combo key="windings:configuration" text="Windings configuration" values="star,delta,open-delta,zigzag,open,scott,leblanc" values_context="power_windings"/>
</optional>
</chunk>
<chunk id="telecom_medium">
<combo key="telecom:medium" text="Local loop type" values="copper,fibre,coaxial" display_values="Copper,Fibre,Coaxial" values_context="telecom" />
</chunk>
<chunk id="bridge_details">
<combo key="bridge" text="Bridge" values="yes,aqueduct,boardwalk,cantilever,covered,low_water_crossing,trestle,viaduct" display_values="Yes,Aqueduct,Boardwalk,Cantilever,Covered,Low water crossing,Trestle,Viaduct" match="keyvalue!" default="yes" values_context="bridge"/>
<combo key="bridge:structure" text="Structure" values="arch,beam,truss,floating,suspension,cable-stayed,simple-suspension,humpback" display_values="Arch,Beam,Truss,Floating,Suspension,Cable-stayed,Simple-suspension,Humpback" match="key" values_context="bridge"/>
</chunk>
<chunk id="maxweight">
<text key="maxweight" text="Max. weight (tonnes)" match="key" />
</chunk>
<chunk id="optional_bridge">
<optional>
<text key="bridge:name" text="Bridge name" />
<reference ref="layer"/>
<space/>
<reference ref="maxspeed"/>
<space/>
<reference ref="maxweight"/>
<reference ref="incline"/>
<text key="width" text="Width (meters)"/>
<check key="toll" text="Toll" disable_off="true"/>
</optional>
</chunk>
<chunk id="waterway">
<reference ref="layer"/>
<check key="intermittent" text="Intermittent" disable_off="true"/>
<check key="seasonal" text="Seasonal" disable_off="true"/>
<check key="tidal" text="In the tidal range" disable_off="true"/>
<combo key="tunnel" text="Tunnel" values="culvert,flooded,yes" display_values="Culvert,Flooded,Yes"/>
<text key="width" text="Width (meters)"/>
</chunk>
<chunk id="waterway_wikipedia">
<reference ref="waterway"/>
<text key="wikipedia" text="Wikipedia" value_type="wikipedia"/>
<text key="wikidata" text="Wikidata" value_type="wikidata"/>
</chunk>
<chunk id="water_access">
<optional text="Water access rules:">
<combo key="ship" text="Ship" values="yes,designated,destination,delivery,permissive,private,permit,no" values_sort="false" values_context="access"/>
<combo key="boat" text="Boat" values="yes,designated,destination,delivery,permissive,private,permit,no" values_sort="false" values_context="access"/>
<combo key="motorboat" text="Motorboat" values="yes,designated,destination,delivery,permissive,private,permit,no" values_sort="false" values_context="access"/>
<combo key="canoe" text="Canoe" values="yes,designated,destination,delivery,permissive,private,permit,no" values_sort="false" values_context="access"/>
</optional>
</chunk>
<chunk id="operator_substance">
<text key="operator" text="Operator"/>
<combo key="substance" text="Substance" values="water,gas,heat,oil,sewage" display_values="Water,Gas,Heat,Oil,Sewage"/>
</chunk>
<chunk id="support">
<combo key="support" text="Support" values="pole,wall_mounted,billboard,ground" display_values="Pole,Wall mounted,Billboard,Ground" values_context="mounting/support"/>
</chunk>
<chunk id="aerodrome">
<key key="aeroway" value="aerodrome" match="keyvalue"/>
<text key="name" text="Name"/>
<optional>
<combo key="aerodrome:type" text="Type" values="international,regional,gliding,airfield,private" display_values="International,Regional,Gliding,Airfield,Private"/>
<text key="iata" text="IATA"/>
<text key="icao" text="ICAO"/>
<text key="wikipedia" text="Wikipedia" value_type="wikipedia"/>
<text key="wikidata" text="Wikidata" value_type="wikidata"/>
</optional>
<preset_link preset_name="No name"/>
</chunk>
<chunk id="placement">
<combo key="placement" text="Placement" values="left_of:1,left_of:2,left_of:3,middle_of:1,middle_of:2,middle_of:3,right_of:1,right_of:2,right_of:3,transition"/>
</chunk>
<chunk id="social_facility_for">
<combo key="social_facility:for" text="For group" match="key">
<list_entry value="abused" display_value="Abused"/>
<list_entry value="child" display_value="Children"/>
<list_entry value="disabled" display_value="Disabled"/>
<list_entry value="diseased" display_value="Diseased"/>
<list_entry value="drug_addicted" display_value="Drug addicted"/>
<list_entry value="homeless" display_value="Homeless"/>
<list_entry value="juvenile" display_value="Juveniles"/>
<list_entry value="mental_health" display_value="Mental health"/>
<list_entry value="migrant" display_value="Migrants"/>
<list_entry value="orphan" display_value="Orphans"/>
<list_entry value="senior" display_value="Elderly"/>
<list_entry value="underprivileged" display_value="Underprivileged"/>
<list_entry value="unemployed" display_value="Unemployed"/>
<list_entry value="victim" display_value="Victims"/>
</combo>
</chunk>
<chunk id="stars">
<combo key="stars" text="Stars" values="1,2,3,4,5" display_values="*,**,***,****,*****"/>
</chunk>
<chunk id="car_brands">
<multiselect key="brand" text="Car brand" values="Alfa Romeo;Aston Martin;Audi;Bentley;BMW;Buick;Cadillac;Chevrolet;Chrysler;Citroën;Dacia;Daewoo;Daihatsu;Dodge;Ferrari;Fiat;Ford;GMC;Great Wall;Holden;Honda;Hyundai;Infiniti;Isuzu;Jaguar;Jeep;Kia;Lada;Lancia;Land Rover;Lexus;Lincoln;Lotus;Maserati;Mazda;Mercedes-Benz;Mini;Mitsubishi;Nissan;Opel;Peugeot;Renault;Saab;Seat;Škoda;Smart;SsangYong;Subaru;Suzuki;Toyota;Vauxhall;Volkswagen;Volvo" match="key"/>
</chunk>
<chunk id="motorcycle_brands">
<multiselect key="brand" text="Motorcycle brand" values="Aprillia;BMW;Ducati;Gilera;Harley-Davidson;Honda;Kawasaki;KTM;Kymco;Piaggio;Peugeot;Piaggio;Suzuki;Triumph;Vespa;Yamaha" match="key"/>
</chunk>
<chunk id="walking_routes_roles">
<roles>
<role key="" text="Route segment" requisite="required" type="way,closedway" member_expression="highway|route=ferry"/>
<role key="" text="Infrastructure" requisite="optional" type="node,closedway" member_expression="tourism OR amenity"/>
<role key="" text="Natural" requisite="optional" type="node,closedway" member_expression="natural=peak OR natural=volcano OR mountain_pass=yes OR natural=water OR tourism=viewpoint OR amenity=drinking_water OR natural=spring OR place=locality"/>
<role key="guidepost" text="Guidepost" requisite="optional" type="node" member_expression="information=guidepost"/>
</roles>
</chunk>
<chunk id="kerb">
<combo key="kerb" text="Kerb" match="key" values_sort="false">
<list_entry value="yes" display_value="Present"/>
<list_entry value="lowered" display_value="Lowered"/>
<list_entry value="raised" display_value="Raised"/>
<list_entry value="flush" display_value="Flush"/>
<list_entry value="rolled" display_value="Rolled"/>
<list_entry value="no" display_value="None"/>
</combo>
<combo key="kerb:left" text="Kerb (left)" match="key" values_sort="false">
<list_entry value="yes" display_value="Present"/>
<list_entry value="lowered" display_value="Lowered"/>
<list_entry value="raised" display_value="Raised"/>
<list_entry value="flush" display_value="Flush"/>
<list_entry value="rolled" display_value="Rolled"/>
<list_entry value="no" display_value="None"/>
</combo>
<combo key="kerb:right" text="Kerb (right)" match="key" values_sort="false">
<list_entry value="yes" display_value="Present"/>
<list_entry value="lowered" display_value="Lowered"/>
<list_entry value="raised" display_value="Raised"/>
<list_entry value="flush" display_value="Flush"/>
<list_entry value="rolled" display_value="Rolled"/>
<list_entry value="no" display_value="None"/>
</combo>
</chunk>
<chunk id="colours">
<combo key="colour" text="Color (HTML name or hexadecimal code)" values_context="colour"
values="black,blue,brown,gray,green,orange,#CD853F,purple,red,silver,white,yellow"
display_values="Black,Blue,Brown,Gray,Green,Orange,Peru,Purple,Red,Silver,White,Yellow" match="none" editable="true"/>
</chunk>
<chunk id="public_transport_route_optionals">
<text key="from" text="From (initial stop)"/>
<text key="to" text="To (terminal stop)"/>
<text key="via" text="Via (intermediate stops)"/>
<text key="operator" text="Operator"/>
<text key="network" text="Network"/>
<text key="description" text="Description" length="255"/>
<reference ref="colours" />
<combo key="interval" text="Interval (M, MM, HH:MM, or HH:MM:SS)" values="5,10,15,20,30,60,120" values_no_i18n="true" />
</chunk>
<chunk id="tactile_paving">
<combo key="tactile_paving" text="Tactile paving" values_context="tactile_paving" match="key" values_sort="false">
<list_entry value="yes" display_value="Present"/>
<list_entry value="no" display_value="None"/>
<list_entry value="incorrect" display_value="Incorrect"/>
</combo>
</chunk>
<chunk id="facility_access">
<combo key="access" text="Access" values="yes,permissive,customers,private,permit" display_values="Public,Permissive,Customers,Private,Permit required" match="none"/>
</chunk>
<chunk id="cash_withdrawal">
<multiselect key="cash_withdrawal" text="Cash withdrawal" length="3" values="yes" match="none" editable="true"/>
<optional>
<text key="cash_withdrawal:operator" text="Operator" match="none"/>
<combo key="cash_withdrawal:type" text="Type" values="checkout,self_checkout" display_values="Checkout,Self checkout" values_searchable="true" match="none"/>
<text key="cash_withdrawal:limit" text="Limit" match="none" value_type="integer" />
<text key="cash_withdrawal:currency" text="Currency" match="none" />
<check key="cash_withdrawal:purchse_required" text="Purchase required" match="none"/>
<combo key="cash_withdrawal:fee" text="Fee" values="yes,no,purchase_required" display_values="Yes,No,Purchase required" values_searchable="true" match="none"/>
<combo key="cash_withdrawal:purchase_minimum" text="Minimum pruchase" values="yes,no,varies" display_values="Yes,No,Varies" values_searchable="true" match="none"/>
<combo key="cash_withdrawal:foreign_cards" text="Foreign cards" values="yes,no,varies" display_values="Yes,No,Varies" values_searchable="true" match="none"/>
</optional>
</chunk>
<chunk id="route_segment_roles">
<role key="" text="route segment" requisite="optional" type="way,closedway" member_expression="highway|route=ferry|leisure=track"/>
<role key="forward" text="forward segment" requisite="optional" type="way,closedway" />
<role key="backward" text="backward segment" requisite="optional" type="way,closedway" />
<role key="guidepost" text="guidepost" requisite="optional" type="node" member_expression="information=guidepost"/>
</chunk>
<chunk id="route_start_stop_roles">
<role key="start" text="start endpoint" requisite="optional" type="node" />
<role key="stop" text="stop endpoint" requisite="optional" type="node" />
<role key="start_stop" text="start and stop endpoint" requisite="optional" type="node" />
</chunk>
<!-- Link chunks -->
<chunk id="link_contact_address">
<preset_link preset_name="Contact"/>
<preset_link preset_name="Contact ('contact:*')"/>
<preset_link preset_name="Address"/>
</chunk>
<chunk id="link_contact_address_payment">
<preset_link preset_name="Contact"/>
<preset_link preset_name="Contact ('contact:*')"/>
<preset_link preset_name="Address"/>
<preset_link preset_name="Payment Methods"/>
<!-- this isn't a link but probably makes most sense here -->
<reference ref="cash_withdrawal"/>
</chunk>
<chunk id="additional_access_tags">
<check key="toll" text="Toll" disable_off="true"/>
<text key="minspeed" text="Min. speed (km/h)" match="key"/>
</chunk>
<chunk id="road_access_restrictions">
<preset_link preset_name="All vehicles"/>
<preset_link preset_name="Motor vehicle"/>
<preset_link preset_name="Motorcar"/>
<preset_link preset_name="Motorcycle"/>
<preset_link preset_name="Motor vehicle (CH)"/>
<preset_link preset_name="Motorcar and -cycle (CH)"/>
<preset_link preset_name="Heavy Goods Vehicle"/>
<preset_link preset_name="Physical restrictions"/>
<preset_link preset_name="Other mode restrictions"/>
</chunk>
<chunk id="lane_presets">
<preset_link preset_name="Single direction roads"/>
<preset_link preset_name="Bi-directional roads"/>
</chunk>
<chunk id="cycle_lanes">
<preset_link preset_name="Cycle Lane/Track"/>
</chunk>
<chunk id="healthcare_speciality">
<multiselect key="healthcare:speciality" text="Speciality" text_context="healthcare" values_context="healthcare" values_searchable="true" editable="false">
<list_entry value="general" short_description="General"/>
<list_entry value="abortion" short_description="Abortion"/>
<list_entry value="fertility" short_description="Fertility"/>
<list_entry value="allergology" short_description="Allergology"/>
<list_entry value="cardiology" short_description="Cardiology"/>
<list_entry value="child_psychiatry" short_description="Child psychiatry"/>
<list_entry value="chiropractic" short_description="Chiropractic"/>
<list_entry value="dermatology" short_description="Dermatology"/>
<list_entry value="gynaecology" short_description="Gynaecology"/>
<list_entry value="internal" short_description="Internal"/>
<list_entry value="neurology" short_description="Neurology"/>
<list_entry value="ophthalmology" short_description="Ophthalmology"/>
<list_entry value="orthopaedics" short_description="Orthopaedics"/>
<list_entry value="otolaryngology" short_description="Otolaryngology"/>
<list_entry value="podiatry" short_description="Podiatry"/>