-
Notifications
You must be signed in to change notification settings - Fork 3
/
ISOM_15000.xmap
7237 lines (7236 loc) · 484 KB
/
ISOM_15000.xmap
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"?>
<map xmlns="http://openorienteering.org/apps/mapper/xml/v2" version="6">
<notes></notes>
<georeferencing scale="15000">
<projected_crs id="Local"/>
</georeferencing>
<colors count="22">
<color priority="0" name="Purple" c="0.200" m="1.000" y="0.000" k="0.000" opacity="1.000">
<spotcolors>
<namedcolor>PURPLE</namedcolor>
</spotcolors>
<cmyk method="custom"/>
<rgb method="custom" r="0.800" g="0.000" b="1.000"/>
</color>
<color priority="1" name="Black" c="0.000" m="0.000" y="0.000" k="1.000" opacity="1.000">
<spotcolors knockout="true">
<namedcolor>BLACK</namedcolor>
</spotcolors>
<cmyk method="custom"/>
<rgb method="custom" r="0.000" g="0.000" b="0.000"/>
</color>
<color priority="2" name="Brown 50%" c="0.000" m="0.280" y="0.500" k="0.090" opacity="1.000">
<spotcolors knockout="true">
<component factor="0.5" spotcolor="4"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="0.910" g="0.680" b="0.500"/>
</color>
<color priority="3" name="Black below light browns" c="0.000" m="0.000" y="0.000" k="1.000" opacity="1.000">
<spotcolors knockout="true">
<component factor="1" spotcolor="1"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="0.000" g="0.000" b="0.000"/>
</color>
<color priority="4" name="Brown" c="0.000" m="0.560" y="1.000" k="0.180" opacity="1.000">
<spotcolors>
<namedcolor>BROWN</namedcolor>
</spotcolors>
<cmyk method="custom"/>
<rgb method="custom" r="0.820" g="0.361" b="0.000"/>
</color>
<color priority="5" name="OpenOrienteering Orange" c="0.000" m="0.474" y="0.895" k="0.090" opacity="1.000">
<spotcolors>
<component factor="0.5" spotcolor="4"/>
<component factor="1" spotcolor="18"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="0.910" g="0.497" b="0.105"/>
</color>
<color priority="6" name="Opaque Blue" c="0.870" m="0.180" y="0.000" k="0.000" opacity="1.000">
<spotcolors knockout="true">
<component factor="1" spotcolor="7"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="0.130" g="0.820" b="1.000"/>
</color>
<color priority="7" name="Blue" c="0.870" m="0.180" y="0.000" k="0.000" opacity="1.000">
<spotcolors>
<namedcolor>BLUE</namedcolor>
</spotcolors>
<cmyk method="custom"/>
<rgb method="custom" r="0.130" g="0.820" b="1.000"/>
</color>
<color priority="8" name="Blue 50%" c="0.435" m="0.090" y="0.000" k="0.000" opacity="1.000">
<spotcolors knockout="true">
<component factor="0.5" spotcolor="7"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="0.565" g="0.910" b="1.000"/>
</color>
<color priority="9" name="Black 30%" c="0.000" m="0.000" y="0.000" k="0.300" opacity="1.000">
<spotcolors knockout="true">
<component factor="0.3" spotcolor="1"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="0.700" g="0.700" b="0.700"/>
</color>
<color priority="10" name="Green 50%, Yellow" c="0.380" m="0.270" y="0.886" k="0.000" opacity="1.000">
<spotcolors>
<component factor="0.5" spotcolor="14"/>
<component factor="1" spotcolor="18"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="0.620" g="0.730" b="0.114"/>
</color>
<color priority="11" name="Green over White over Green" c="0.760" m="0.000" y="0.910" k="0.000" opacity="1.000">
<spotcolors>
<component factor="1" spotcolor="14"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="0.240" g="1.000" b="0.090"/>
</color>
<color priority="12" name="Opaque White over Green" c="0.000" m="0.000" y="0.000" k="0.000" opacity="1.000">
<spotcolors knockout="true">
<component factor="0" spotcolor="14"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="1.000" g="1.000" b="1.000"/>
</color>
<color priority="13" name="Opaque Green" c="0.760" m="0.000" y="0.910" k="0.000" opacity="1.000">
<spotcolors knockout="true">
<component factor="1" spotcolor="14"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="0.240" g="1.000" b="0.090"/>
</color>
<color priority="14" name="Green" c="0.760" m="0.000" y="0.910" k="0.000" opacity="1.000">
<spotcolors>
<namedcolor>GREEN</namedcolor>
</spotcolors>
<cmyk method="custom"/>
<rgb method="custom" r="0.240" g="1.000" b="0.090"/>
</color>
<color priority="15" name="Green 60%" c="0.456" m="0.000" y="0.546" k="0.000" opacity="1.000">
<spotcolors knockout="true">
<component factor="0.6" spotcolor="14"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="0.544" g="1.000" b="0.454"/>
</color>
<color priority="16" name="Green 30%" c="0.228" m="0.000" y="0.273" k="0.000" opacity="1.000">
<spotcolors knockout="true">
<component factor="0.3" spotcolor="14"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="0.772" g="1.000" b="0.727"/>
</color>
<color priority="17" name="Green below light greens" c="0.760" m="0.000" y="0.910" k="0.000" opacity="1.000">
<spotcolors>
<component factor="1" spotcolor="14"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="0.240" g="1.000" b="0.090"/>
</color>
<color priority="18" name="Yellow" c="0.000" m="0.270" y="0.790" k="0.000" opacity="1.000">
<spotcolors>
<namedcolor>YELLOW</namedcolor>
</spotcolors>
<cmyk method="custom"/>
<rgb method="custom" r="1.000" g="0.730" b="0.210"/>
</color>
<color priority="19" name="Yellow 50%" c="0.000" m="0.135" y="0.395" k="0.000" opacity="1.000">
<spotcolors knockout="true">
<component factor="0.5" spotcolor="18"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="1.000" g="0.865" b="0.605"/>
</color>
<color priority="20" name="White over Yellow 70%" c="0.000" m="0.000" y="0.000" k="0.000" opacity="1.000">
<spotcolors>
<component factor="0" spotcolor="18"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="1.000" g="1.000" b="1.000"/>
</color>
<color priority="21" name="Yellow 70%" c="0.000" m="0.189" y="0.553" k="0.000" opacity="1.000">
<spotcolors knockout="true">
<component factor="0.7" spotcolor="18"/>
</spotcolors>
<cmyk method="spotcolor"/>
<rgb method="spotcolor" r="1.000" g="0.811" b="0.447"/>
</color>
</colors>
<barrier version="6" required="0.6.0">
<symbols count="159">
<symbol type="2" id="0" code="101" name="Contour">
<description>A line joining points of equal height. The standard vertical interval between contours is 5 metres. The smallest bend in a contour is 0.25 mm from centre to centre of the lines.</description>
<line_symbol color="4" line_width="140" minimum_length="0" join_style="2" cap_style="1" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<symbol type="2" id="1" code="102" name="Index contour">
<description>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. Where an index contour coincides with an area of much detail, it may be shown with a normal contour line.</description>
<line_symbol color="4" line_width="250" minimum_length="0" join_style="2" cap_style="1" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<symbol type="2" id="2" code="103" name="Form line">
<description>An intermediate contour line. Form lines are used where more information can be given about the shape of the ground. They are used only where representation is not possible with ordinary contours. Only one form line may be used between neighbouring contours.</description>
<line_symbol color="4" line_width="140" minimum_length="0" join_style="2" cap_style="0" pointed_cap_length="1000" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1250" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<symbol type="1" id="3" code="104" name="Slope line">
<description>Slope lines may be drawn on the lower side of a contour line, e.g. along the line of a re-entrant or in a depression. They are used only where it is necessary to clarify the direction of slope.</description>
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="0" y="0"/>
<coord x="0" y="-500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="8" id="4" code="105" name="Contour value">
<description>Contour values may be included to aid assessment of large height differences. They are inserted in the index contours in positions where other detail is not obscured. The figures should be orientated so that the top of the figure is on the higher side of the contour.</description>
<text_symbol icon_text="225">
<font family="Arial" size="2076"/>
<text color="4" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/>
</text_symbol>
</symbol>
<symbol type="2" id="5" code="106" name="Earth bank">
<description>A steep 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. The tags should show the full extent of the slope, but may be omitted if two banks are close together. Impassable banks should be drawn with symbol 201 (impassable cliff). The line width of very high earth banks may be 0.25 mm.</description>
<line_symbol color="4" line_width="180" minimum_length="600" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="780" end_length="850" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0">
<start_symbol>
<symbol type="1" code="" name="Anfangssymbol">
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="70" y="0"/>
<coord x="70" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
</start_symbol>
<mid_symbol>
<symbol type="1" code="" name="Zwischensymbol">
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="0" y="500"/>
<coord x="0" y="-90"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
</mid_symbol>
<end_symbol>
<symbol type="1" code="" name="Endsymbol">
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-70" y="0"/>
<coord x="-70" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
</end_symbol>
</line_symbol>
</symbol>
<symbol type="1" id="6" code="106.0.1" name="Earth bank, minimum size">
<description>A steep 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. The tags should show the full extent of the slope, but may be omitted if two banks are close together. Impassable banks should be drawn with symbol 201 (impassable cliff). The line width of very high earth banks may be 0.25 mm.</description>
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="3">
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="180" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-370" y="0"/>
<coord x="370" y="0"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="300" y="0"/>
<coord x="300" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-300" y="0"/>
<coord x="-300" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="2" id="7" code="106.1" name="Earth bank, very high">
<description>The line width of very high earth banks may be 0.25 mm.</description>
<line_symbol color="4" line_width="250" minimum_length="600" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="780" end_length="850" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0">
<start_symbol>
<symbol type="1" code="" name="Anfangssymbol">
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="70" y="0"/>
<coord x="70" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
</start_symbol>
<mid_symbol>
<symbol type="1" code="" name="Zwischensymbol">
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="0" y="500"/>
<coord x="0" y="100"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
</mid_symbol>
<end_symbol>
<symbol type="1" code="" name="Endsymbol">
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-70" y="0"/>
<coord x="-70" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
</end_symbol>
</line_symbol>
</symbol>
<symbol type="1" id="8" code="106.1.1" name="Earth bank, very high, minimum size">
<description>The line width of very high earth banks may be 0.25 mm.</description>
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="3">
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="250" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-370" y="0"/>
<coord x="370" y="0"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="300" y="0"/>
<coord x="300" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-300" y="0"/>
<coord x="-300" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="2" id="9" code="106.2" name="Earth bank, tag line">
<description>Use this symbol to display the full extent of wide earth banks.</description>
<line_symbol color="4" line_width="140" minimum_length="500" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<symbol type="2" id="10" code="107" name="Earth wall">
<description>Distinct earth wall. Minimum height is 1 m.</description>
<line_symbol color="4" line_width="140" minimum_length="0" join_style="2" cap_style="0" pointed_cap_length="1000" segment_length="2500" end_length="1250" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0">
<mid_symbol>
<symbol type="1" code="" name="Mid symbol">
<point_symbol rotatable="true" inner_radius="200" inner_color="4" outer_width="0" outer_color="-1" elements="0"/>
</symbol>
</mid_symbol>
</line_symbol>
</symbol>
<symbol type="2" id="11" code="108" name="Small earth wall">
<description>A small or partly ruined earth wall shall be shown with a dashed line. Minimum height is 0.5 m.</description>
<line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2240" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0">
<mid_symbol>
<symbol type="1" code="" name="Mid symbol">
<point_symbol rotatable="true" inner_radius="200" inner_color="4" outer_width="0" outer_color="-1" elements="0"/>
</symbol>
</mid_symbol>
</line_symbol>
</symbol>
<symbol type="2" id="12" code="109" name="Erosion gully">
<description>An erosion gully or trench which is too small to be shown by symbol 106 is shown by a single line. The line width reflects the size of the gully. Minimum depth 1 m. The end of the line is pointed.</description>
<line_symbol color="4" line_width="250" minimum_length="0" join_style="2" cap_style="3" pointed_cap_length="747" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<symbol type="2" id="13" code="110" name="Small erosion gully">
<description>A small erosion gully or trench. Minimum depth 0.5 m.</description>
<line_symbol color="-1" line_width="0" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="500" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0">
<mid_symbol>
<symbol type="1" code="" name="Mid symbol">
<point_symbol rotatable="true" inner_radius="125" inner_color="4" outer_width="0" outer_color="-1" elements="0"/>
</symbol>
</mid_symbol>
</line_symbol>
</symbol>
<symbol type="1" id="14" code="112" name="Small knoll">
<description>A small obvious mound or rocky knoll which cannot be drawn to scale with a contour (diameter of mound less than ca. 5 m). The height of the knoll should be a minimum of 1 m from the surrounding ground. The symbol may not touch a contour line.</description>
<point_symbol inner_radius="250" inner_color="4" outer_width="0" outer_color="-1" elements="0"/>
</symbol>
<symbol type="1" id="15" code="113" name="Elongated knoll">
<description>A small obvious elongated knoll which cannot be drawn to scale with a contour (length less than 12 m and width less than 4 m). The height of the knoll should be a minimum of 1 m from the surrounding ground. Knolls larger than this must be shown by contours. The symbol may not be drawn in free form or such that two elongated knoll symbols overlap. The symbol may not touch a contour line.</description>
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="4" code="">
<area_symbol inner_color="4" min_area="0" patterns="0"/>
</symbol>
<object type="1">
<coords count="13">
<coord x="0" y="-400" flags="1"/>
<coord x="110" y="-400"/>
<coord x="200" y="-221"/>
<coord x="200" y="0" flags="1"/>
<coord x="200" y="221"/>
<coord x="110" y="400"/>
<coord x="0" y="400" flags="1"/>
<coord x="-110" y="400"/>
<coord x="-200" y="221"/>
<coord x="-200" y="0" flags="1"/>
<coord x="-200" y="-221"/>
<coord x="-110" y="-400"/>
<coord x="0" y="-400" flags="3"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="1" id="16" code="115" name="Small depression">
<description>Small shallow natural depressions and hollows (minimum diameter 2 m) which cannot be shown to scale by contours are represented by a semicircle. Minimum depth from the surrounding ground should be 1 m. Location is the centre of gravity of the symbol, which is orientated to north. Symbol 116 is used for man-made pits.</description>
<point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="180" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="7">
<coord x="400" y="-255" flags="1"/>
<coord x="400" y="-34"/>
<coord x="221" y="145"/>
<coord x="0" y="145" flags="1"/>
<coord x="-221" y="145"/>
<coord x="-400" y="-34"/>
<coord x="-400" y="-255"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="1" id="17" code="116" name="Pit">
<description>Pits and holes with distinct steep sides which cannot be shown to scale by symbol 106 (minimum diameter 2 m). Minimum depth from the surrounding ground should be 1 m. Location is the centre of gravity of the symbol which is orientated to north.</description>
<point_symbol inner_radius="900" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="4" code="">
<area_symbol inner_color="4" min_area="0" patterns="0"/>
</symbol>
<object type="1">
<coords count="7">
<coord x="154" y="-302"/>
<coord x="350" y="-302"/>
<coord x="0" y="498"/>
<coord x="-350" y="-302"/>
<coord x="-154" y="-302"/>
<coord x="0" y="50"/>
<coord x="154" y="-302" flags="2"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="1" id="18" code="117.1" name="Broken ground, small">
<description>An area of pits or knolls which is too intricate to be shown in detail. The density of randomly placed dots may vary according to the detail on the ground.</description>
<point_symbol inner_radius="90" inner_color="4" outer_width="0" outer_color="-1" elements="0"/>
</symbol>
<symbol type="1" id="19" code="117.2" name="Broken ground, big">
<description>The size of the dots may vary.</description>
<point_symbol inner_radius="125" inner_color="4" outer_width="0" outer_color="-1" elements="0"/>
</symbol>
<symbol type="1" id="20" code="118" name="Special land form feature">
<description>This symbol can be used for a special small land form feature. The definition of the symbol must be given in the map legend.</description>
<point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2">
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="180" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-400" y="-400"/>
<coord x="400" y="400"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
<element>
<symbol type="2" code="">
<line_symbol color="4" line_width="180" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-400" y="400"/>
<coord x="400" y="-400"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="2" id="21" code="201" name="Impassable cliff">
<description>An impassable cliff, quarry or earth bank (see 106) is shown with a 0.35 mm line and downward tags showing its full extent from the top line to the foot. For vertical rock faces the tags may be omitted if space is short, e.g. narrow passages between cliffs (the passage should be drawn with a width of at least 0.3 mm). The tags may extend over an area symbol representing detail immediately below the rock face. When a rock face 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 should clearly extend over the bank line.</description>
<line_symbol color="1" line_width="350" minimum_length="600" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="600" end_length="660" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0">
<start_symbol>
<symbol type="1" code="" name="Start symbol">
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="120" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="60" y="100"/>
<coord x="60" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
</start_symbol>
<mid_symbol>
<symbol type="1" code="" name="Mid symbol">
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="120" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="0" y="100"/>
<coord x="0" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
</mid_symbol>
<end_symbol>
<symbol type="1" code="" name="End symbol">
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="120" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-60" y="100"/>
<coord x="-60" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
</end_symbol>
</line_symbol>
</symbol>
<symbol type="1" id="22" code="201.0.1" name="Impassable cliff, minimum size">
<description>An impassable cliff, quarry or earth bank (see 106) is shown with a 0.35 mm line and downward tags showing its full extent from the top line to the foot. For vertical rock faces the tags may be omitted if space is short, e.g. narrow passages between cliffs (the passage should be drawn with a width of at least 0.3 mm). The tags may extend over an area symbol representing detail immediately below the rock face. When a rock face 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 should clearly extend over the bank line.</description>
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="3">
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="350" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-360" y="0"/>
<coord x="360" y="0"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="120" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="300" y="0"/>
<coord x="300" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="120" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-300" y="0"/>
<coord x="-300" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="2" id="23" code="201.1" name="Impassable cliff, no tags">
<description>For vertical rock faces the tags may be omitted if space is short, e.g. narrow passages between cliffs (the passage should be drawn with a width of at least 0.3 mm).</description>
<line_symbol color="1" line_width="350" minimum_length="600" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="600" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<symbol type="2" id="24" code="201.2" name="Impassable cliff, tag line">
<description>Use this symbol to display the full extent of a wide cliff.</description>
<line_symbol color="1" line_width="120" minimum_length="500" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<symbol type="4" id="25" code="202" name="Rock pillars/cliffs">
<description>In the case of unusual features such as rock pillars or massive cliffs or gigantic boulders, the rocks shall be shown in plan shape without tags.</description>
<area_symbol inner_color="1" min_area="0" patterns="0"/>
</symbol>
<symbol type="2" id="26" code="203" name="Passable rock face">
<description>A small vertical rock face (minimum height 1 m) may be shown without tags. If the direction of fall of the rock face is not apparent from the contours or to improve legibility, short tags should be drawn in the direction of the fall. For passable rock faces shown without tags the ends of the line may be rounded to improve legibility.</description>
<line_symbol color="1" line_width="180" minimum_length="600" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="500" end_length="560" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0">
<start_symbol>
<symbol type="1" code="" name="Start symbol">
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="120" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="60" y="50"/>
<coord x="60" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
</start_symbol>
<mid_symbol>
<symbol type="1" code="" name="Mid symbol">
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="120" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="0" y="50"/>
<coord x="0" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
</mid_symbol>
<end_symbol>
<symbol type="1" code="" name="End symbol">
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="120" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-60" y="50"/>
<coord x="-60" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
</end_symbol>
</line_symbol>
</symbol>
<symbol type="1" id="27" code="203.0.1" name="Passable rock face, minimum size">
<description>A small vertical rock face (minimum height 1 m) may be shown without tags. If the direction of fall of the rock face is not apparent from the contours or to improve legibility, short tags should be drawn in the direction of the fall. For passable rock faces shown without tags the ends of the line may be rounded to improve legibility.</description>
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="3">
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="180" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-360" y="0"/>
<coord x="360" y="0"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="120" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="300" y="0"/>
<coord x="300" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="120" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-300" y="0"/>
<coord x="-300" y="500"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="2" id="28" code="203.1" name="Passable rock face, no tags">
<description>Should be used if the direction of fall of the rock face is apparent from the contours and the legibility is good.</description>
<line_symbol color="1" line_width="250" minimum_length="600" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<symbol type="1" id="29" code="203.1.1" name="Passable rock face, no tags, minimum size">
<description>Should be used if the direction of fall of the rock face is apparent from the contours and the legibility is good.</description>
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="250" minimum_length="0" join_style="1" cap_style="0" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-300" y="0"/>
<coord x="300" y="0"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="2" id="30" code="203.2" name="Passable rock face, no tags, rounded">
<description>For passable rock faces shown without tags the ends of the line may be rounded to improve legibility.</description>
<line_symbol color="1" line_width="250" minimum_length="600" join_style="2" cap_style="1" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<symbol type="1" id="31" code="203.2.1" name="Passable rock face, no tags, rounded, minimum size">
<description>For passable rock faces shown without tags the ends of the line may be rounded to improve legibility.</description>
<point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="2" code="">
<line_symbol color="1" line_width="250" minimum_length="0" join_style="1" cap_style="1" pointed_cap_length="1000" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/>
</symbol>
<object type="1">
<coords count="2">
<coord x="-175" y="0"/>
<coord x="175" y="0"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="1" id="32" code="204" name="Rocky pit">
<description>Rocky pits, holes or mineshafts which may constitute a danger to the runner. Location is the centre of gravity of the symbol, which is orientated to north.</description>
<point_symbol inner_radius="900" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="4" code="">
<area_symbol inner_color="1" min_area="0" patterns="0"/>
</symbol>
<object type="1">
<coords count="7">
<coord x="175" y="-310"/>
<coord x="350" y="-310"/>
<coord x="0" y="490"/>
<coord x="-350" y="-310"/>
<coord x="-175" y="-310"/>
<coord x="0" y="90"/>
<coord x="175" y="-310" flags="2"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="1" id="33" code="205" name="Cave">
<description>A cave is represented by the same symbol as a rocky pit. In this case the symbol should be orientated to point up the slope as indicated opposite. The centre of gravity of the symbol marks the opening.</description>
<point_symbol rotatable="true" inner_radius="900" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="4" code="">
<area_symbol inner_color="1" min_area="0" patterns="0"/>
</symbol>
<object type="1">
<coords count="7">
<coord x="175" y="-310"/>
<coord x="350" y="-310"/>
<coord x="0" y="490"/>
<coord x="-350" y="-310"/>
<coord x="-175" y="-310"/>
<coord x="0" y="90"/>
<coord x="175" y="-310" flags="2"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="1" id="34" code="206" name="Boulder">
<description>A small distinct boulder (minimum height 1 m). Every boulder marked on the map should be immediately identifiable on the ground. To be able to show the distinction between boulders with significant difference in size it is permitted to enlarge this symbol by 20% (diameter 0.5 mm).</description>
<point_symbol inner_radius="200" inner_color="1" outer_width="0" outer_color="-1" elements="0"/>
</symbol>
<symbol type="1" id="35" code="206.1" name="Boulder, enlarged">
<description>To be able to show the distinction between boulders with significant difference in size it is permitted to enlarge this symbol by 20% (diameter 0.5 mm).</description>
<point_symbol inner_radius="250" inner_color="1" outer_width="0" outer_color="-1" elements="0"/>
</symbol>
<symbol type="1" id="36" code="207" name="Large boulder">
<description>A particularly large and distinct boulder. For gigantic boulders symbol 202 should be used.</description>
<point_symbol inner_radius="300" inner_color="1" outer_width="0" outer_color="-1" elements="0"/>
</symbol>
<symbol type="1" id="37" code="208" name="Boulder field">
<description>An area which is covered with so many blocks of stone that they cannot be marked individually is shown with randomly orientated solid triangles with sides of ratio 8:6:5. A minimum of two triangles should be used. The going is indicated by the density of the triangles. To be able to show the distinction between boulder fields with a significant difference in boulder size it is permitted to enlarge the triangles by 20%.</description>
<point_symbol rotatable="true" inner_radius="640" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="4" code="">
<area_symbol inner_color="1" min_area="0" patterns="0"/>
</symbol>
<object type="1">
<coords count="4">
<coord x="100" y="301"/>
<coord x="100" y="-339"/>
<coord x="-200" y="36"/>
<coord x="100" y="301" flags="2"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="1" id="38" code="208.1" name="Boulder field, large">
<description>To be able to show the distinction between boulder fields with a significant difference in boulder size it is permitted to enlarge the triangles by 20%.</description>
<point_symbol rotatable="true" inner_radius="768" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="4" code="">
<area_symbol inner_color="1" min_area="0" patterns="0"/>
</symbol>
<object type="1">
<coords count="4">
<coord x="120" y="361"/>
<coord x="120" y="-407"/>
<coord x="-240" y="43"/>
<coord x="120" y="361" flags="2"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="1" id="39" code="209" name="Boulder cluster">
<description>A small distinct group of boulders so closely clustered together that they cannot be marked individually. The symbol is an equilateral triangle orientated to the north. To be able to show the distinction between boulder clusters with significant difference in size it is permitted to enlarge this symbol by 25% (1.0 mm).</description>
<point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="4" code="">
<area_symbol inner_color="1" min_area="0" patterns="0"/>
</symbol>
<object type="1">
<coords count="4">
<coord x="-400" y="231"/>
<coord x="400" y="231"/>
<coord x="0" y="-462"/>
<coord x="-400" y="231" flags="2"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
</element>
</point_symbol>
</symbol>
<symbol type="1" id="40" code="209.1" name="Boulder cluster, large">
<description>To be able to show the distinction between boulder clusters with significant difference in size it is permitted to enlarge this symbol by 25% (1.0 mm).</description>
<point_symbol inner_radius="1250" inner_color="-1" outer_width="0" outer_color="-1" elements="1">
<element>
<symbol type="4" code="">
<area_symbol inner_color="1" min_area="0" patterns="0"/>