forked from openstreetmap/iD
-
Notifications
You must be signed in to change notification settings - Fork 1
/
presets.yaml
8315 lines (8315 loc) · 358 KB
/
presets.yaml
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
en:
presets:
categories:
category-barrier:
name: Barrier Features
category-building:
name: Building Features
category-golf:
name: Golf Features
category-landuse:
name: Land Use Features
category-natural:
name: Natural Features
category-path:
name: Paths
category-rail:
name: Rails
category-restriction:
name: Restriction Features
category-road_major:
name: Major Roads
category-road_minor:
name: Minor Roads
category-road_service:
name: Service Roads
category-route:
name: Route Features
category-utility:
name: Utility Features
category-water:
name: Water Bodies
category-waterway:
name: Waterways
fields:
access:
# 'access=*, foot=*, motor_vehicle=*, bicycle=*, horse=*'
label: Allowed Access
options:
designated:
# access=designated
description: Access allowed according to signs or specific local laws
# access=designated
title: Designated
destination:
# access=destination
description: Access allowed only to reach a destination
# access=destination
title: Destination
dismount:
# access=dismount
description: Access allowed but rider must dismount
# access=dismount
title: Dismount
'no':
# access=no
description: Access not allowed to the general public
# access=no
title: Prohibited
permissive:
# access=permissive
description: Access allowed until such time as the owner revokes the permission
# access=permissive
title: Permissive
permit:
# access=permit
description: Access allowed only with a valid permit or license
# access=permit
title: Permit
private:
# access=private
description: Access allowed only with permission of the owner on an individual basis
# access=private
title: Private
'yes':
# access=yes
description: Access allowed by law; a right of way
# access=yes
title: Allowed
# access field placeholder
placeholder: Not Specified
terms: '[translate with synonyms or related terms for ''Allowed Access'', separated by commas]'
types:
access: All
bicycle: Bicycles
foot: Foot
horse: Horses
motor_vehicle: Motor Vehicles
access_simple:
# access=*
label: Allowed Access
# 'terms: permitted,private,public'
terms: '[translate with synonyms or related terms for ''Allowed Access'', separated by commas]'
addr/interpolation:
# 'addr:interpolation=*'
label: Type
options:
# 'addr:interpolation=all'
all: All
# 'addr:interpolation=alphabetic'
alphabetic: Alphabetic
# 'addr:interpolation=even'
even: Even
# 'addr:interpolation=odd'
odd: Odd
address:
# 'addr:block_number=*, addr:city=*, addr:block_number=*, addr:conscriptionnumber=*, addr:county=*, addr:country=*, addr:county=*, addr:district=*, addr:floor=*, addr:hamlet=*, addr:housename=*, addr:housenumber=*, addr:neighbourhood=*, addr:place=*, addr:postcode=*, addr:province=*, addr:quarter=*, addr:state=*, addr:street=*, addr:subdistrict=*, addr:suburb=*, addr:unit=*'
label: Address
placeholders:
block_number: Block Number
block_number!jp: Block No.
city: City
city!jp: City/Town/Village/Tokyo Special Ward
city!vn: City/Town
conscriptionnumber: '123'
country: Country
county: County
county!jp: District
district: District
district!vn: Arrondissement/Town/District
floor: Floor
hamlet: Hamlet
housename: Housename
housenumber: '123'
housenumber!jp: Building No./Lot No.
neighbourhood: Neighbourhood
neighbourhood!jp: Chōme/Aza/Koaza
place: Place
postcode: Postcode
province: Province
province!jp: Prefecture
quarter: Quarter
quarter!jp: Ōaza/Machi
state: State
street: Street
subdistrict: Subdistrict
subdistrict!vn: Ward/Commune/Townlet
suburb: Suburb
suburb!jp: Ward
unit: Unit
# 'terms: location'
terms: '[translate with synonyms or related terms for ''Address'', separated by commas]'
admin_level:
# admin_level=*
label: Admin Level
aerialway:
# aerialway=*
label: Type
aerialway/access:
# 'aerialway:access=*'
label: Access
options:
# 'aerialway:access=both'
both: Both
# 'aerialway:access=entry'
entry: Entry
# 'aerialway:access=exit'
exit: Exit
aerialway/bubble:
# 'aerialway:bubble=*'
label: Bubble
aerialway/capacity:
# 'aerialway:capacity=*'
label: Capacity (per hour)
# aerialway/capacity field placeholder
placeholder: '500, 2500, 5000...'
aerialway/duration:
# 'aerialway:duration=*'
label: Duration (minutes)
# aerialway/duration field placeholder
placeholder: '1, 2, 3...'
aerialway/heating:
# 'aerialway:heating=*'
label: Heated
aerialway/occupancy:
# 'aerialway:occupancy=*'
label: Occupancy
# aerialway/occupancy field placeholder
placeholder: '2, 4, 8...'
aerialway/summer/access:
# 'aerialway:summer:access=*'
label: Access (summer)
options:
# 'aerialway:summer:access=both'
both: Both
# 'aerialway:summer:access=entry'
entry: Entry
# 'aerialway:summer:access=exit'
exit: Exit
aeroway:
# aeroway=*
label: Type
agrarian:
# agrarian=*
label: Products
air_conditioning:
# air_conditioning=*
label: Air Conditioning
# 'terms: cooling system,refrigeration'
terms: '[translate with synonyms or related terms for ''Air Conditioning'', separated by commas]'
amenity:
# amenity=*
label: Type
animal_boarding:
# animal_boarding=*
label: For Animals
animal_breeding:
# animal_breeding=*
label: For Animals
animal_shelter:
# animal_shelter=*
label: For Animals
architect:
# architect=*
label: Architect
# 'terms: building designer'
terms: '[translate with synonyms or related terms for ''Architect'', separated by commas]'
area/highway:
# 'area:highway=*'
label: Type
artist:
# artist_name=*
label: Artist
artwork_type:
# artwork_type=*
label: Type
atm:
# atm=*
label: ATM
attraction:
# attraction=*
label: Type
baby_seat:
# baby=*
label: Baby Seat
backrest:
# backrest=*
label: Backrest
bar:
# bar=*
label: Bar
terms: '[translate with synonyms or related terms for ''Bar'', separated by commas]'
barrier:
# barrier=*
label: Type
basin:
# basin=*
label: Type
bath/open_air:
# 'bath:open_air=*'
label: Open Air
bath/sand_bath:
# 'bath:sand_bath=*'
label: Sand Bath
bath/type:
# 'bath:type=*'
label: Specialty
options:
# 'bath:type=foot_bath'
foot_bath: Foot Bath
# 'bath:type=hot_spring'
hot_spring: Hot Spring
# 'bath:type=onsen'
onsen: Japanese Onsen
beauty:
# beauty=*
label: Beauty Specialty
bench:
# bench=*
label: Bench
# 'terms: seating'
terms: '[translate with synonyms or related terms for ''Bench'', separated by commas]'
bicycle_parking:
# bicycle_parking=*
label: Type
bin:
# bin=*
label: Waste Bin
# 'terms: garbage can,trash can'
terms: '[translate with synonyms or related terms for ''Waste Bin'', separated by commas]'
blind:
# blind=*
label: Blind Person Access
options:
# blind=limited
limited: Limited
# blind=no
'no': 'No'
# blind=yes
'yes': 'Yes'
# 'terms: sight impairment,vision impairment'
terms: '[translate with synonyms or related terms for ''Blind Person Access'', separated by commas]'
blood_components:
# 'blood:=*'
label: Blood Components
options:
# 'blood:=plasma'
plasma: plasma
# 'blood:=platelets'
platelets: platelets
# 'blood:=stemcells'
stemcells: stem cell samples
# 'blood:=whole'
whole: whole blood
board_type:
# board_type=*
label: Type
bollard:
# bollard=*
label: Type
booth:
# booth=*
label: Booth
boules:
# boules=*
label: Type
boundary:
# boundary=*
label: Type
brand:
# brand=*
label: Brand
terms: '[translate with synonyms or related terms for ''Brand'', separated by commas]'
brewery:
# brewery=*
label: Draft Beers
# 'terms: on tap'
terms: '[translate with synonyms or related terms for ''Draft Beers'', separated by commas]'
bridge:
# bridge=*
label: Type
# bridge field placeholder
placeholder: Default
bridge/support:
# 'bridge:support=*'
label: Type
building:
# building=*
label: Building
# 'terms: structure'
terms: '[translate with synonyms or related terms for ''Building'', separated by commas]'
building/levels/underground:
# 'building:levels:underground=*'
label: Underground Levels
# building/levels/underground field placeholder
placeholder: '2, 4, 6...'
# 'terms: basement levels'
terms: '[translate with synonyms or related terms for ''Underground Levels'', separated by commas]'
building/levels_building:
# 'building:levels=*'
label: Building Levels
# building/levels_building field placeholder
placeholder: '2, 4, 6...'
terms: '[translate with synonyms or related terms for ''Building Levels'', separated by commas]'
building/material:
# 'building:material=*'
label: Material
terms: '[translate with synonyms or related terms for ''Material'', separated by commas]'
building_area:
# building=*
label: Building
bunker_type:
# bunker_type=*
label: Type
cables:
# cables=*
label: Cables
# cables field placeholder
placeholder: '1, 2, 3...'
camera/direction:
# 'camera:direction=*'
label: Direction (Degrees Clockwise)
# camera/direction field placeholder
placeholder: '45, 90, 180, 270'
camera/mount:
# 'camera:mount=*'
label: Camera Mount
camera/type:
# 'camera:type=*'
label: Camera Type
options:
# 'camera:type=dome'
dome: Dome
# 'camera:type=fixed'
fixed: Fixed
# 'camera:type=panning'
panning: Panning
capacity:
# capacity=*
label: Capacity
# capacity field placeholder
placeholder: '50, 100, 200...'
terms: '[translate with synonyms or related terms for ''Capacity'', separated by commas]'
cash_in:
# cash_in=*
label: Cash In
castle_type:
# castle_type=*
label: Type
changing_table:
# changing_table=*
label: Diaper Changing Table
charge_fee:
# charge=*
label: Fee Amount
# charge_fee field placeholder
placeholder: '1 EUR, 5 USD, 10 JPY…'
terms: '[translate with synonyms or related terms for ''Fee Amount'', separated by commas]'
charge_toll:
# charge=*
label: Toll Amount
# charge_toll field placeholder
placeholder: '1 EUR, 5 USD, 10 JPY…'
terms: '[translate with synonyms or related terms for ''Toll Amount'', separated by commas]'
check_date:
# check_date=*
label: Last Checked Date
clothes:
# clothes=*
label: Clothes
club:
# club=*
label: Type
collection_times:
# collection_times=*
label: Collection Times
colour:
# colour=*
label: Color
terms: '[translate with synonyms or related terms for ''Color'', separated by commas]'
comment:
# comment=*
label: Changeset Comment
# comment field placeholder
placeholder: Brief description of your contributions (required)
communication_multi:
# 'communication:=*'
label: Communication Types
terms: '[translate with synonyms or related terms for ''Communication Types'', separated by commas]'
construction:
# construction=*
label: Type
consulate:
# consulate=*
label: Type
contact/webcam:
# 'contact:webcam=*'
label: Webcam URL
# contact/webcam field placeholder
placeholder: 'http://example.com/'
content:
# content=*
label: Content
conveying:
# conveying=*
label: Movement Direction
options:
# conveying=backward
backward: Backward
# conveying=forward
forward: Forward
# conveying=reversible
reversible: Reversible
conveying_escalator:
# conveying=*
label: Escalator
country:
# country=*
label: Country
couplings:
# couplings=*
label: Couplings
# couplings field placeholder
placeholder: '1, 2, 3...'
covered:
# covered=*
label: Covered
terms: '[translate with synonyms or related terms for ''Covered'', separated by commas]'
craft:
# craft=*
label: Type
crane/type:
# 'crane:type=*'
label: Crane Type
options:
# 'crane:type=floor-mounted_crane'
floor-mounted_crane: Floor-mounted Crane
# 'crane:type=portal_crane'
portal_crane: Portal Crane
# 'crane:type=travel_lift'
travel_lift: Travel Lift
crop:
# crop=*
label: Crops
crossing:
# crossing=*
label: Type
crossing/island:
# 'crossing:island=*'
label: Refuge Island
cuisine:
# cuisine=*
label: Cuisines
currency_multi:
# 'currency:=*'
label: Currency Types
# 'terms: bills,cash,coins,money'
terms: '[translate with synonyms or related terms for ''Currency Types'', separated by commas]'
cutting:
# cutting=*
label: Type
# cutting field placeholder
placeholder: Default
cycle_network:
# cycle_network=*
label: Network
cycleway:
# 'cycleway=*, cycleway:left=*, cycleway:right=*'
label: Bike Lanes
options:
# lane=yes
lane:
description: A bike lane separated from auto traffic by a painted line
title: Standard bike lane
# none=yes
none:
description: No bike lane
title: None
# opposite=yes
opposite:
description: A bike lane that travels in both directions on a one-way street
title: Contraflow bike lane
# opposite_lane=yes
opposite_lane:
description: A bike lane that travels in the opposite direction of traffic
title: Opposite bike lane
# share_busway=yes
share_busway:
description: A bike lane shared with a bus lane
title: Bike lane shared with bus
# shared_lane=yes
shared_lane:
description: A bike lane with no separation from auto traffic
title: Shared bike lane
# track=yes
track:
description: A bike lane separated from traffic by a physical barrier
title: Bike track
# cycleway field placeholder
placeholder: none
terms: '[translate with synonyms or related terms for ''Bike Lanes'', separated by commas]'
types:
'cycleway:left': Left side
'cycleway:right': Right side
dance/style:
# 'dance:style=*'
label: Dance Styles
date:
# date=*
label: Date
delivery:
# delivery=*
label: Delivery
terms: '[translate with synonyms or related terms for ''Delivery'', separated by commas]'
denomination:
# denomination=*
label: Denomination
terms: '[translate with synonyms or related terms for ''Denomination'', separated by commas]'
denotation:
# denotation=*
label: Denotation
departures_board:
# departures_board=*
label: Departures Board
options:
# departures_board=no
'no': None
# departures_board=realtime
realtime: Realtime
# departures_board=timetable
timetable: Timetable
# departures_board=yes
'yes': 'Yes'
description:
# description=*
label: Description
# 'terms: summary'
terms: '[translate with synonyms or related terms for ''Description'', separated by commas]'
design:
# design=*
label: Design
destination/ref_oneway:
# 'destination:ref=*'
label: Destination Road Numbers
destination/symbol_oneway:
# 'destination:symbol=*'
label: Destination Symbols
terms: '[translate with synonyms or related terms for ''Destination Symbols'', separated by commas]'
destination_oneway:
# destination=*
label: Destinations
devices:
# devices=*
label: Devices
# devices field placeholder
placeholder: '1, 2, 3...'
diameter:
# diameter=*
label: Diameter
# diameter field placeholder
placeholder: '5 mm, 10 cm, 15 in…'
diet_multi:
# 'diet:=*'
label: Diet Types
# 'terms: gluten free,fruitarian,halal,kosher,lactose free,meat,pescatarian,raw,vegan,vegetarian'
terms: '[translate with synonyms or related terms for ''Diet Types'', separated by commas]'
diplomatic:
# diplomatic=*
label: Type
diplomatic/services:
# 'diplomatic:services:=*'
label: Services
direction:
# direction=*
label: Direction (Degrees Clockwise)
# direction field placeholder
placeholder: '45, 90, 180, 270'
direction_cardinal:
# direction=*
label: Direction
options:
# direction=E
E: East
# direction=ENE
ENE: East-northeast
# direction=ESE
ESE: East-southeast
# direction=N
'N': North
# direction=NE
NE: Northeast
# direction=NNE
NNE: North-northeast
# direction=NNW
NNW: North-northwest
# direction=NW
NW: Northwest
# direction=S
S: South
# direction=SE
SE: Southeast
# direction=SSE
SSE: South-southeast
# direction=SSW
SSW: South-southwest
# direction=SW
SW: Southwest
# direction=W
W: West
# direction=WNW
WNW: West-northwest
# direction=WSW
WSW: West-southwest
direction_clock:
# direction=*
label: Direction
options:
# direction=anticlockwise
anticlockwise: Counterclockwise
# direction=clockwise
clockwise: Clockwise
direction_vertex:
# direction=*
label: Direction Affected
options:
# direction=backward
backward: Backward
# direction=both
both: Both / All
# direction=forward
forward: Forward
dispensing:
# dispensing=*
label: Dispenses Prescriptions
display:
# display=*
label: Display
distance:
# distance=*
label: Distance
dock:
# dock=*
label: Type
dog:
# dog=*
label: Dogs
options:
# dog=leashed
leashed: Leashed Only
# dog=no
'no': Not Allowed
# dog=yes
'yes': Allowed
# 'terms: animals,pets'
terms: '[translate with synonyms or related terms for ''Dogs'', separated by commas]'
door:
# door=*
label: Door
door_type:
# door=*
label: Type
drive_through:
# drive_through=*
label: Drive-Through
terms: '[translate with synonyms or related terms for ''Drive-Through'', separated by commas]'
duration:
# duration=*
label: Duration
# duration field placeholder
placeholder: '00:00'
terms: '[translate with synonyms or related terms for ''Duration'', separated by commas]'
electrified:
# electrified=*
label: Electrification
options:
# electrified=contact_line
contact_line: Contact Line
# electrified=no
'no': 'No'
# electrified=rail
rail: Electrified Rail
# electrified=yes
'yes': Yes (unspecified)
# electrified field placeholder
placeholder: 'Contact Line, Electrified Rail...'
elevation:
# ele=*
label: Elevation
# 'terms: altitude'
terms: '[translate with synonyms or related terms for ''Elevation'', separated by commas]'
email:
# email=*
label: Email
# email field placeholder
placeholder: example@example.com
terms: '[translate with synonyms or related terms for ''Email'', separated by commas]'
embankment:
# embankment=*
label: Type
# embankment field placeholder
placeholder: Default
embassy:
# embassy=*
label: Type
emergency:
# emergency=*
label: Emergency
emergency_combo:
# emergency=*
label: Type
enforcement:
# enforcement=*
label: Type
entrance:
# entrance=*
label: Type
except:
# except=*
label: Exceptions
faces:
# faces=*
label: Faces
fax:
# fax=*
label: Fax
# fax field placeholder
placeholder: +31 42 123 4567
terms: '[translate with synonyms or related terms for ''Fax'', separated by commas]'
fee:
# fee=*
label: Fee
terms: '[translate with synonyms or related terms for ''Fee'', separated by commas]'
fence_type:
# fence_type=*
label: Type
fire_hydrant/diameter:
# 'fire_hydrant:diameter=*'
label: 'Diameter (mm, in, or letters)'
terms: '[translate with synonyms or related terms for ''Diameter (mm, in, or letters)'', separated by commas]'
fire_hydrant/pressure:
# 'fire_hydrant:pressure=*'
label: Pressure (bar)
terms: '[translate with synonyms or related terms for ''Pressure (bar)'', separated by commas]'
fire_hydrant/type:
# 'fire_hydrant:type=*'
label: Shape
options:
# 'fire_hydrant:type=pillar'
pillar: Pillar/Aboveground
# 'fire_hydrant:type=pipe'
pipe: Capped Pipe
# 'fire_hydrant:type=underground'
underground: Underground
# 'fire_hydrant:type=wall'
wall: Wall
fireplace:
# fireplace=*
label: Fireplace
fishing:
# fishing=*
label: Fishing
terms: '[translate with synonyms or related terms for ''Fishing'', separated by commas]'
fitness_station:
# fitness_station=*
label: Equipment Type
fixme:
# fixme=*
label: Fix Me
# 'terms: help request'
terms: '[translate with synonyms or related terms for ''Fix Me'', separated by commas]'
flag/type:
# 'flag:type=*'
label: Flag Type
floating:
# floating=*
label: Floating
flood_prone:
# flood_prone=*
label: Flood Prone
terms: '[translate with synonyms or related terms for ''Flood Prone'', separated by commas]'
ford:
# ford=*
label: Type
# ford field placeholder
placeholder: Default
frequency:
# frequency=*
label: Operating Frequency
terms: '[translate with synonyms or related terms for ''Operating Frequency'', separated by commas]'
frequency_electrified:
# frequency=*
label: Operating Frequency
terms: '[translate with synonyms or related terms for ''Operating Frequency'', separated by commas]'
from:
# from=*
label: From
fuel:
# fuel=*
label: Fuel
fuel_multi:
# 'fuel:=*'
label: Fuel Types
gauge:
# gauge=*
label: Gauge
gender:
# 'male=*, female=*, unisex=*'
label: Gender
options:
# female=yes
female: Female
# male=yes
male: Male
# unisex=yes
unisex: Unisex
# gender field placeholder
placeholder: Unknown
# 'terms: access,female,male,unisex'
terms: '[translate with synonyms or related terms for ''Gender'', separated by commas]'
generator/method:
# 'generator:method=*'
label: Method
generator/output/electricity:
# 'generator:output:electricity=*'
label: Power Output
# generator/output/electricity field placeholder
placeholder: '50 MW, 100 MW, 200 MW...'
generator/source:
# 'generator:source=*'
label: Source
generator/type:
# 'generator:type=*'
label: Type
government:
# government=*
label: Type
grape_variety:
# grape_variety=*
label: Grape Varieties
guest_house:
# guest_house=*
label: Type
handicap:
# handicap=*
label: Handicap
# handicap field placeholder
placeholder: 1-18
handrail:
# handrail=*
label: Handrail
terms: '[translate with synonyms or related terms for ''Handrail'', separated by commas]'
hashtags:
# hashtags=*
label: Hashtags
# hashtags field placeholder
placeholder: '#example'
healthcare:
# healthcare=*
label: Type
healthcare/speciality:
# 'healthcare:speciality=*'
label: Specialties
height:
# height=*
label: Height (Meters)
terms: '[translate with synonyms or related terms for ''Height (Meters)'', separated by commas]'
height_building:
# height=*
label: Building Height (Meters)
terms: '[translate with synonyms or related terms for ''Building Height (Meters)'', separated by commas]'
highspeed:
# highspeed=*
label: High-Speed
terms: '[translate with synonyms or related terms for ''High-Speed'', separated by commas]'
highway:
# highway=*
label: Type
historic:
# historic=*
label: Type
historic/civilization:
# 'historic:civilization=*'
label: Historic Civilization
historic/wreck/date_sunk:
# 'wreck:date_sunk=*'
label: Date Sunk
historic/wreck/visible_at_high_tide:
# 'wreck:visible_at_high_tide=*'
label: Visible At High Tide
historic/wreck/visible_at_low_tide:
# 'wreck:visible_at_low_tide=*'
label: Visible At Low Tide
hoops:
# hoops=*
label: Hoops
# hoops field placeholder
placeholder: '1, 2, 4...'
horse_dressage:
# sport=*
label: Dressage Riding
options:
# sport=equestrian
equestrian: 'Yes'
# sport=undefined
undefined: 'No'
horse_riding:
# leisure=*
label: Horseback Riding
options:
# leisure=horse_riding
horse_riding: 'Yes'
# leisure=undefined
undefined: 'No'
horse_scale:
# horse_scale=*
label: Horseback Riding Difficulty
options:
# horse_scale=common
common: 'Easy: No problems or difficulties. (default)'
# horse_scale=critical
critical: 'Borderline: Passable only for experienced riders and horses. Major obstacles. Bridges should be examined carefully.'
# horse_scale=dangerous
dangerous: 'Dangerous: Passable only for very experienced riders and horses and only in good weather. Dismount.'
# horse_scale=demanding
demanding: 'Use with caution: Uneven way, occasional difficult passages.'
# horse_scale=difficult
difficult: 'Difficult: Way narrow and exposed. May contain obstacles to step over and narrow passages.'
# horse_scale=impossible
impossible: 'Impassable: Way or bridge not passable for horses. Too narrow, insuffient support, obstacles like ladders. Danger of life.'
# horse_scale field placeholder
placeholder: 'Difficult, Dangerous...'
terms: '[translate with synonyms or related terms for ''Horseback Riding Difficulty'', separated by commas]'
horse_stables:
# amenity=*
label: Riding Stable
options:
# amenity=stables
stables: 'Yes'
# amenity=undefined
undefined: 'No'
iata:
# iata=*
label: IATA Airport Code
icao:
# icao=*
label: ICAO Airport Code
incline:
# incline=*
label: Incline
terms: '[translate with synonyms or related terms for ''Incline'', separated by commas]'
incline_steps: