-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathmap_symbols_et.ts
10824 lines (10745 loc) · 533 KB
/
map_symbols_et.ts
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"?>
<!DOCTYPE TS>
<TS version="2.1" language="et">
<context>
<name>ISOM 2017-2</name>
<message>
<source>Purple for course overprint</source>
<comment>Color 0</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>White for course overprint</source>
<comment>Color 1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Black 100%</source>
<comment>Color 2</comment>
<translation>Must 100%</translation>
</message>
<message>
<source>Green 100%</source>
<comment>Color 3</comment>
<translation>Roheline 100%</translation>
</message>
<message>
<source>White for railway</source>
<comment>Color 4</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Blue 100%</source>
<comment>Color 5</comment>
<translation>Sinine 100%</translation>
</message>
<message>
<source>Brown 100%</source>
<comment>Color 6</comment>
<translation>Pruun 100%</translation>
</message>
<message>
<source>Purple for track symbols</source>
<comment>Color 7</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Black below purple for track symbols</source>
<comment>Color 8</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Black 65%</source>
<comment>Color 9</comment>
<translation>Must 65%</translation>
</message>
<message>
<source>Black 20%</source>
<comment>Color 10</comment>
<translation>Must 20%</translation>
</message>
<message>
<source>Upper brown 50%</source>
<comment>Color 11</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Black below upper brown 50%</source>
<comment>Color 12</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Lower brown 50%</source>
<comment>Color 13</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Black below lower brown 50%</source>
<comment>Color 14</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Blue 100% for area features</source>
<comment>Color 15</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Blue 70%</source>
<comment>Color 16</comment>
<translation>Sinine 70%</translation>
</message>
<message>
<source>Blue 50%</source>
<comment>Color 17</comment>
<translation>Sinine 50%</translation>
</message>
<message>
<source>OpenOrienteering Orange</source>
<comment>Color 18</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Yellow 100% for narrow ride</source>
<comment>Color 19</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Green 60% for narrow ride</source>
<comment>Color 20</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Green 30% for narrow ride</source>
<comment>Color 21</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>White over green</source>
<comment>Color 22</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Yellow 100%/Green 50%</source>
<comment>Color 23</comment>
<translation>Kollane 100%/Roheline 50%</translation>
</message>
<message>
<source>Black 25% (Grey)</source>
<comment>Color 24</comment>
<translation>Must 25% (Hall)</translation>
</message>
<message>
<source>Green 100%/Black 50%</source>
<comment>Color 25</comment>
<translation>Roheline 100%/Must 50%</translation>
</message>
<message>
<source>Green 100% for area features</source>
<comment>Color 26</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Green 60%</source>
<comment>Color 27</comment>
<translation>Roheline 60%</translation>
</message>
<message>
<source>Green 30%</source>
<comment>Color 28</comment>
<translation>Roheline 30%</translation>
</message>
<message>
<source>Green 100% for undergrowth</source>
<comment>Color 29</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>White over yellow</source>
<comment>Color 30</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Black for open land</source>
<comment>Color 31</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Yellow</source>
<comment>Color 32</comment>
<translation>Kollane</translation>
</message>
<message>
<source>Yellow 100% for area features</source>
<comment>Color 33</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Yellow 50%</source>
<comment>Color 34</comment>
<translation>Kollane 50%</translation>
</message>
<message>
<source>Contour</source>
<comment>Name of symbol 101</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A line joining points of equal height. The standard vertical interval between contours is 5 m. A contour interval of 2.5 m may be used for flat terrains.
Slope lines may be drawn on the lower side of a contour line to clarify the direction of slope. When used, they should be placed in re-entrants.
A closed contour represents a knoll or a depression. A depression has to have at least one slope line. Minimum height/depth should be 1 m.
Relationships between adjacent contour lines are important. Adjacent contour lines show form and structure. Small details on contours should be avoided because they tend to hide the main features of the terrain.
Prominent features such as depressions, re-entrants, spurs, earth banks and terraces may have to be exaggerated.
Absolute height accuracy is of little importance, but the relative height difference between neighbouring features should be represented on the map as accurately as possible. It is permissible to alter the height of a contour slightly if this improves the representation of a feature. This deviation should not exceed 25% of the contour interval, and attention must be paid to neighbouring features.
The smallest bend in a contour line is 0.25 mm from centre to centre of the line (footprint 4 m). The mouth of a re-entrant or a spur must be wider than 0.5 mm from centre to centre of the line (footprint 8 m).
The minimum length of a contour knoll is 0.9 mm (footprint 13.5 m) and the minimum width is 0.6 mm (footprint 9 m) outside measure. Smaller prominent knolls can be represented using symbol Small knoll (109) or Small elongated knoll (110) or they can be exaggerated on the map to satisfy the minimum dimension.
A depression must accommodate a slope line, so the minimum length is 1.1 mm (footprint 16.5 m) and the minimum width is 0.7 mm (footprint 10.5 m) outside measure. Smaller, prominent depressions can be represented using symbol Small depression (111) or they can be exaggerated to satisfy the minimum dimension.
Contours should be adapted (not broken) in order not to touch symbol Small knoll (109) or Small elongated knoll (110).</source>
<comment>Description of symbol 101</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Slope line, contour</source>
<comment>Name of symbol 101.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Slope lines may be drawn on the lower side of a contour line to clarify the direction of slope. When used, they should be placed in re-entrants.
A depression has to have at least one slope line.</source>
<comment>Description of symbol 101.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Index contour</source>
<comment>Name of symbol 102</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Every fifth contour shall be drawn with a thicker line. This is an aid to the quick assessment of height difference and the overall shape of the terrain surface.
An index contour may be represented as an ordinary contour line in an area with much detail. Small contour knolls and depressions are normally not represented using index contours.
The index contour level must be carefully selected in flat terrain. The ideal level for the index contour is the central contour in the most prominent slopes.</source>
<comment>Description of symbol 102</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Contour value</source>
<comment>Name of symbol 102.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An index contour may have a height value assigned. A height value should only be inserted in an index contour in places where other detail is not obscured. It shall be orientated so that the top of the label is on the higher side of the contour. The index value (label) shall be 1.5 mm high and represented in a sans-serif font.</source>
<comment>Description of symbol 102.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Form line</source>
<comment>Name of symbol 103</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Form lines are used where more information must be given about the shape of the ground. Form lines are added only where representation would be incomplete with ordinary contours. They shall not be used as intermediate contours. Only one form line should be used between neighbouring contours. It is very important that a form line fits logically into the contour system, so the start and end of a form line should be parallel to the neighbouring contours. The gaps between the form line dashes must be placed on reasonably straight sections of the form line. Form lines can be used to differentiate flat knolls and depressions from more distinct ones (minimum height / depth should be 1 m). Excessive use of form lines must be avoided as this disturbs the three-dimensional picture of the ground shape and will complicate map reading.
Minimum length (non-closed): two dashes.
Minimum length of a form line, knoll or depression: 1.1 mm (footprint 16.5 m)</source>
<comment>Description of symbol 103</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Slope line, formline</source>
<comment>Name of symbol 103.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Slope lines may be drawn on the lower side of a contour line to clarify the direction of slope. When used, they should be placed in re-entrants.</source>
<comment>Description of symbol 103.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Earth bank</source>
<comment>Name of symbol 104</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An earth bank is an abrupt change in ground level which can be clearly distinguished from its surroundings, e.g. gravel or sand pits, road and railway cuttings or embankments.
Minimum height: 1 m. An earth bank may impact runnability. The tags represent the full extent of the earth bank.
For long earth banks it is allowed to use tags shorter than the minimum length at the ends. If two earth banks are close together, tags may be omitted. Impassable earth banks shall be represented using symbol impassable cliff (201).
Minimum length: 0.6 mm (footprint 9 m).</source>
<comment>Description of symbol 104</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Earth bank, minimum size</source>
<comment>Name of symbol 104.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An earth bank is an abrupt change in ground level which can be clearly distinguished from its surroundings, e.g. gravel or sand pits, road and railway cuttings or embankments.
Minimum height: 1 m. An earth bank may impact runnability. The tags represent the full extent of the earth bank.
For long earth banks it is allowed to use tags shorter than the minimum length at the ends. If two earth banks are close together, tags may be omitted. Impassable earth banks shall be represented using symbol impassable cliff (201).
Minimum length: 0.6 mm (footprint 9 m).</source>
<comment>Description of symbol 104.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Earth bank, top line</source>
<comment>Name of symbol 104.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An earth bank is an abrupt change in ground level which can be clearly distinguished from its surroundings, e.g. gravel or sand pits, road and railway cuttings or embankments.
Minimum height: 1 m. An earth bank may impact runnability. The tags represent the full extent of the earth bank.
For long earth banks it is allowed to use tags shorter than the minimum length at the ends. If two earth banks are close together, tags may be omitted. Impassable earth banks shall be represented using symbol impassable cliff (201).
Minimum length: 0.6 mm (footprint 9 m).</source>
<comment>Description of symbol 104.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Earth bank, tag line</source>
<comment>Name of symbol 104.3</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Use this symbol to display the full extent of wide earth banks.</source>
<comment>Description of symbol 104.3</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Earth bank, minimum size (from ISOM2000)</source>
<comment>Name of symbol 104.9</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Provided for migration from ISOM2000. Use of this symbol variant is discouraged for new maps.</source>
<comment>Description of symbol 104.9</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Earth wall</source>
<comment>Name of symbol 105</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Distinct earth wall. Minimum height: 1 m.
Minimum length: 1.4 mm (footprint 21 m).</source>
<comment>Description of symbol 105</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ruined earth wall</source>
<comment>Name of symbol 106</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A ruined or less distinct earth wall. Minimum height: 0.5 m.
Minimum length: two dashes (3.65 mm - footprint 55 m). If shorter, the object must be exaggerated to the minimum length or changed to symbol Earth wall (105).</source>
<comment>Description of symbol 106</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Erosion gully</source>
<comment>Name of symbol 107</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An erosion gully which is too small to be shown using symbol Earth bank (104) is shown by a single line. Minimum depth: 1 m.
Minimum length: 1.15 mm (footprint 17 m).
Contour lines should not be broken around this symbol.</source>
<comment>Description of symbol 107</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Small erosion gully</source>
<comment>Name of symbol 108</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A small erosion gully, dry ditch or trench. Minimum depth: 0.5 m.
Minimum length (isolated): three dots (1.15 mm - footprint 17 m).
Contour lines should be broken around this symbol.</source>
<comment>Description of symbol 108</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Small knoll</source>
<comment>Name of symbol 109</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An obvious mound or knoll which cannot be drawn to scale with a contour.
Minimum height: 1 m.
The symbol shall not touch or overlap contours.
Footprint: 7.5 m x 7.5 m.</source>
<comment>Description of symbol 109</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Small elongated knoll</source>
<comment>Name of symbol 110</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An obvious elongated knoll which cannot be drawn to scale with a contour.
Minimum height: 1 m.
The symbol shall not touch or overlap contours.
Footprint: 12 m x 6 m.</source>
<comment>Description of symbol 110</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Small depression</source>
<comment>Name of symbol 111</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A small depression or hollow without steep sides that is too small to be shown by contours.
Minimum depth: 1 m, minimum width: 2 m.
Small depressions with steep sides are represented with symbol Pit (112).
The symbol shall not touch or overlap other brown symbols. Location is the centre of gravity of the symbol, and the symbol is orientated to north.
Footprint: 12 m x 6 m.</source>
<comment>Description of symbol 111</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Pit</source>
<comment>Name of symbol 112</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Pits and holes with distinct steep sides which cannot be shown to scale using symbol Earth bank (104).
Minimum depth: 1 m, minimum width: 1 m.
A pit larger than 5 m x 5 m should normally be exaggerated and drawn using Earth bank (104). Pits without steep sides are represented with symbol Small depression (111).
The symbol shall not touch or overlap other brown symbols. Location is the centre of gravity of the symbol, and the symbol is orientated to north.
Footprint: 10.5 m x 12 m.</source>
<comment>Description of symbol 112</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Broken ground</source>
<comment>Name of symbol 113</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An area of pits and / or knolls which is too intricate to be shown in detail, or other types of rough and uneven ground that is clearly distinguishable but has little impact on runnability.
The dots should be randomly distributed but not interfere with the representation of important terrain features and objects.
The minimum number of dots is three (footprint 10 m x 10 m).
The maximum centre to centre distance between neighbouring dots is 0.6 mm.
The minimum centre to centre distance between neighbouring dots is 0.5 mm.
Contours should not be cut in broken ground areas.
The dots shall not be arranged to form a single point wide line.</source>
<comment>Description of symbol 113</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Broken ground, individual dot</source>
<comment>Name of symbol 113.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An area of pits and / or knolls which is too intricate to be shown in detail, or other types of rough and uneven ground that is clearly distinguishable but has little impact on runnability.
The dots should be randomly distributed but not interfere with the representation of important terrain features and objects.
The minimum number of dots is three (footprint 10 m x 10 m).
The maximum centre to centre distance between neighbouring dots is 0.6 mm.
The minimum centre to centre distance between neighbouring dots is 0.5 mm.
Contours should not be cut in broken ground areas.
The dots shall not be arranged to form a single point wide line.
Density: 3-4 dots / mm².</source>
<comment>Description of symbol 113.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Very broken ground</source>
<comment>Name of symbol 114</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An area of pits and/or knolls, which is too intricate to be shown in detail, or other types of rough and uneven ground that is clearly distinguishable and affects runnability.
The dots should be randomly distributed but not interfere with the representation of important terrain features and objects.
The minimum number of dots is three (footprint 7 m x 7 m).
The maximum centre to centre distance between neighbouring dots is 0.38 mm.
The minimum centre to centre distance between neighbouring dots is 0.25 mm.
Contours should not be cut in broken ground areas.
The dots shall not be arranged to form a single point wide line.</source>
<comment>Description of symbol 114</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Prominent landform feature</source>
<comment>Name of symbol 115</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>The feature must be very clearly distinguishable from its surroundings.
Location is the centre of gravity of the symbol, which is orientated to north.
The symbol shall not touch or overlap other brown symbols.
The definition of the symbol must be given on the map.
Footprint: 13.5 m x 11.5 m.</source>
<comment>Description of symbol 115</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Impassable cliff</source>
<comment>Name of symbol 201</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A cliff, quarry or earth bank that is so high and steep that it is impossible to pass/climb or is dangerous.
For vertical rock faces the tags may be omitted if space is short. Ends of the top line may be rounded or square. Shorter tags may be used at the ends.
The gap between two impassable cliffs or between impassable cliffs and other impassable feature symbols must exceed 0.25 mm on the map.
When an impassable cliff drops straight into water, making it impossible to pass under the cliff along the water’s edge, the bank line is omitted or the tags shall clearly extend over the bank line. An impassable cliff should interplay with the contour lines.
Minimum length: 0.6 mm (footprint 9 m).</source>
<comment>Description of symbol 201</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Impassable cliff, minimum size</source>
<comment>Name of symbol 201.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A cliff, quarry or earth bank that is so high and steep that it is impossible to pass/climb or is dangerous.
For vertical rock faces the tags may be omitted if space is short. Ends of the top line may be rounded or square. Shorter tags may be used at the ends.
The gap between two impassable cliffs or between impassable cliffs and other impassable feature symbols must exceed 0.25 mm on the map.
When an impassable cliff drops straight into water, making it impossible to pass under the cliff along the water’s edge, the bank line is omitted or the tags shall clearly extend over the bank line. An impassable cliff should interplay with the contour lines.
Minimum length: 0.6 mm (footprint 9 m).</source>
<comment>Description of symbol 201.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Impassable cliff, plan shape representation (from ISOM2000)</source>
<comment>Name of symbol 201.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Provided for migration from ISOM2000. Use of this symbol variant is discouraged for new maps.</source>
<comment>Description of symbol 201.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Impassable cliff, top line</source>
<comment>Name of symbol 201.3</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A cliff, quarry or earth bank that is so high and steep that it is impossible to pass/climb or is dangerous.
For vertical rock faces the tags may be omitted if space is short. Ends of the top line may be rounded or square. Shorter tags may be used at the ends.
The gap between two impassable cliffs or between impassable cliffs and other impassable feature symbols must exceed 0.25 mm on the map.
When an impassable cliff drops straight into water, making it impossible to pass under the cliff along the water’s edge, the bank line is omitted or the tags shall clearly extend over the bank line. An impassable cliff should interplay with the contour lines.
Minimum length: 0.6 mm (footprint 9 m).</source>
<comment>Description of symbol 201.3</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Impassable cliff, tag line</source>
<comment>Name of symbol 201.4</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Use this symbol to display the full extent of a wide cliff.</source>
<comment>Description of symbol 201.4</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Impassable cliff, minimum size (from ISOM2000)</source>
<comment>Name of symbol 201.9</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Provided for migration from ISOM2000. Use of this symbol variant is discouraged for new maps.</source>
<comment>Description of symbol 201.9</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Cliff</source>
<comment>Name of symbol 202</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A passable cliff or quarry. If the direction of fall of the cliff is not apparent from the contours, or to improve legibility, short tags may be drawn in the direction of the downslope.
For non-vertical cliffs, the tags should be drawn to show the full horizontal extent. Ends of the base line must be rounded if no tags appear. A passage between two cliffs must be at least 0.2 mm. A cliff should interplay with the contour lines.
Crossing a cliff will normally slow progress.
Minimum height: 1 m.
Minimum length: 0.6 mm (footprint 9 m).</source>
<comment>Description of symbol 202</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Cliff, minimum size</source>
<comment>Name of symbol 202.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A passable cliff or quarry. If the direction of fall of the cliff is not apparent from the contours, or to improve legibility, short tags may be drawn in the direction of the downslope.
For non-vertical cliffs, the tags should be drawn to show the full horizontal extent. Ends of the base line must be rounded if no tags appear. A passage between two cliffs must be at least 0.2 mm. A cliff should interplay with the contour lines.
Crossing a cliff will normally slow progress.
Minimum height: 1 m.
Minimum length: 0.6 mm (footprint 9 m).</source>
<comment>Description of symbol 202.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Cliff, with tags</source>
<comment>Name of symbol 202.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A passable cliff or quarry. If the direction of fall of the cliff is not apparent from the contours, or to improve legibility, short tags may be drawn in the direction of the downslope.
For non-vertical cliffs, the tags should be drawn to show the full horizontal extent. Ends of the base line must be rounded if no tags appear. A passage between two cliffs must be at least 0.2 mm. A cliff should interplay with the contour lines.
Crossing a cliff will normally slow progress.
Minimum height: 1 m.
Minimum length: 0.6 mm (footprint 9 m).</source>
<comment>Description of symbol 202.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Cliff, with tags, minimum size</source>
<comment>Name of symbol 202.3</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A passable cliff or quarry. If the direction of fall of the cliff is not apparent from the contours, or to improve legibility, short tags may be drawn in the direction of the downslope.
For non-vertical cliffs, the tags should be drawn to show the full horizontal extent. Ends of the base line must be rounded if no tags appear. A passage between two cliffs must be at least 0.2 mm. A cliff should interplay with the contour lines.
Crossing a cliff will normally slow progress.
Minimum height: 1 m.
Minimum length: 0.6 mm (footprint 9 m).</source>
<comment>Description of symbol 202.3</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Cliff, with tags, minimum size (from ISOM2000)</source>
<comment>Name of symbol 202.9</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Provided for migration from ISOM2000. Use of this symbol variant is discouraged for new maps.</source>
<comment>Description of symbol 202.9</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Rocky pit or cave (without a distinct entrance)</source>
<comment>Name of symbol 203.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Rocky pits, holes, caves or mineshafts without a distinct entrance which may constitute a danger to the competitor.
Location is the centre of gravity of the symbol, and the symbol shall be orientated to north.
Rocky pits larger than 5 m in diameter should be exaggerated and represented using cliff symbols (201, 202).
Minimum depth: 1 m.
Footprint: 10.5 m x 12 m.</source>
<comment>Description of symbol 203.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Cave or rocky pit (with a distinct entrance)</source>
<comment>Name of symbol 203.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Rocky pits, holes, caves or mineshafts with a distinct entrance which may constitute a danger to the competitor. Minimum depth: 1 m.
Location is the centre of gravity of the symbol, and the symbol should point into the cave.
Rocky pits larger than 5 m in diameter should be exaggerated and represented using cliff symbols (201, 202).</source>
<comment>Description of symbol 203.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Rocky pit or cave with distinct entrance (from ISOM2000)</source>
<comment>Name of symbol 203.9</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Provided for migration from ISOM2000. Use of this symbol variant is discouraged for new maps.</source>
<comment>Description of symbol 203.9</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Boulder</source>
<comment>Name of symbol 204</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A distinct boulder (should be higher than 1 m), which is immediately identifiable on the ground. Groups of boulders are represented using symbol Boulder cluster (207) or a boulder field symbol (208, 209).
To be able to show the distinction between neighbouring (closer than 30 m apart) boulders with significant difference in size, it is permitted to enlarge the symbol to 0.5 mm for some of the boulders.
Footprint: 6 m diameter (7.5 m diameter).</source>
<comment>Description of symbol 204</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Boulder or large boulder, different size</source>
<comment>Name of symbol 204.5</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A boulder which is larger than neighboring boulders (204), or a large boulder which is smaller than neighboring large boulders (205).
To be able to show the distinction between neighbouring (closer than 30 metres apart) boulders (204) with significant difference in size, it is permitted to use this symbol (0.5 mm) as an enlargement of symbol 204 for some of the boulders.
To be able to show the distinction between neighbouring (closer than 30 metres apart) large boulders (205) with significant difference in size, it is permitted to use this symbol (0.5 mm) as an as a reduction of symbol 205 for some of the boulders.</source>
<comment>Description of symbol 204.5</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Large boulder</source>
<comment>Name of symbol 205</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A particularly large and distinct boulder. A large boulder should be more than 2 m high.
To be able to show the distinction between neighbouring (closer than 30 m apart) large boulders with significant difference in size, it is permitted to reduce the size of the symbol to 0.5 mm for some of the boulders.
Footprint: 9 m diameter (7.5 m diameter).</source>
<comment>Description of symbol 205</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Gigantic boulder</source>
<comment>Name of symbol 206</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A gigantic boulder, rock pillar or massive cliff shall be represented in plan shape. The objects can vary in shape and width.
The gap between gigantic boulders or between gigantic boulders and other impassable feature symbols must exceed 0.15 mm on the map.
Minimum width: 0.25 mm (footprint 3.75 m).
Minimum area: 0.3 mm² (footprint 67 m²).</source>
<comment>Description of symbol 206</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Boulder cluster</source>
<comment>Name of symbol 207</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A distinct group of boulders so closely clustered together that they cannot be marked individually. The boulders in the cluster should be higher than 1 m.
A boulder cluster must be easily identifiable as a group of boulders.
To be able to show the distinction between neighbouring (maximum 30 m apart) boulder clusters with significant difference in boulder size, it is permitted to enlarge this symbol to 120% (edge length 0.96 mm) for some of the boulder clusters.
The symbol is orientated to north.
Footprint: 12 m x 10 m.</source>
<comment>Description of symbol 207</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Boulder cluster, large</source>
<comment>Name of symbol 207.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>To be able to show the distinction between neighbouring (maximum 30 m apart) boulder clusters with significant difference in boulder size, it is permitted to use this symbol instead of regular Boulder cluster (207) for some of the boulder clusters.</source>
<comment>Description of symbol 207.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Boulder field</source>
<comment>Name of symbol 208</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An area which is covered with so many scattered blocks of stone that they cannot be marked individually, is shown with randomly placed and orientated solid triangles. A boulder field will generally not impact runnability. If the runnability of the boulder field is reduced, symbol 209 (dense boulder field) should be used or the symbol should be combined with a stony ground symbol.
A minimum of two triangles should be used. One triangle may be used if it is combined with other rock symbols (for instance directly below cliff symbols (201, 202), adjacent to boulder symbols (204-206) or combined with stony ground symbols (210-212)).
The maximum centre to centre distance between neighbouring triangles is 1.2 mm. The minimum centre to centre distance between neighbouring triangles is 0.75 mm.
Density: 0.8-1 symbol / mm². To be able to show obvious height differences within a boulder field, it is permitted to enlarge some of the triangles to 120%.
Footprint of individual triangle: 12 m x 6 m.</source>
<comment>Description of symbol 208</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Boulder field, single triangle</source>
<comment>Name of symbol 208.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An area which is covered with so many scattered blocks of stone that they cannot be marked individually, is shown with randomly placed and orientated solid triangles. A boulder field will generally not impact runnability. If the runnability of the boulder field is reduced, symbol 209 (dense boulder field) should be used or the symbol should be combined with a stony ground symbol.
A minimum of two triangles should be used. One triangle may be used if it is combined with other rock symbols (for instance directly below cliff symbols (201, 202), adjacent to boulder symbols (204-206) or combined with stony ground symbols (210-212)).
The maximum centre to centre distance between neighbouring triangles is 1.2 mm. The minimum centre to centre distance between neighbouring triangles is 0.75 mm.
Density: 0.8-1 symbol / mm². To be able to show obvious height differences within a boulder field, it is permitted to enlarge some of the triangles to 120%.
Footprint of individual triangle: 12 m x 6 m.</source>
<comment>Description of symbol 208.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Boulder field, single triangle, enlarged</source>
<comment>Name of symbol 208.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>To be able to show obvious height differences within a boulder field, it is permitted to enlarge some of the triangles to 120%.</source>
<comment>Description of symbol 208.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Dense boulder field</source>
<comment>Name of symbol 209</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An area which is covered with so many blocks of stone that they cannot be marked individually and the runnability is affected, is shown with randomly placed and orientated solid triangles. A minimum of two triangles must be used.
The maximum centre to centre distance between neighbouring triangles is 0.6 mm.
Density: 2-3 symbols / mm². To be able to show obvious height differences within a boulder field, it is permitted to enlarge some of the triangles to 120%.
Footprint of individual triangle: 12 m x 6 m.</source>
<comment>Description of symbol 209</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Stony ground, slow running</source>
<comment>Name of symbol 210</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Stony or rocky ground which reduces runnability to about 60-80% of normal speed.
The dots should be randomly distributed but not interfere with the representation of important terrain features and objects. Illustration serves as an example of density and also point symbol (single dots) can be used to draw stony ground.
The minimum number of dots is three (footprint 10 m x 10 m).
The maximum centre to centre distance between neighbouring dots is 0.6 mm.
The minimum centre to centre distance between neighbouring dots is 0.45 mm.
Density: 3-4 dots / mm².
To avoid confusion with symbol Distinct vegetation boundary (416), the dots should not be arranged to form a line.</source>
<comment>Description of symbol 210</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Stony ground, individual dot</source>
<comment>Name of symbol 210.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Stony or rocky ground which reduces runnability to about 60-80% of normal speed.
The dots should be randomly distributed but not interfere with the representation of important terrain features and objects. Illustration serves as an example of density and also point symbol (single dots) can be used to draw stony ground.
The minimum number of dots is three (footprint 10 m x 10 m).
The maximum centre to centre distance between neighbouring dots is 0.6 mm.
The minimum centre to centre distance between neighbouring dots is 0.45 mm.
Density: 3-4 dots / mm².
To avoid confusion with symbol Distinct vegetation boundary (416), the dots should not be arranged to form a line.</source>
<comment>Description of symbol 210.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Stony ground, walk</source>
<comment>Name of symbol 211</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Stony or rocky ground which reduces the runnability significantly (to about 20-60% of normal speed).
The dots should be randomly distributed but not interfere with the representation of important terrain features and objects. Illustration serves as an example of density and also point symbol (single dots) can be used to draw stony ground.
The minimum number of dots is three (footprint 8 m x 8 m).
The maximum centre to centre distance between neighbouring dots is 0.4 mm.
The minimum centre to centre distance between neighbouring dots is 0.32 mm.
Density: 6-8 dots / mm².
To avoid confusion with symbol Distinct vegetation boundary (416), the dots should not be arranged to form a line.</source>
<comment>Description of symbol 211</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Stony ground, fight</source>
<comment>Name of symbol 212</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Stony or rocky ground which is hardly passable (less than 20% of normal speed).
The dots should be randomly distributed but not interfere with the representation of important terrain features and objects. Illustration serves as an example of density and also point symbol (single dots) can be used to draw stony ground.
The minimum number of dots is three (footprint 7 m x 7 m).
The maximum centre to centre distance between neighbouring dots is 0.32 mm.
The minimum centre to centre distance between neighbouring dots is 0.25 mm.
Density: 10-12 dots / mm².
To avoid confusion with symbol Distinct vegetation boundary (416), the dots should not be arranged to form a line.</source>
<comment>Description of symbol 212</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Sandy ground</source>
<comment>Name of symbol 213</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>An area of soft sandy ground where runnability is reduced to less than 80% of normal speed.
The symbol is orientated to north.
Minimum area: 1 mm x 1 mm (footprint 15 m x 15 m).</source>
<comment>Description of symbol 213</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Bare rock</source>
<comment>Name of symbol 214</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A runnable area of rock without earth or vegetation should be shown as bare rock.
An area of rock covered with grass, moss or other low vegetation, shall not be shown using the bare rock symbol.
An area of less runnable bare rock should be shown using a stony ground symbol (210-212).
Minimum area: 1 mm x 1 mm (footprint 15 m x 15 m).</source>
<comment>Description of symbol 214</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Trench</source>
<comment>Name of symbol 215</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Rocky or artificial trench. Minimum depth should be 1 m.
Minimum length: 1 mm (footprint 15 m).
Shorter trenches may be exaggerated to the minimum graphical dimension.
Impassable trenches shall be represented using symbol Impassable cliff (201).
Collapsed and easily crossable trenches should be mapped as erosion gullies.</source>
<comment>Description of symbol 215</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Uncrossable body of water (full colour), with bank line</source>
<comment>Name of symbol 301</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>The black bank line emphasises that the feature is uncrossable.
Dominant areas of water may be shown with 70% colour. Small areas of water and bodies of water that have narrow parts shall always be shown with full colour.
Minimum width (inside): 0.3 mm.
Minimum area (inside): 0.55 mm x 0.55 mm (footprint 8 m x 8 m).</source>
<comment>Description of symbol 301</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Uncrossable body of water (full colour)</source>
<comment>Name of symbol 301.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Dominant areas of water may be shown with 70% colour. Small areas of water and bodies of water that have narrow parts shall always be shown with full colour.
Minimum width (inside): 0.3 mm.
Minimum area (inside): 0.55 mm x 0.55 mm (footprint 8 m x 8 m).</source>
<comment>Description of symbol 301.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Uncrossable body of water (dominant), with bank line</source>
<comment>Name of symbol 301.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>The black bank line emphasises that the feature is uncrossable.
Dominant areas of water may be shown with 70% colour. Small areas of water and bodies of water that have narrow parts shall always be shown with full colour.
Minimum width (inside): 0.3 mm.
Minimum area (inside): 0.55 mm x 0.55 mm (footprint 8 m x 8 m).</source>
<comment>Description of symbol 301.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Uncrossable body of water (dominant)</source>
<comment>Name of symbol 301.3</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Dominant areas of water may be shown with 70% colour. Small areas of water and bodies of water that have narrow parts shall always be shown with full colour.
Minimum width (inside): 0.3 mm.
Minimum area (inside): 0.55 mm x 0.55 mm (footprint 8 m x 8 m).</source>
<comment>Description of symbol 301.3</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Uncrossable body of water, bank line</source>
<comment>Name of symbol 301.4</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A black bank line indicates that the feature cannot be crossed.</source>
<comment>Description of symbol 301.4</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Shallow body of water, with solid outline</source>
<comment>Name of symbol 302</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A shallow seasonal or periodic body of water may be represented using a dashed outline. Small shallow water bodies may be represented as 100% blue (without an outline).
Minimum width (inside): 0.3 mm.
Minimum area (inside): 0.7 mm x 0.7 mm (footprint 10.5 m x 10.5 m).
Minimum width (full colour): 0.3 mm.
Minimum area (full colour): 0.55 mm x 0.55 mm (footprint 8 m x 8 m).</source>
<comment>Description of symbol 302</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Shallow body of water</source>
<comment>Name of symbol 302.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>A shallow seasonal or periodic body of water may be represented using a dashed outline. Small shallow water bodies may be represented as 100% blue (without an outline).
Minimum width (inside): 0.3 mm.
Minimum area (inside): 0.7 mm x 0.7 mm (footprint 10.5 m x 10.5 m).
Minimum width (full colour): 0.3 mm.
Minimum area (full colour): 0.55 mm x 0.55 mm (footprint 8 m x 8 m).</source>
<comment>Description of symbol 302.1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Shallow body of water, solid outline</source>
<comment>Name of symbol 302.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Use this symbol to represent the outline of a shallow body of water which is not seasonal or periodic.</source>
<comment>Description of symbol 302.2</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Shallow body of water, dashed outline</source>
<comment>Name of symbol 302.3</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Use this symbol to represent the outline of a shallow seasonal or periodic body of water.</source>
<comment>Description of symbol 302.3</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Small shallow body of water (full colour)</source>
<comment>Name of symbol 302.5</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Small shallow water bodies may be represented using this symbol (without an outline).
Minimum width: 0.3 mm.
Minimum area: 0.55 mm x 0.55 mm (footprint 8 m x 8 m).</source>
<comment>Description of symbol 302.5</comment>
<translation type="unfinished"></translation>
</message>
<message>