-
Notifications
You must be signed in to change notification settings - Fork 1
/
hiking_typdef.txt
1671 lines (1555 loc) · 25.4 KB
/
hiking_typdef.txt
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
[_id]
FID=984
ProductCode=1
Codepage=1252
[End]
[_drawOrder]
; Polygon drawing levels (1-15)
Type=0x4b,1
Type=0x32,2
Type=0x4d,3
Type=0x4f,3
Type=0x50,3
Type=0x08,4
Type=0x0c,4
Type=0x02,4
Type=0x22,4
Type=0x03,4
Type=0x4e,4
Type=0x04,5
Type=0x07,5
Type=0x0a,5
Type=0x17,5
Type=0x1a,5
Type=0x05,6
Type=0x18,6
Type=0x19,6
Type=0x51,6
Type=0x3c,7
Type=0x3f,7
Type=0x46,7
Type=0x13,8
[end]
; Polygon drawing level: 1
; 0x4b - Background (coverage)
[_polygon]
Type=0x4b
Xpm="0 0 1 0"
"1 c #ffffff"
[end]
; Polygon drawing level: 2
[_polygon]
Type=0x32
String1=0x04,Sea
String2=0x0f,Sjø
Xpm="0 0 1 0"
"1 c #9bd9e9"
[end]
; Polygon drawing level: 3
[_polygon]
Type=0x50
String1=0x04,Wood
String2=0x0f,Skog
Xpm="0 0 1 0"
"1 c #ffffff"
[end]
; #dde6d5 (skog)
[_polygon]
Type=0x4f
String1=0x04,Scrub
String2=0x0f,Kratt
Xpm="0 0 1 0"
"1 c #ffffff"
[end]
[_polygon]
Type=0x4d
String1=0x04,Glacier
String2=0x0f,Isbre
Xpm="0 0 1 0"
"1 c #f0f8ff"
[end]
; Polygon drawing level: 4
[_polygon]
Type=0x02
String1=0x04,Residential area
String2=0x0f,Boligområde
Xpm="0 0 1 0"
"1 c #ffdcbe"
[end]
[_polygon]
Type=0x08
String1=0x04,Retail area
String2=0x0f,Handelsområde
Xpm="0 0 1 0"
"1 c #ffdcbe"
[end]
[_polygon]
Type=0x0c
String1=0x04,Industrial area
String2=0x0f,Industriområde
Xpm="0 0 1 0"
"1 c #d7d7d7"
[end]
[_polygon]
Type=0x04
String1=0x04,Military base
String2=0x0f,Militærbase
Xpm="0 0 1 0"
"1 c #d7d7d7"
[end]
[_polygon]
Type=0x07
String1=0x04,Airport
String2=0x0f,Flyplass
Xpm="0 0 1 0"
"1 c #d7d7d7"
[end]
[_polygon]
Type=0x4e
String1=0x04,Farmland
String2=0x0f,Dyrket mark
Xpm="0 0 1 0"
"1 c #fef086"
[end]
[_polygon]
Type=0x22
String1=0x04,Meadow
String2=0x0f,Eng
Xpm="0 0 1 0"
"1 c #fef086"
[end]
; Polygon drawing level: 5
[_polygon]
Type=0x17
String1=0x04,Park
String2=0x0f,Friområde
Xpm="0 0 1 0"
"1 c #9bb93c"
[end]
[_polygon]
Type=0x1a
String1=0x04,Cemetery
String2=0x0f,Gravlund
Xpm="0 0 1 0"
"1 c #9bb93c"
[end]
[_polygon]
Type=0x0a
String1=0x04,School
String2=0x0f,Skole
Xpm="0 0 1 0"
"1 c #ffdcbe"
[end]
[_polygon]
Type=0x03
String1=0x04,Farmyard
String2=0x0f,Gårdsbruk
Xpm="0 0 1 0"
"1 c #ffdcbe"
[end]
; Polygon drawing level: 6
[_polygon]
Type=0x05
String1=0x04,Parking
String2=0x0f,Parkering
Xpm="0 0 1 0"
"1 c #bc5e1e"
[end]
[_polygon]
Type=0x18
String1=0x04,Golf course
String2=0x0f,Golfbane
Xpm="0 0 1 0"
"1 c #9bb93c"
[end]
[_polygon]
Type=0x19
String1=0x04,Pitch
String2=0x0f,Idrettsbane
Xpm="0 0 1 0"
"1 c #9bb93c"
[end]
[_polygon]
Type=0x51
String1=0x04,Wetland
String2=0x0f,Myr/våtmark
Xpm="32 32 2 1"
"# c #9bd9e9"
" c none"
" "
"################################"
" "
" "
" "
"################################"
" "
" "
" "
"################################"
" "
" "
" "
"################################"
" "
" "
" "
"################################"
" "
" "
" "
"################################"
" "
" "
" "
"################################"
" "
" "
" "
"################################"
" "
" "
[end]
; Polygon drawing level: 7
[_polygon]
Type=0x3c
String1=0x04,Water
String2=0x0f,Vann
Xpm="0 0 1 0"
"1 c #9bd9e9"
[end]
[_polygon]
Type=0x3f
String1=0x04,Reservoir
String2=0x0f,Reservoar
Xpm="0 0 1 0"
"1 c #9bd9e9"
[end]
[_polygon]
Type=0x46
String1=0x04,River
String2=0x0f,Elv
Xpm="0 0 1 0"
"1 c #9bd9e9"
[end]
; Polygon drawing level: 8
[_polygon]
Type=0x13
String1=0x04,Building
String2=0x0f,Bygning
Xpm="0 0 1 0"
"1 c #444444"
[end]
[_line]
Type=0x0a
String1=0x04,Track
String2=0x0f,Traktorvei
UseOrientation=N
Xpm="32 2 2 1"
"# c #222222"
" c none"
"############# ############# "
"############# ############# "
[end]
[_line]
Type=0x16
String1=0x04,Indistinct trail
String2=0x0f,Utydelig sti
UseOrientation=N
Xpm="32 1 2 1"
"# c #222222"
" c none"
" #### #### #### #### "
[end]
[_line]
Type=0x0e
String1=0x04,Trail
String2=0x0f,Sti
UseOrientation=N
Xpm="32 1 2 1"
"# c #222222"
" c none"
" ###### ###### ###### ######"
[end]
[_line]
Type=0x0f
String1=0x04,Marked trail
String2=0x0f,Merket sti
UseOrientation=N
Xpm="32 5 2 1"
"# c #0546ad"
" c none"
" ### ### ### ### "
" ##### ##### ##### ##### "
" ##### ##### ##### ##### "
" ##### ##### ##### ##### "
" ### ### ### ### "
[end]
[_line]
Type=0x10e0f
String1=0x04,Marked trail
String2=0x0f,Merket sti
UseOrientation=N
LineWidth=1
UseOrientation=N
Xpm="0 0 1 0"
"# c #0546ad"
[end]
[_line]
Type=0x13
String1=0x04,MTB route
String2=0x0f,MTB route
LineWidth=4
UseOrientation=N
Xpm="0 0 1 0"
"# c #b3df5c"
[end]
[_line]
Type=0x17
String1=0x04,Survey
String2=0x0f,Synfaring
UseOrientation=N
Xpm="32 1 2 1"
"# c #dd88dd"
" c none"
" #### #### #### #### "
[end]
[_line]
Type=0x30
String1=0x04,Nordic skiing
String2=0x0f,Skiløype
UseOrientation=N
Xpm="32 5 2 1"
"# c #f90025"
" c none"
"################################"
"################################"
" "
" "
" "
[end]
[_line]
Type=0x31
String1=0x04,Nordic skiing
String2=0x0f,Skiløype
UseOrientation=Y
Xpm="32 5 2 1"
"# c #f90025"
" c none"
" ### "
" ### "
"################################"
"################################"
"################################"
[end]
[_line]
Type=0x32
String1=0x04,Nordic skiing (skating)
String2=0x0f,Skiløype (skøyting)
UseOrientation=Y
Xpm="32 7 2 1"
"# c #f90025"
" c none"
" ### "
" ### "
"######################### ###"
"######################### ###"
"######################### ###"
" ### "
" ### "
[end]
[_line]
Type=0x33
String1=0x04,Nordic skiing (scooter)
String2=0x0f,Skuterløype
UseOrientation=N
Xpm="32 5 2 1"
"# c #f90025"
" c none"
"############ ############ "
"############ ############ "
" "
" "
" "
[end]
[_line]
Type=0x34
String1=0x04,Backcountry skiing
String2=0x0f,Skitråkk
UseOrientation=N
Xpm="32 5 2 1"
"# c #f90025"
" c none"
" ## ## ## ## "
" ## ## ## ## "
" ## ## ## ## "
" ## ## ## ## "
" "
[end]
; alternativ til #f90025: #c31e28
[_line]
Type=0x35
String1=0x04,Night skiing
String2=0x0f,Lysløype
LineWidth=6
UseOrientation=N
Xpm="0 0 1 0"
"# c #fff675"
[end]
[_line]
Type=0x1c
String1=0x04,Nature reserve
String2=0x0f,Naturverngrense
LineWidth=1
UseOrientation=N
Xpm="0 0 1 0"
"1 c #00d100"
[end]
[_line]
Type=0x15
String1=0x04,Coastline
String2=0x0f,Kystlinje
LineWidth=1
Xpm="0 0 1 0"
"1 c #009ddd"
[end]
[_line]
Type=0x1010a
String1=0x04,Waterline
String2=0x0f,Vannkant
LineWidth=1
Xpm="0 0 1 0"
"1 c #009ddd"
[end]
[_line]
Type=0x18
String1=0x04,Stream
String2=0x0f,Bekk
LineWidth=1
Xpm="0 0 1 0"
"1 c #009ddd"
[end]
[_line]
Type=0x1f
String1=0x04,River
String2=0x0f,Elv
LineWidth=2
Xpm="0 0 1 0"
"1 c #009ddd"
[end]
[_line]
Type=0x01
String1=0x04,Motorway
String2=0x0f,Motorvei
LineWidth=4
BorderWidth=1
UseOrientation=N
Xpm="0 0 2 0"
"1 c #bc5e1e"
"2 c #000000"
[end]
[_line]
Type=0x02
String1=0x04,Highway
String2=0x0f,Riksvei
LineWidth=3
BorderWidth=1
UseOrientation=N
Xpm="0 0 2 0"
"1 c #bc5e1e"
"2 c #000000"
[end]
[_line]
Type=0x04
String1=0x04,Highway
String2=0x0f,Fylkesvei
LineWidth=2
BorderWidth=1
UseOrientation=N
Xpm="0 0 2 0"
"1 c #bc5e1e"
"2 c #000000"
[end]
[_line]
Type=0x05
String1=0x04,Road
String2=0x0f,Vei
LineWidth=3
UseOrientation=N
Xpm="0 0 1 0"
"1 c #000000"
[end]
[_line]
Type=0x06
String1=0x04,Residential street
String2=0x0f,Boliggate
LineWidth=2
UseOrientation=N
Xpm="0 0 1 0"
"1 c #000000"
[end]
[_line]
Type=0x07
String1=0x04,Driveway
String2=0x0f,Sidevei
LineWidth=2
UseOrientation=N
Xpm="0 0 1 0"
"1 c #000000"
[end]
[_line]
Type=0x08
String1=0x04,Ramp
String2=0x0f,Rampe
LineWidth=3
BorderWidth=1
UseOrientation=N
Xpm="0 0 2 0"
"1 c #bc5e1e"
"2 c #000000"
[end]
[_line]
Type=0x0d
String1=0x04,Cycleway
String2=0x0f,Sykkelvei
LineWidth=2
UseOrientation=N
Xpm="0 0 1 0"
"1 c #000000"
[end]
[_line]
Type=0x14
String1=0x04,Railway
String2=0x0f,Jernbane
UseOrientation=N
Xpm="32 3 2 1"
"# c #000000"
" c #ffffff"
"################################"
" ######### ######### "
"################################"
[end]
[_line]
Type=0x29
String1=0x04,Power line
String2=0x0f,Kraftlinje
UseOrientation=N
Xpm="32 5 2 1"
"# c #545454"
" c none"
" # "
" # "
"################################"
" # "
" # "
[end]
[_line]
Type=0x1010c
String1=0x04,Ski lift
String2=0x0f,Skitrekk
UseOrientation=N
Xpm="32 6 2 1"
"# c #545454"
" c none"
"################################"
" ### "
" ## ## "
" ## ## "
" ## ## "
" ## ## "
[end]
[_line]
Type=0x26
String1=0x04,Fence
String2=0x0f,Gjerde
Xpm="32 3 2 1"
"# c #545454"
" c none"
" # # "
"# # "
"################################"
[end]
[_line]
Type=0x1010d
String1=0x04,Stone wall
String2=0x0f,Steingard
Xpm="32 4 2 1"
"# c #545454"
" c none"
" ## ## ## ## ## ## ## ## "
"# ## ## ## ## ## ## ## #"
"# ## ## ## ## ## ## ## #"
" ## ## ## ## ## ## ## ## "
[end]
[_line]
Type=0x1010b
String1=0x04,Cliff
String2=0x0f,Stup
UseOrientation=N
Xpm="32 6 2 1"
"# c #c88546"
" c none"
" # # "
" # # "
" ### ### "
" ### ### "
" ##### ##### "
"################################"
[end]
[_line]
Type=0x20
String1=0x04,Contour line
String2=0x0f,Høydekurve
LineWidth=1
UseOrientation=N
Xpm="0 0 1 0"
"1 c #e0c38d"
[end]
[_line]
Type=0x22
String1=0x04,Contour line
String2=0x0f,Høydekurve
LineWidth=1
UseOrientation=N
Xpm="0 0 1 0"
"1 c #c88546"
[end]
[_point]
Type=0x2b01
String1=0x04,Hotel
String2=0x0f,Hotell
Xpm="15 15 2 1"
" c #007db4"
"# c #ffffff"
" "
" "
" "
" # "
" # "
" # # "
" # ## #### # "
" # ## ###### # "
" # # "
" ############# "
" # # "
" # # "
" "
" "
" "
[end]
[_point]
Type=0x2b08
String1=0x04,Hostel
String2=0x0f,Vandrerhjem
Xpm="15 15 2 1"
" c #007db4"
"# c #ffffff"
" "
" "
" "
" ## "
" #### "
" ######## "
" ## ######## "
" ## ###### "
" #### ###### "
" ## ## ## "
" #### ## ## "
" ## ## ## "
" ############# "
" "
" "
[end]
[_point]
Type=0x2b03
String1=0x04,Campground
String2=0x0f,Teltplass
Xpm="15 15 2 1"
" c #007db4"
"# c #ffffff"
" "
" "
" "
" "
" # # "
" # "
" ### "
" # # "
" ## ## "
" ## ## "
" ## # ## "
" ## ### ## "
" "
" "
" "
[end]
[_point]
Type=0x2b09
String1=0x04,Chalet
String2=0x0f,Utleiehytte
Xpm="15 15 2 1"
" c #007db4"
"# c #ffffff"
" "
" "
" ## "
" ## ## "
" ## ## "
" ## # "
" ###### # "
" ########## # "
" ## ## # "
" ## ## ## "
" ######## "
" ######## "
" ########## "
" "
" "
[end]
[_point]
Type=0x3906
String1=0x04,Staffed mountain hut
String2=0x0f,Betjent hytte
Xpm="15 15 2 1"
" c #d0006f"
"# c #ffffff"
" "
" "
" # "
" ##### "
" ######### "
" ############# "
" ######### "
" ######### "
" ######### "
" ######### "
" ######### "
" ######### "
" ############# "
" ############# "
" "
[end]
[_point]
Type=0x3907
String1=0x04,Provisioned hut
String2=0x0f,Selvbetjent hytte
Xpm="15 15 2 1"
" c #d0006f"
"# c #ffffff"
" "
" "
" # "
" ##### "
" ### ### "
" #### #### "
" ## ## "
" ## ### "
" ## #### "
" ## ##### "
" ## ###### "
" ######### "
" ############# "
" ############# "
" "
[end]
[_point]
Type=0x3908
String1=0x04,Unprovisioned hut
String2=0x0f,Ubetjent hytte
Xpm="15 15 2 1"
" c #d0006f"
"# c #ffffff"
" "
" "
" # "
" ##### "
" ### ### "
" #### #### "
" ## ## "
" ## ## "
" ## ## "
" ## ## "
" ## ## "
" ## ## "
" ############# "
" ############# "
" "
[end]
[_point]
Type=0x2b06
String1=0x04,Emergency shelter
String2=0x0f,Ulåst koie/nødbu
Xpm="15 15 2 1"
" c #d0006f"
"# c #ffffff"
" "
" "
" "
" "
" ## "
" #### "
" ##### "
" ######## "
" ####### "
" ## ## "
" ## ## "
" ####### "
" ############# "
" "
" "
[end]
[_point]
Type=0x2b07
String1=0x04,Lean-to
String2=0x0f,Gapahuk
Xpm="15 15 2 1"
" c #d0006f"
"# c #ffffff"
" "
" ## "
" ## "
" ## "
" ## "
" ## ### "
" ## #### "
" ## # "
" ## ### "
" ## ###### "
" ## ### ## "
" ### ### ## "
" ############# "
" "
" "
[end]
[_point]
Type=0x3902
String1=0x04,Staffed mountain hut
String2=0x0f,Betjent hytte
Xpm="7 7 2 1"
"# c #d0006f"
" c #ffffff"
"#######"
"#######"
"#######"
"#######"
"#######"
"#######"
"#######"
[end]
[_point]
Type=0x3903
String1=0x04,Provisioned hut
String2=0x0f,Selvbetjent hytte
Xpm="7 7 2 1"
"# c #d0006f"
" c #ffffff"
"#######"
"# ##"
"# ###"
"# ####"
"# #####"
"#######"
"#######"
[end]
[_point]
Type=0x3904
String1=0x04,Unprovisioned hut
String2=0x0f,Ubetjent hytte
Xpm="7 7 2 1"
"# c #d0006f"
" c #ffffff"
"#######"
"# #"
"# #"
"# #"
"# #"
"# #"
"#######"
[end]
[_point]
Type=0x3905
String1=0x04,Daytime hut
String2=0x0f,Dagsturhytte
Xpm="7 7 2 1"
"# c #d0006f"
" c #ffffff"
"#######"
"# ##"
"# # #"
"# # #"
"# # #"
"## #"
"#######"
[end]
[_point]
Type=0x6402
String1=0x04,Cabin
String2=0x0f,Hytte
Xpm="5 5 2 1"
"# c #444444"
" c none"
"#####"
"#####"
"#####"
"#####"
"#####"
[end]
[_point]
Type=0x6419
String1=0x04,Ruin
String2=0x0f,Ruin/hustuft
Xpm="5 5 2 1"
"# c #444444"
" c none"
"#####"
"# #"
"# #"
"# #"
"#####"
[end]
[_point]
Type=0x2f0b
String1=0x04,Parking
String2=0x0f,Parkering
Xpm="15 15 2 1"
" c #007db4"