-
Notifications
You must be signed in to change notification settings - Fork 6
/
INT-1-preset.xml
5294 lines (4825 loc) · 360 KB
/
INT-1-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" encoding="utf-8" ?>
<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0" author="Aun 'Skippern' Johnsen, Malcolm Herring, Translator.DE: S. 'XPcRUSHER' Heilmann, Jo 'Josail' Ruppert" version="1.0.4" description="Seamark Tagging according to INT-1 symbols" shortdescription="Seamarks" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/png/OpenSeaMapLogo_16.png">
<chunk id="function">
<list_entry value="harbour_master" display_value="Harbour Master" de.display_value="Haupt Hafen"/>
<list_entry value="customs" diplay_value="Customs" de.display_value="Benutzerdefinierte Information"/>
<list_entry value="health" display_value="Health"/>
<list_entry value="hospital" display_value="Hospital" de.display_value="Krankenhaus"/>
<list_entry value="post_office" display_value="Post Office" de.display_value="Postamt"/>
<list_entry value="hotel" display_value="Hotel" de.display_value="Hotel"/>
<list_entry value="railway_station" display_value="Railway Station" de.display_value="Bahnstation"/>
<list_entry value="police_station" display_value="Police Station" de.display_value="Polizeirevier"/>
<list_entry value="water-police_station" display_value="Water-Police Station" de.display_value="Wasserpolizeistation"/>
<list_entry value="pilot_office" display_value="Pilot Office" de.display_value="Lotsenstelle"/> <!--INT-1 T3 DE:Lotsenstelle-->
<list_entry value="bank" display_value="Bank" de.display_value="Geldinstitut"/>
<list_entry value="district_control" display_value="District Control" de.display_value="Distgrict Control"/>
<list_entry value="transit_shed" display_value="Transit Shed"/>
<list_entry value="factory" display_value="Factory" de.display_value="Fabrik"/>
<list_entry value="power_station" display_value="Power Station" de.display_value="Kraftwerk"/>
<list_entry value="administrative" display_value="Administrative"/>
<list_entry value="educational" display_vlue="Educational"/>
<list_entry value="church" display_value="Church" de.display_value="Kirche"/>
<list_entry value="chapel" display_value="Chapel" de.display_value="Kapelle"/>
<list_entry value="temple" display_value="Temple" de.display_value="Gotteshaus"/>
<list_entry value="pagoda" display_value="Pagoda"/>
<list_entry value="shinto_shrine" display_value="Shinto Shrine"/>
<list_entry value="buddhist_temple" display_value="Buddhist Temple" de.display_value="Buddisticher Tempel"/>
<list_entry value="mosque" display_value="Mosque" de.display_value="Mosche"/>
<list_entry value="marebout" display_value="Marebout"/>
<list_entry value="lookout" display_value="Lookout" de.display_value="Aussichtspunkt"/>
<list_entry value="communication" display_value="Communication"/>
<list_entry value="television" display_value="television" de.display_value="Fernsehturm"/>
<list_entry value="radio" display_value="Radio"/>
<list_entry value="radar" display_value="Radar"/>
<list_entry value="light_support" display_value="Light support"/>
<list_entry value="microwave" display_value="Microwave"/>
<list_entry value="cooling" display_value="Cooling"/>
<list_entry value="observation" display_value="Oberservation" de.display_value="Observarorium"/>
<list_entry value="time_ball" display_value="Time Ball"/>
<list_entry value="clock" display_value="Clock" de.display_value="Uhr"/>
<list_entry value="control" display_value="Control"/>
<list_entry value="airship_mooring" display_value="Airship Mooring" de.display_value="Luftschiffbefestigung"/>
<list_entry value="stadium" display_value="Stadium" de.display_value="Stadion"/>
<list_entry value="bus_station" display_value="Bus Station" de.display_value="Busstation"/>
</chunk>
<chunk id="restrictions">
<list_entry value="no_anchoring" display_value="No Anchoring" de.display_value="Ankern verboten"/>
<list_entry value="restricted_anchoring" display_value="Restricted Anchoring"/>
<list_entry value="no_fishing" display_value="No Fishing" de.display_value="Angeln verboten"/>
<list_entry value="restricted_fishing" display_value="Restricted Fishing"/>
<list_entry value="restricted_trawlingno_trawling"/>
<list_entry value="no_entry" display_value="No Entry" de.display_value="kein Zutritt"/>
<list_entry value="restricted_entry" display_value="Restricted Entry"/>
<list_entry value="no_dredging" display_value="No Dredging"/>
<list_entry value="restricted_dredging" display_value="Restricted Dredging"/>
<list_entry value="no_diving" display_value="No Diving"/>
<list_entry value="restricted_diving" display_value="Restrictred Diving"/>
<list_entry value="no_wake" display_value="No wake"/>
<list_entry value="to_be_avoided" display_value="To be Avoided"/>
<list_entry value="no_construction" display_value="No construction"/>
<list_entry value="no_discharging" display_value="No discharging"/>
<list_entry value="restricted_discharging" display_value="Restricted discharing"/>
<list_entry value="no_exploration_development" display_value="No exploration development"/>
<list_entry value="restricted_exploration_development" display_value="Restricted exploration development"/>
<list_entry value="no_drilling" display_value="No drilling"/>
<list_entry value="restricted_drilling" display_value="Restricted drilling"/>
<list_entry value="no_historical_artifacts_removal" display_value="No historical artifacts removal"/>
<list_entry value="no_lightering" display_value="No lightering"/>
<list_entry value="no_dragging" display_value="No dragging"/>
<list_entry value="no_stopping" display_value="No stopping"/>
<list_entry value="no_landing" display_value="No landing"/>
<list_entry value="restricted_speed" display_value="Restricted speed"/>
<list_entry value="no_overtaking" display_value="No overtaking" de.display_value="Überholverbot"/>
<list_entry value="no_convoy_overtaking" display_value="No convoy overtaking" de.display_value="Überholverbot von mehreren Fahrzeugen"/>
<list_entry value="no_passing_overtaking" display_value="No passing overtaking"/>
<list_entry value="no_berthing" display_value="No berthing"/>
<list_entry value="restricted_berthing" display_value="Restricted berthing"/>
<list_entry value="no_making_fast" display_value="No making fast"/>
<list_entry value="restricted_making_fast" display_value="Restricted making fast"/>
<list_entry value="no_turning" display_value="No turning"/>
<list_entry value="restricted_fairway_depth" display_value="Restricted fairway depth"/>
</chunk>
<chunk id="construction">
<list_entry value="masonry" display_value="Masonry" de.display_value="Mauerwerk"/>
<list_entry value="concreted" display_value="Concreted" de.display_value="Betoniert"/>
<list_entry value="loose_boulders" display_value="Loose boulders" de.display_value="Loses Geröll"/>
<list_entry value="hard-surfaced" display_value="Hard-surfaced" de.display_value="befestigt"/>
<list_entry value="wooden" display_value="Wooden" de.display_value="Hölzern"/>
<list_entry value="metal" display_value="Metal" de.display_value="Metallisch"/>
<list_entry value="grp" display_value="GRP" de.display_value="GFK"/>
<list_entry value="painted" display_value="Painted" de.display_value="Bemalt"/>
<list_entry value="framework" display_value="Framework" de.display_value="Gerüst/Rahmen"/>
</chunk>
<chunk id="product">
<list_entry value="oil" display_value="Oil" de.display_value="Öl"/>
<list_entry value="gas" display_value="Gas"/>
<list_entry value="water" display_value="Water" de.display_value="Wasser"/>
<list_entry value="stone" display_value="Stone" de.display_value="Stein"/>
<list_entry value="coal" display_value="Coal" de.display_value="Kole"/>
<list_entry value="ore" display_value="Ore" de.display_value="Erz"/>
<list_entry value="chemicals" display_value="Chemicals" de.display_value="Chemikalien"/>
<list_entry value="drinking_water" display_value="Drinking water" de.display_value="Trinkwasser"/>
<list_entry value="milk" display_value="Milk" de.display_value="Milch"/>
<list_entry value="bauxite" display_value="Bauxite" de.display_value="Bauxit"/>
<list_entry value="coke" display_value="Coke" de.display_value="Steinkohlekoks"/>
<list_entry value="iron_ingots" display_value="Iron ingots" de.display_value="Stahl"/>
<list_entry value="salt" display_value="Salt" de.display_value="Salz"/>
<list_entry value="sand" display_value="Sand" de.display_value="Sand"/>
<list_entry value="timber" display_value="Timber" de.display_value="Holz"/>
<list_entry value="sawdust" display_value="Sawdust" de.display_value="Sägemehl"/>
<list_entry value="scrap" display_value="Scrap" de.display_value="Altmetall"/>
<list_entry value="lng" display_value="Liquefied Natural Gas" de.display_value="Flüssig Erdgas"/>
<list_entry value="lpg" display_value="Liquefied Petroleum Gas" de.display_value="Propangas/Autogas"/>
<list_entry value="wine" display_value="Wine" de.display_value="Wein"/>
<list_entry value="cement" display_value="Cement" de.display_value="Zement"/>
<list_entry value="grain" display_value="Grain" de.display_value="Getreide"/>
</chunk>
<chunk id="lightcolours">
<list_entry value="white" display_value="White" de.display_value="Weiss" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q3/white.svg" icon_size="16"/>
<list_entry value="red" display_value="Red" de.display_value="Rot" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q3/red.svg" icon_size="16"/>
<list_entry value="green" display_value="Green" de.display_value="Grün" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q3/green.svg" icon_size="16"/>
<list_entry value="yellow" display_value="Yellow" de.display_value="Gelb" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q3/yellow.svg" icon_size="16"/>
<list_entry value="blue" display_value="Blue" de.display_value="Blau" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q3/blue.svg" icon_size="16"/>
<list_entry value="amber" display_value="Amber" de.display_value="Bernsteinfarbend" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q3/amber.svg" icon_size="16"/>
<list_entry value="violet" display_value="Violet" de.display_value="Violett" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q3/violet.svg" icon_size="16"/>
<list_entry value="orange" display_value="Orange" de.display_value="Orange" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q3/orange.svg" icon_size="16"/>
<list_entry value="magenta" display_value="Magenta" de.display_value="Purpur" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q3/magenta.svg" icon_size="16"/>
</chunk>
<chunk id="othercolours">
<list_entry value="black" display_value="Black" de.display_value="Schwarz" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q3/black.svg" icon_size="16"/>
<list_entry value="grey" display_value="Grey" de.display_value="Grau" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q3/grey.svg" icon_size="16"/>
<list_entry value="brown" display_value="Brown" de.display_value="Braun" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q3/brown.svg" icon_size="16"/>
<list_entry value="pink" display_value="Pink" de.display_value="Pink" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q3/pink.svg" icon_size="16"/>
</chunk>
<chunk id="rightlateralcolours">
<list_entry value="red" display_value="Red" de.display_value="Rot"/>
<list_entry value="red;green;red" display_value="Red-Green-Red" de.display_value="Rot-Grün-Rot"/>
<list_entry value="red;green" display_value="Red-Green" de.display_value="Rot-Grün"/>
<list_entry value="red;white" display_value="Red-White" de.display_value="Rot-Weiss"/>
<list_entry value="red;white;red;white" display_value="Red-White-Red-White" de.display_value="Rot-Weiss-Rot-Weiss"/>
<list_entry value="red;green;red;green" display_value="Red-Green-Red-Green" de.display_value="Rot-Grün-Rot-Grün"/>
</chunk>
<chunk id="leftlateralcolours">
<list_entry value="green" display_value="Green" de.display_value="Grün"/>
<list_entry value="green;red;green" display_value="Green-Red-Green" de.display_value="Grün-Rot-Grün"/>
<list_entry value="green;red" display_value="Red-Green" de.display_value="Grün-Rot"/>
<list_entry value="green;white" display_value="Red-White" de.display_value="Grün-Weiss"/>
<list_entry value="green;white;green;white" display_value="Red-White-Red-White" de.display_value="Grün-Weiss-Grün-Weiss"/>
<list_entry value="green;red;green;red" display_value="Green-Red-Green-Red" de.display_value="Grün-Rot-Grün-Rot"/>
</chunk>
<chunk id="cardinalcolours">
<list_entry value="black" display_value="Black" de.display_value="Schwarz"/>
<list_entry value="black;yellow" display_value="Black-Yellow" de.display_value="Schwarz-Gelb"/>
<list_entry value="black;yellow;black" display_value="Black-Yellow-Black" de.display_value="Schwarz-Gelb-Schwarz"/>
<list_entry value="yellow;black" display_value="Yellow-Black" de.display_value="Gelb-Schwarz"/>
<list_entry value="yellow;black;yellow" display_value="Yellow-Black-Yellow" de.display_value="Gelb-Schwarz-Gelb"/>
<list_entry value="black;red;black" display_value="Black-Red-Black" de.display_value="Schwarz-Rot-Schwarz"/>
</chunk>
<chunk id="lightchars">
<list_entry value="F"/>
<list_entry value="Fl"/>
<list_entry value="LFl"/>
<list_entry value="Q"/>
<list_entry value="VQ"/>
<list_entry value="UQ"/>
<list_entry value="Iso"/>
<list_entry value="Oc"/>
<list_entry value="IQ"/>
<list_entry value="IVQ"/>
<list_entry value="IUQ"/>
<list_entry value="Mo"/>
<list_entry value="FFl"/>
<list_entry value="FlLFl"/>
<list_entry value="OcFl"/>
<list_entry value="FLFl"/>
<list_entry value="Al.Oc"/>
<list_entry value="Al.LFl"/>
<list_entry value="Al.Fl"/>
<list_entry value="Al.Gr"/>
<list_entry value="Q+LFl"/>
<list_entry value="VQ+LFl"/>
<list_entry value="UQ+LFl"/>
<list_entry value="Al"/>
<list_entry value="Al.FFl"/>
</chunk>
<chunk id="lightcats">
<list_entry value="front"/>
<list_entry value="rear"/>
<list_entry value="lower"/>
<list_entry value="upper"/>
<list_entry value="horizontal"/>
<list_entry value="vertical"/>
<list_entry value="directional"/>
<list_entry value="leading"/>
<list_entry value="aero"/>
<list_entry value="air_obstruction"/>
<list_entry value="fog_detector"/>
<list_entry value="floodlight"/>
<list_entry value="strip_light"/>
<list_entry value="subsidiary"/>
<list_entry value="spotlight"/>
<list_entry value="moire"/>
<list_entry value="emergency"/>
<list_entry value="bearing"/>
</chunk>
<chunk id="lightexhibs">
<list_entry value="24h"/>
<list_entry value="day"/>
<list_entry value="fog"/>
<list_entry value="night"/>
<list_entry value="warning"/>
<list_entry value="storm"/>
</chunk>
<chunk id="lightvisis">
<list_entry value="high"/>
<list_entry value="low"/>
<list_entry value="faint"/>
<list_entry value="intensified"/>
<list_entry value="unintensified"/>
<list_entry value="restricted"/>
<list_entry value="obscured"/>
<list_entry value="part_obscured"/>
</chunk>
<chunk id="patterns">
<list_entry value="horizontal"/>
<list_entry value="vertical"/>
<list_entry value="diagonal"/>
<list_entry value="squared"/>
<list_entry value="stripes"/>
<list_entry value="border"/>
<list_entry value="cross"/>
<list_entry value="saltire"/>
</chunk>
<chunk id="notice_impact">
<list_entry value="downstream" display_value="Downstream" de.display_value="Strom abwärts" de.short_description=""/>
<list_entry value="upstream" display_value="Upstream" de.display_value="Strom aufwärts" de.short_description=""/>
<list_entry value="left_bank" display_value="Left bank" de.display_value="linkes Ufer" de.short_description=""/>
<list_entry value="right_bank" display_value="Right bank" de.display_value="rechtes Ufer" de.short_description=""/>
<list_entry value="bank_to_bank" display_value="Bank to bank" de.display_value="Ufer zu Ufer" de.short_description=""/>
<list_entry value="to_harbour" display_value="To harbour" de.display_value="zum Hafen" de.short_description=""/>
</chunk>
<chunk id="notice_addition">
<list_entry value="top_board" display_value="Top board" de.display_value="Schild oben" de.short_description="Schild mit zusatzinformation oben"/>
<list_entry value="bottom_board" display_value="Bottom board" de.display_value="Schild unten" de.short_description="Schild mit zusatzinformation unten"/>
<list_entry value="left_triangle" display_value="Left triangle" de.display_value="Dreieck links" de.short_description="Weisses Dreieck (Pfeil) nach links zeigend"/>
<list_entry value="right_triangle" display_value="Right triangle" de.display_value="Dreieck rechts" de.short_description="Weisses Dreieck (Pfeil) nach rechts zeigend"/>
<list_entry value="bottom_triangle" display_value="Bottom triangle" de.display_value="Dreieck unten" de.short_description="Weisses Dreieck (Pfeil) nach unten zeigend"/>
</chunk>
<chunk id="notice_impact_distances">
<text key="seamark:notice:orientation" text="Orientation of Notice" de.text="Ausrichtung des Seezeichen" delete_if_empty="true"/>
<text key="seamark:notice:information" text="Notice Text" de.text="Zusatz Information"/>
<text key="seamark:notice:distance_up" text="Distance upstream" de.text="Abstand Strom aufwärts"/>
<text key="seamark:notice:distance_down" text="Distance downstream" de.text="Abstand Strom abwärts"/>
<text key="seamark:notice:distance_start" text="Distance to start" de.text="Abstand Start"/>
<text key="seamark:notice:distance_end" text="Distance to end" de.text="Abstand Ende"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Notice_Marks#Attributes" text="Seamark:notice:* Attributes"/>
</chunk>
<group name="Seamarks" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/png/OpenSeaMapLogo_16.png">
<!--***********************Section B: Positions, Distances, Directions, Compass***************************-->
<group name="B: Positions, Distances, Directions, Compass" de.name="Positionen, Entfernungen, Richtungen und Missweisungen" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/B/B21.svg">
<item name="Control Point (B20-B24)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/B/B20.svg" type="node">
<label text="B20-B24: Control Point" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/B/B20.svg"/>
<space/>
<key key="seamark:type" value="control_point"/>
<combo key="seamark:control_point:category" text="Category">
<list_entry value="triangulation" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/B/B20.svg" icon_size="16"/>
<list_entry value="observation" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/B/B21.svg" icon_size="16"/>
<list_entry value="fixed" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/B/B22.svg" icon_size="16"/>
<list_entry value="benchmark" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/B/B23.svg" icon_size="16"/>
<list_entry value="horizontal_main"/>
<list_entry value="horizontal_secondary"/>
<list_entry value="boundary"/>
</combo>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Categories_of_Objects#Control_Points_.28CATCTR.29" text="Control Point Categories"/>
</item>
<item name="Distance Mark (B25)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/B/B25.1.svg" type="node">
<label text="B25: Distance Mark" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/B/B25.1.svg"/>
<space/>
<key key="seamark:type" value="distance_mark"/>
<combo key="seamark:distance_mark:category" text="Category" use_last_as_default="true">
<list_entry value="board"/>
<list_entry value="pole"/>
<list_entry value="unknown_shape"/>
<list_entry value="not_installed"/>
</combo>
<text key="seamark:distance_mark:distance" text="Distance (without units for nautical charts"/>
<combo key="seamark:distance_mark:units" text="Units for nautical charts" use_last_as_default="true">
<list_entry value="kilometres"/>
<list_entry value="hectometres"/>
<list_entry value="nautical_miles"/>
<list_entry value="statute_miles"/>
<list_entry value="metres"/>
<list_entry value="feet"/>
</combo>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Distance_Marks" text="Distance Marks"/>
</item>
</group>
<!--***********************Section C: Natural Features***************************-->
<!--***********************Section D: Cultural Features***************************-->
<group name="D: Cultural Features" de.name="D: Bauten" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/D/Db_uk.svg">
<item name="Single Buildings (D2, D5, D6)" type="node,closedway">
<label text="D2: Single Buildings"/>
<key key="seamark:type" value="building"/>
<multiselect key="seamark:building:function" text="Seamark Building Function" >
<reference ref="function"/>
</multiselect>
<combo key="seamark:building:shape" text="Seamark Building Shape" default="">
<list_entry value="high-rise"/>
<list_entry value="pyramid"/>
<list_entry value="cylindrical"/>
<list_entry value="spherical"/>
<list_entry value="cubic"/>
</combo>
<multiselect key="seamark:building:construction" text="Nature of Construction">
<reference ref="construction"/>
</multiselect>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Buildings" text="Buildings"/>
</item>
<item name="Bridge (D20-D24)" type="node,way,closedway">
<label text="D20-D24: Bridge"/>
<key key="seamark:type" value="bridge"/>
<combo key="seamark:bridge:category" text="Bridge Type" >
<list_entry value="fixed"/>
<list_entry value="opening"/>
<list_entry value="swing"/>
<list_entry value="lift"/>
<list_entry value="bascule"/>
<list_entry value="pontoon"/>
<list_entry value="drawbridge"/>
<list_entry value="transporter"/>
<list_entry value="footbridge"/>
<list_entry value="viaduct"/>
<list_entry value="aqueduct"/>
<list_entry value="suspension"/>
</combo>
<text key="seamark:bridge:clearance_height" text="Vertical Clearance"/>
<text key="seamark:bridge:clearance_height_open" text="Vertical Clearance Open"/>
<text key="seamark:bridge:clearance_height_closed" text="Vertical Clearance Closed"/>
<text key="seamark:bridge:clearance_width" text="Horizontal Clearance"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Bridges" text="Bridges"/>
</item>
<item name="Overhead transporter or Telepheric (D25)" type="way">
<label text="D25: Overhead transporter or Telepheric"/>
<key key="seamark:type" value="conveyor"/>
<key key="seamark:conveyor:category" value="aerial"/>
<text key="seamark:conveyor:clearance_height" text="Vertical Clearance"/>
<combo key="seamark:conveyor:product" text="Cargo">
<reference ref="product"/>
</combo>
</item>
<item name="Power Transmission Line (D26)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/D/D26.svg" type="way">
<label text="D26: Power Transmission Line" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/D/D26.svg"/>
<space/>
<key key="seamark:type" value="cable_overhead"/>
<combo key="seamark:cable_overhead:category" text="Category">
<list_entry value="power"/>
<list_entry value="transmission"/>
</combo>
<text key="seamark:cable_overhead:clearance_height" text="Vertical Clearance"/>
<text key="seamark:cable_overhead:clearance_height_safe" text="Safe Vertical Clearance"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Categories_of_Objects#Cables_.28CATCBL.29" text="Cable Categories"/>
</item>
<item name="Power Pylon (D26)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/D/D26.svg" type="node">
<label text="D26: Power Pylon" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/D/D26.svg"/>
<space/>
<key key="seamark:type" value="pylon"/>
<combo key="seamark:pylon:category" text="Category">
<list_entry value="power"/>
<list_entry value="telecom"/>
</combo>
<combo key="seamark:pylon:water_level" text="Water Level">
<list_entry value="" display_value="default"/>
<list_entry value="part-submerged"/>
<list_entry value="dry"/>
</combo>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Categories_of_Objects#Pylons_.28CATPYL.29" text="Pylon Categories"/>
</item>
<item name="Telephone Line (D27)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/D/D26.svg" type="way">
<label text="D27: Telephone Line" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/D/D26.svg"/>
<space/>
<key key="seamark:type" value="cable_overhead"/>
<combo key="seamark:cable_overhead:category" text="Category">
<list_entry value="telephone"/>
<list_entry value="telegraph"/>
<list_entry value="optical"/>
</combo>
<text key="seamark:cable_overhead:clearance_height" text="Vertical Clearance of Cable"/>
<text key="seamark:cable_overhead:clearance_height_safe" text="Safe Clearance of Cable"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Categories_of_Objects#Cables_.28CATCBL.29" text="Cable Categories"/>
</item>
<item name="Pipeline (Overhead) (D28)" type="way">
<label text="D28: Pipeline (Overhead)"/>
<key key="seamark:type" value="pipeline_overhead"/>
<combo key="seamark:pipeline_overhead:category" text="Category">
<list_entry value="outfall"/>
<list_entry value="intake"/>
<list_entry value="sewer"/>
<list_entry value="bubbler"/>
<list_entry value="supply"/>
</combo>
<combo key="seamark:pipeline_overhead:product" text="Product">
<reference ref="product"/>
</combo>
<text key="seamark:pipeline_overhead:clearance_height" text="Vertical Clearance"/>
<label text="For underwater pipelines, see L40-L44"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Categories_of_Objects#Pipelines_.28CATPIP.29" text="Pipeline Categories"/>
</item>
<item name="Pipeline (On Land) (D29)" type="way">
<label text="D29: Pipeline (On Land)"/>
<key key="seamark:type" value="pipeline_submarine"/>
<combo key="seamark:pipeline_submarine:category" text="Category">
<list_entry value="outfall"/>
<list_entry value="intake"/>
<list_entry value="sewer"/>
<list_entry value="bubbler"/>
<list_entry value="supply"/>
</combo>
<combo key="seamark:pipeline_submarine:product" text="Product">
<reference ref="product"/>
</combo>
<label text="For underwater pipelines, see L40-L44"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Categories_of_Objects#Pipelines_.28CATPIP.29" text="Pipeline Categories"/>
</item>
</group>
<!--***********************Section E: Landmarks***************************-->
<group name="E: Landmarks" de.name="E: Landmarken" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E10.svg">
<item name="Landmarks in General" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E23_colour.svg" type="node,closedway">
<label text="Landmarks in General, use appropriate categories to specify" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E23_colour.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<multiselect key="seamark:landmark:category" text="Category" >
<list_entry value="cairn"/>
<list_entry value="cemetery"/>
<list_entry value="chimney"/>
<list_entry value="dish_aerial"/>
<list_entry value="flagstaff"/>
<list_entry value="flare_stack"/>
<list_entry value="mast"/>
<list_entry value="windsock"/>
<list_entry value="monument"/>
<list_entry value="column"/>
<list_entry value="memorial"/>
<list_entry value="obelisk"/>
<list_entry value="statue"/>
<list_entry value="cross"/>
<list_entry value="dome"/>
<list_entry value="radar_scanner"/>
<list_entry value="tower"/>
<list_entry value="windmill"/>
<list_entry value="windmotor"/>
<list_entry value="spire"/>
<list_entry value="boulder"/>
</multiselect>
<multiselect key="seamark:landmark:function" text="Function" >
<reference ref="function"/>
</multiselect>
<multiselect key="seamark:landmark:colour" text="Colour(s)">
<reference ref="lightcolours"/>
<reference ref="othercolours"/>
</multiselect>
<combo key="seamark:landmark:colour_pattern" text="Colour Pattern">
<list_entry value="vertical"/>
<list_entry value="horizontal"/>
<list_entry value="diagonal"/>
<list_entry value="squared"/>
</combo>
<text key="seamark:name" text="Name"/>
<check key="seamark:landmark:conspicuity" text="Conspicuous" value_on="conspicuous" value_off="not_conspicuous" default="on"/>
<text key="seamark:landmark:height" text="Height above Sea Level Datum"/>
<text key="seamark:landmark:elevation" text="Elevation of Landmark Ground"/>
<multiselect key="seamark:landmark:construction" text="Construction">
<reference ref="construction"/>
</multiselect>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Church or Chapel (E10.1/E11)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E10.svg" type="node,closedway">
<label text="E10-E11: Church" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E10.svg"/>
<space/>
<key key="seamark:type" value="building"/>
<combo key="seamark:building:function" text="Church or Chapel">
<list_entry value="church"/>
<list_entry value="chapel"/>
</combo>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Buildings" text="Buildings"/>
</item>
<item name="Landmark Churches (E10.2-E10.4)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E10.svg" type="node,closedway">
<label text="E10-E11: Landmark Churches" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E10.svg"/>
<space/>
<key key="seamark:building:function" value=""/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:function" value="church"/>
<combo key="seamark:landmark:category" text="Landmark" >
<list_entry value="dome" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E10.4.svg" icon_size="16"/>
<list_entry value="spire" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E10.3.svg" icon_size="16"/>
<list_entry value="tower" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E10.2.svg" icon_size="16"/>
</combo>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Cross or Calvary (E12)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E12.svg" type="node">
<label text="E12: Cross or Calvary" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E12.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="cross"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Temple (E13)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E13.svg" type="node,closedway">
<label text="E13: Temple" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E13.svg"/>
<space/>
<key key="seamark:type" value="building"/>
<key key="seamark:building:function" value="temple"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Buildings" text="Buildings"/>
</item>
<item name="Pagoda (E14)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E14.svg" type="node,closedway">
<label text="E14: Pagoda" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E14.svg"/>
<space/>
<key key="seamark:type" value="building"/>
<key key="seamark:building:function" value="pagoda"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Buildings" text="Buildings"/>
</item>
<item name="Shinto Shrine, Josshouse (E15)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E15.svg" type="node,closedway">
<label text="E15: Shinto Shrine, Josshouse" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E15.svg"/>
<space/>
<key key="seamark:type" value="building"/>
<key key="seamark:building:function" value="shinto_shrine"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Buildings" text="Buildings"/>
</item>
<item name="Buddhist Temple (E16)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E16.svg" type="node,closedway">
<label text="E16: Buddhist Temple" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E16.svg"/>
<space/>
<key key="seamark:type" value="building"/>
<key key="seamark:building:function" value="buddhist_temple"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Buildings" text="Buildings"/>
</item>
<item name="Minaret (E17)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E17.svg" type="node,closedway">
<label text="E17: Minaret" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E17.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="spire"/>
<key key="seamark:landmark:function" value="mosque"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Mosque (E17)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E17.svg" type="node,closedway">
<label text="E17: Mosque" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E17.svg"/>
<space/>
<key key="seamark:type" value="building"/>
<key key="seamark:building:function" value="mosque"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Buildings" text="Buildings"/>
</item>
<item name="Marabout (E18)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E18.svg" type="node,closedway">
<label text="E18: Marabout" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E18.svg"/>
<space/>
<key key="seamark:type" value="building"/>
<key key="seamark:building:function" value="marabout"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Buildings" text="Buildings"/>
</item>
<item name="Cemetery (E19)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E19.svg" type="closedway">
<label text="E19: Cemetery" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E19.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="cemetery"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Tower (E20)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E20.svg" type="node,closedway">
<label text="E20: Tower" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E20.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="tower"/>
<combo key="seamark:landmark:function" text="Landmark Function">
<list_entry value="communication"/>
<list_entry value="radio"/>
<list_entry value="radar"/>
<list_entry value="television"/>
</combo>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Water Tower (E21)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E21.svg" type="node,closedway">
<label text="E21: Water Tower" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E21.svg"/>
<space/>
<key key="seamark:type" value="tank"/>
<key key="seamark:tank:category" value="water_tower"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Categories_of_Objects#Silos_and_tanks_.28CATSIL.29" text="Silos and Tanks"/>
</item>
<item name="Chimney (E22)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E22.svg" type="node">
<label text="E22: Chimney" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E22.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="chimney"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Flare Stack (E23)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E23.svg" type="node">
<label text="E23: Flare Stack" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E23.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="flare_stack"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Monument (E24)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E24.svg" type="node,closedway">
<label text="E24: Monument" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E24.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<combo key="seamark:landmark:category" text="Monument Category" >
<list_entry value="monument"/>
<list_entry value="column"/>
<list_entry value="memorial"/>
<list_entry value="obelisk"/>
<list_entry value="statue"/>
</combo>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Windmill (E25.1-E25.2)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E25.svg" type="node,closedway">
<label text="E25.1-25.2: Windmill" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E25.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="windmill"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Wind Turbine (E26.1)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E26.1.svg" type="node,closedway">
<label text="E26.1-26.2: Wind Turbine" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E26.1.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="windmotor"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Wind Farm (E26.2)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E26.1.svg" type="node,closedway">
<label text="E26.1-26.2: Wind Farm" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E26.1.svg"/>
<space/>
<key key="seamark:type" value="production_area"/>
<key key="seamark:production_area:category" value="wind_farm"/>
</item>
<item name="Flagpole (E27)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E27.svg" type="node">
<label text="E27: Flagpole" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E27.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="flagstaff"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Radio or Television Mast (E28)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E28_.svg" type="node">
<label text="E28: Radio or Television Mast" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E28_.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="mast"/>
<multiselect key="seamark:landmark:function" text="Type">
<list_entry value="radio"/>
<list_entry value="television"/>
</multiselect>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Radio or Television Tower (E29)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E29.svg" type="node">
<label text="E29: Radio or Television Tower" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E29.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="tower"/>
<multiselect key="seamark:landmark:function" text="Type">
<list_entry value="radio"/>
<list_entry value="television"/>
</multiselect>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Radar mast (E30.1)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E29.svg" type="node">
<label text="E30.1: Radar Mast" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E29.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="mast"/>
<key key="seamark:landmark:function" value="radar"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Radar Tower (E30.2)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E29.svg" type="node">
<label text="E30.1: Radar Tower" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E29.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="tower"/>
<key key="seamark:landmark:function" value="radar"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Radar Scanner (E30.3)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E29.svg" type="node">
<label text="E30.1: Radar Scanner" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E29.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="radar_scanner"/>
<key key="seamark:landmark:function" value="radar"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Radar Dome (E30.4)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E29.svg" type="node">
<label text="E30.1: Radar Dome" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E29.svg"/>
<space/>
<key key="seamark:type" value="landmark"/>
<key key="seamark:landmark:category" value="dome"/>
<key key="seamark:landmark:function" value="radar"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Dish Aerial (E31)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E31.svg" type="node">
<label text="E31: Dish Aerial" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E31.svg"/>
<key key="seamark:landmark:category" value="dish_aerial"/>
<key key="seamark:type" value="landmark"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Tanks (E32)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E32.svg" type="node,closedway">
<label text="E32: Tanks" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E32.svg"/>
<space/>
<key key="seamark:type" value="tank"/>
<key key="seamark:tank:category" value="tank"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Landmarks" text="Landmarks"/>
</item>
<item name="Silos (E33)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E33.svg" type="node,closedway">
<label text="E33: Silos" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E33.svg"/>
<space/>
<key key="seamark:type" value="tank"/>
<key key="seamark:tank:category" value="silo"/>
</item>
<item name="Fortification (E34)" type="node,closedway">
<label text="E34: Fortification"/>
<space/>
<key key="seamark:type" value="fortified_structure"/>
<text key="name" text="Name"/>
<combo key="seamark:fortified_structure:category" text="Category">
<list_entry value="castle"/>
<list_entry value="fort"/>
<list_entry value="battery"/>
<list_entry value="blockhouse"/>
<list_entry value="martello_tower"/>
<list_entry value="redoubt"/>
</combo>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Categories_of_Objects#Forts_.28CATFOR.29" text="Forts"/>
</item>
<item name="Quarry (E35)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E36.svg" type="node,closedway">
<label text="E35: Quarry (Surface Mine)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E36.svg"/>
<space/>
<key key="seamark:type" value="production_area"/>
<key key="seamark:production_area:category" value="quarry"/>
</item>
<item name="Mine (E36)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E36.svg" type="node,closedway">
<label text="E36: Mine (Underground)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/E/E36.svg"/>
<space/>
<key key="seamark:type" value="production_area"/>
<key key="seamark:production_area" value="mine"/>
</item>
</group>
<!-- ***********************Section F: Ports***************************-->
<group name="F: Ports, Moorings" de.name="F: Hafen, Festmacher, Hafenelemente" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg">
<group name="Harbours in General" de.name="Hafen Hauptelemente" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg">
<item name="Harbour" de.name="Hafen" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" type="node,closedway">
<label text="F: Harbour" de.text="F: Hafen, Festmacher, Hafenelemnte" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg"/>
<space/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Harbours" de.href="https://wiki.openstreetmap.org/wiki/DE:Hafen" text="Harbours" de.text="Häfen"/>
<key key="harbour" value="yes"/>
<key key="seamark:type" value="harbour"/>
<text key="seamark:name" text="Name"/>
<combo key="harbour:operator" text="Operator" readonly="false">
</combo>
<multiselect key="seamark:harbour:category" text="Category" de.text="Kategorie" delimiter=";" >
<list_entry value="roro" display_value="Carfarry" de.display_falue="Autofähre" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="ferry" display_value="Farry" de.display_value="Fährhafen" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="fishing" display_value="Fishing" de.display_value="Fischerhafen" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F10.svg" icon_size="16"/>
<list_entry value="marina" display_value="Marina" de.display_value="Marina" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/U/U1.1.svg" icon_size="16"/>
<list_entry value="marina_no_facilities" display_value="Marina no facilities" de.display_value="Marina ohne Dienstleistung" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/U/U1.2.svg" icon_size="16"/>
<list_entry value="naval" display_value="Naval" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="tanker" display_value="Tanker" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="passenger" display_value="Passenger" de.display_value="Passagier" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="shipyard" display_value="Shipyard" de.display_value="Werft" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="container" display_value="Container" de.display_value="Kontainerhafen" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="bulk" display_value="Bulk" de.display_value="Hauptteil" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="syncrolift" display_value="Syncrolift" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="straddle_carrier" display_value="Straddle Carrier" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="lay_up" display_value="Lay Up" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="timber" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="service_repair" display_value="Service Repair" de.display_value="Reparaturwerkstatt" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="quarantine" display_value="Quarantine" de.display_value="Quarantäne" icon="https://raw.gitusercontent.com/Skippern/INT-1/master/SVG/F/F62.1.avg" icon_size="16"/>
<list_entry value="seaplane" display_value="Seaplane" de.display_value="Wasserflugzeug" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="cargo" display_value="Cargo" de.display_value="Fracht" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="offshore_support" display_value="Offshore Support" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
<list_entry value="port_support" display_value="Port Support" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg" icon_size="16"/>
</multiselect>
<text key="operator" text="Harbour Operator" de.text="Hafenmeister"/>
<space/>
<check key="port_of_entry" value_on="yes" value_off="no" text="Port of Entry" de.text="Hafen zugänglich" default="off"/>
<space/>
<label text="Harbour Access Restrictions" de.text="Hafen Beschränkungen"/>
<space/>
<text key="access:tide" text="Tide state"/>
<text key="access:tidal_range" text="Tidal range" de.text="Gezeiten Zeitraum"/>
<text key="access:sill_height" text="Sill height" de.text="Höhenschwelle"/>
<text key="access:swell" text="Swell conditions"/>
<text key="access:ice" text="Ice conditions"/>
<text key="access:time" text="Time limits" de.text="Zeitbegrenzungen"/>
<space/>
<label text="Vessel Size Restrictions" de.text="Begrenzung der Schiffsgröße"/>
<space/>
<text key="maxlength" text="Maximum length" de.text="Maximale Länge"/>
<text key="maxwidth" text="Maximum beam" de.text="Maximale Breite"/>
<text key="maxdraft" text="Maximum draft" de.text="Maximaler Tiefgang"/>
<text key="maxairdraft" text="Maximum height" de.text="Maximale Höhe"/>
<text key="maxspeed" text="Speed limit" de.text="Maximale Geschwindigkeit"/>
<space/>
<label text="Contact Information"/>
<space/>
<text key="harbour_master" text="Harbour Master" de.text="Hafenmeister"/>
<text key="phone" text="Phone" de.text="Telefon"/>
<text key="fax" text="Fax" de.text="Fax"/>
<text key="email" text="Email" de.text="Email"/>
<text key="website" text="Web site" de.text="Webseite"/>
<text key="vhf_channel" text="VHF channel" de.text="UKW/VHF Kanal"/>
<text key="vhf_mmsi" text="VHF MMSI" de.text="UKW/VHF MMSI Funk ID"/>
<space/>
<text key="harbour:information" text="General Information" de.text="Hafen Hauptinformationen"/>
</item>
</group>
<!--****** Wave breaker for beach?! *****-->
<group name="Protection Structures (F1-6)" de.name="Sichereits Einrichtungen (F1-6)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg">
<item name="Training Wall (F5)" de.name="Wellenbrecher (F5)" type="way,closedway">
<label text="F5: Training Wall" de.text="F5: Wellenbrecher"/>
<space/>
<key key="seamark:type" value="shoreline_construction"/>
<key key="seamark:shoreline_construction:category" value="training_wall"/>
<combo key="seamark:shoreline_construction:water_level" text="Water Level" de.text="Wasserstand">
<list_entry value="dry" display_value="Dry" de.display_value="Trocken"/>
<list_entry value="submerged" display_value="Submeged" de.display_value="unter Wasser"/>
<list_entry value="covers" diplay_value="Covers" de.display_value="Verdeckt"/>
</combo>
</item>
</group>
<group name="Harbour Installations (F10-34)" de.name="Hafen Einrichtungen (F10-34)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F.svg">
<item name="Fishing Harbour (F10)" de.name="Fischerhafen (F10)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F10.svg" type="node,closedway">
<label text="F10: Fishing Harbour" de.text="F10: Fischerhafen" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F10.svg"/>
<space/>
<key key="harbour" value="yes"/>
<key key="seamark:type" value="harbour"/>
<key key="seamark:harbour:category" value="fishing"/>
<text key="name" text="Name" de.text="Name"/>
<space/>
<text key="operator" text="Harbour Operator" de.text="Hafenleiter"/>
<space/>
<check key="port_of_entry" value_on="yes" value_off="no" text="Port of Entry" de.text="Hafeneinfahrt" default="off"/>
<space/>
<label text="Harbour Access Restrictions" de.text="Hafennutzungsbeschränkungen"/>
<space/>
<text key="access:tide" text="Tide state" de.text="Gezeitenangaben"/>
<text key="access:tidal_range" text="Tidal range" de.text="Gezeitenbereich"/>
<text key="access:sill_height" text="Sill height" de.text="Hoher Wasserstand"/>
<text key="access:swell" text="Swell conditions" de.text="Wellengang Bedingungen"/>
<text key="access:ice" text="Ice conditions" de.text="Eis Bedingungen"/>
<text key="access:time" text="Time limits" de.text="Zeitbegrenzung"/>
<space/>
<label text="Vessel Size Restrictions" de.text="Schiffsgrößen Auflage"/>
<space/>
<text key="maxlength" text="Maximum length" de.text="Maximale Länge"/>
<text key="maxwidth" text="Maximum beam" de.text="Maximale Breite"/>
<text key="maxdraft" text="Maximum draft" de.text="Maximaler Tiefgang"/>
<text key="maxairdraft" text="Maximum height" de.text="Maximale Höhe"/>
<text key="maxspeed" text="Speed limit" de.text="Geschwindugkeitsbegrenzung"/>
<space/>
<label text="Contact Information" de.text="Kontakt Informationen"/>
<space/>
<text key="harbour_master" text="Harbour Master" de.text="Havenmeister"/>
<text key="phone" text="Phone" de.text="Telefon"/>
<text key="fax" text="Fax" de.text="Fax"/>
<text key="email" text="Email" de.text="Email"/>
<text key="website" text="Web site" de.text="Internetseite"/>
<text key="vhf_channel" text="VHF channel" de.text="VHF/UKW Kanal"/>
<text key="vhf_mmsi" text="VHF MMSI" de.text="VHF/UKW Kennung (MMSI)"/>
<space/>
<text key="harbour:information" text="General Information" de.text="Hauptinformationen"/>
<link href="https://wiki.openstreetmap.org/wiki/Seamarks/Harbours" text="Harbours" de.text="Häfen"/>
</item>
<item name="Designation of Berth (F19.1)" type="node,way,closedway">
<label text="Number, Name or Letter of Berth"/>
<space/>
<key key="seamark:type" value="berth"/>
<text key="seamark:name" text="Name"/>
<combo key="seamark:berth:category" text="Category">
<list_entry value="loading"/>
<list_entry value="unloading"/>
<list_entry value="overnight_accommodation"/>
<list_entry value="pushing-navigation"/>
<list_entry value="non-pushing-navigation"/>
<list_entry value="fleeting"/>
<list_entry value="first_class"/>
<list_entry value="second_class"/>
</combo>
<combo key="seamark:berth:danger_class" text="Danger Class">
<list_entry value="no_blue" display_value="Unspecified" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q126/CEVNI/E5_4.svg" icon_size="16"/>
<list_entry value="one_blue" display_value="Certain Flammable Substances" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q126/CEVNI/E5_5.svg" icon_size="16"/>
<list_entry value="two_blue" display_value="Certain Health Hazards" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q126/CEVNI/E5_6.svg" icon_size="16"/>
<list_entry value="three_blue" display_value="Certain Explosives" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q126/CEVNI/E5_7.svg" icon_size="16"/>
<list_entry value="one_red" display_value="Russian Inland Waterway Regulation" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/Q/Q126/RIWR/keep_lookout.svg" icon_size="16"/>
</combo>
</item>
<item name="Visitors Berth (F19.2)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/U/U2.svg" type="node,way,closedway">
<label text="F19.2: Visitors Berth" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/U/U2.svg"/>
<space/>
<key key="seamark:type" value="small_craft_facility"/>
<key key="seamark:small_craft_facility:category" value="visitor_berth"/>
</item>
<item name="Dolphin (F20)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F20.svg" type="node">
<label text="F20: Dolphin" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F20.svg"/>
<space/>
<key key="seamark:type" value="mooring"/>
<key key="seamark:mooring:category" value="dolphin"/>
</item>
<item name="Deviation Dolphin (F21)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F21.svg" type="node">
<label text="F21: Deviation Dolphin" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F21.svg"/>
<space/>
<key key="seamark:type" value="mooring"/>
<key key="seamark:mooring:category" value="deviation_dolphin"/>
<text key="seamark:name" text="Name"/>
</item>
<item name="Mooring Posts/Piles (F22)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F22.svg" type="node">
<label text="F22: Mooring Posts/Piles" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F22.svg"/>
<space/>
<key key="seamark:type" value="mooring"/>
<key key="seamark:mooring:category" value="post"/>
</item>
<item name="Minor Posts/Piles (F22)" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F22.svg" type="node">
<label text="F22: Minor Posts/Piles" icon="https://raw.githubusercontent.com/OpenNauticalChart/josm/master/icons/svg/F/F22.svg"/>
<space/>