-
Notifications
You must be signed in to change notification settings - Fork 3
/
jbmhb.txt
17386 lines (17386 loc) · 340 KB
/
jbmhb.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]
ProductCode=1
FID=8000
CodePage=65001
[End]
[_comments]
;https://github.com/Jorisbo/Mkgmap-Mapnik-Style-Garmin
;
;This program is free software; you can redistribute it and/or modify
;it under the terms of the GNU General Public License version 3 or
;version 2 as published by the Free Software Foundation.
;
;This program is distributed in the hope that it will be useful, but
;WITHOUT ANY WARRANTY; without even the implied warranty of
;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;General Public License for more details.
;
;Auto generated: 20240517 16:07
;From master: JBM
;As subset: hidebike
;
[End]
[_drawOrder]
Type=0x01,28
Type=0x02,12
Type=0x03,2
Type=0x04,28
Type=0x05,15
Type=0x06,2
Type=0x07,2
Type=0x08,2
Type=0x09,13
Type=0x0a,4
Type=0x0b,4
Type=0x0c,3
Type=0x0d,12
Type=0x0e,27
Type=0x0f,2
Type=0x10,2
Type=0x11,2
Type=0x12,9
Type=0x13,25
Type=0x14,5
Type=0x15,2
Type=0x16,10
Type=0x17,2
Type=0x18,7
Type=0x19,14
Type=0x1a,12
Type=0x1b,11
Type=0x1c,5
Type=0x1d,11
Type=0x1e,3
Type=0x1f,17
Type=0x20,15
Type=0x21,13
Type=0x22,4
Type=0x23,22
Type=0x24,4
Type=0x25,2
Type=0x26,9
Type=0x27,1
Type=0x28,2
Type=0x29,12
Type=0x2a,16
Type=0x2b,8
Type=0x2c,10
Type=0x2d,12
Type=0x2e,6
Type=0x2f,3
Type=0x30,12
Type=0x31,12
Type=0x32,2
Type=0x33,22
Type=0x34,22
Type=0x35,22
Type=0x36,22
Type=0x37,22
Type=0x38,22
Type=0x39,23
Type=0x3a,11
Type=0x3b,12
Type=0x3c,21
Type=0x3d,2
Type=0x3e,21
Type=0x3f,22
Type=0x40,13
Type=0x41,6
Type=0x42,22
Type=0x43,4
Type=0x44,19
Type=0x45,19
Type=0x46,21
Type=0x47,22
Type=0x48,2
Type=0x49,23
Type=0x4a,1
Type=0x4b,1
Type=0x4c,3
Type=0x4d,15
Type=0x4e,8
Type=0x4f,21
Type=0x50,11
Type=0x51,22
Type=0x52,22
Type=0x53,22
Type=0x54,22
Type=0x55,22
Type=0x56,22
Type=0x57,22
Type=0x58,17
Type=0x59,10
Type=0x5a,13
Type=0x5b,9
Type=0x5c,7
Type=0x5d,13
Type=0x5e,11
Type=0x5f,25
Type=0x60,2
Type=0x61,11
Type=0x62,22
Type=0x63,3
Type=0x64,3
Type=0x65,7
Type=0x66,3
Type=0x67,4
Type=0x68,10
Type=0x69,22
Type=0x6a,24
Type=0x6b,2
Type=0x6c,18
Type=0x6d,26
Type=0x6e,2
Type=0x6f,5
Type=0x70,17
Type=0x71,11
Type=0x72,2
Type=0x73,2
Type=0x7a,12
Type=0x7b,20
Type=0x7c,5
Type=0x7d,9
Type=0x7e,12
Type=0x7f,26
Type=0x10001,2
[end]
[_polygon]
type=0x01
;GRMN_TYPE: Urban Areas/LARGE_CITY/Large urban area, 200 000 or more inhabitants/Non NT
String1=0x01,Domaine militair
String2=0x02,Militärisches sperrgebiet
String3=0x04,Military
String4=0x03,Militair domein
ExtendedLabels=Y
FontStyle=Default
CustomColor=Day
DaycustomColor:#FF0041
ContourColor=No
Xpm="32 32 2 1"
"! c #FF958B"
" c none"
" !! "
"!! "
"! !"
" !!"
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
" !! "
;12345678901234567890123456789012
[end]
[_polygon]
type=0x02
;GRMN_TYPE: Urban Areas/SMALL_CITY/Small urban area, less than 200 000 inhabitants/Non NT
String1=0x01,Résidentiel
String2=0x02,Wohngebiet
String3=0x04,Residential
String4=0x03,Bebouwing
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #E0DFDF"
[end]
[_polygon]
type=0x03
;GRMN_TYPE: Urban Areas/TOWN/Urban area, less than 50 000 inhabitants/Non NT
String1=0x01,Résidentiel
String2=0x02,Wohngebiet
String3=0x04,Residential
String4=0x03,Bebouwing
String7=0x15,Obszar mieszkalny
String8=0x10,Residencial
String9=0x05,Area residenziale
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #E0DFDF"
[end]
[_polygon]
type=0x04
;GRMN_TYPE: Large Manmade Areas/MILITARY_BASE/Military base area/Non NT
String1=0x01,Domaine militaire
String2=0x02,Militärisches Sperrgebiet
String3=0x04,Military
String4=0x03,Militair domein
String7=0x15,Teren wojskowy
String8=0x10,Militar
String9=0x05,Area militare
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="32 32 2 1"
"! c #FF958B"
" c none"
" !! !! "
"!! !! "
"! !! !"
" !! !!"
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
"!! !! "
"! !! !"
" !! !!"
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
;12345678901234567890123456789012
[end]
[_polygon]
type=0x05
;GRMN_TYPE: Large Manmade Areas/PARKING_LOT/Parking lot area/Non NT
String1=0x01,Parking
String2=0x02,Parkplatz
String3=0x04,Parking
String4=0x03,Parkeerterrein
String7=0x15,Parking
String8=0x10,Estacionamento
String9=0x05,Parcheggio
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #EEEEEE"
[end]
[_polygon]
type=0x06
;GRMN_TYPE: Large Manmade Areas/PARKING_GARAGE/Parking garage area/Non NT
String1=0x01,Garages
String2=0x02,Garagen
String3=0x04,Garages
String4=0x03,Garages
String7=0x15,Garaże
String8=0x10,Garagem
String9=0x05,Garage
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #DFDDCE"
[end]
[_polygon]
type=0x07
;GRMN_TYPE: Large Manmade Areas/AIRPORT/Airport area/Non NT
String1=0x01,Aéroport
String2=0x02,Flughafen
String3=0x04,Airport
String4=0x03,Vliegveld
String7=0x15,Lotnisko
String8=0x10,Aeroporto
String9=0x05,Aerodromo
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #E9E7E2"
[end]
[_polygon]
type=0x08
;GRMN_TYPE: Large Manmade Areas/SHOPPING_AREA/Shopping area/Non NT
String1=0x01,Lieu de culte
String2=0x02,Religiöses gebiet
String3=0x04,Religious area
String4=0x03,Religieus gebied
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #D0D0D0"
[end]
[_polygon]
type=0x09
;GRMN_TYPE: Large Manmade Areas/MARINA/Marina area/Non NT
String1=0x01,École
String2=0x02,Schule
String3=0x04,Education
String4=0x03,School
String7=0x15,Edukacja
String8=0x10,Escola
String9=0x05,Scuola
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #FFFFE5"
[end]
[_polygon]
type=0x0a
;GRMN_TYPE: Large Manmade Areas/COLLEGE/College or university area/Non NT
String1=0x01,École
String2=0x02,Schule
String3=0x04,Education
String4=0x03,School
String7=0x15,Edukacja
String8=0x10,Escola
String9=0x05,Scuola
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #FFFFE5"
[end]
[_polygon]
type=0x0b
;GRMN_TYPE: Large Manmade Areas/HOSPITAL/Hospital area/Non NT
String1=0x01,Hôpital
String2=0x02,Krankenhaus
String3=0x04,Hospital
String4=0x03,Ziekenhuis
String7=0x15,Szpital
String8=0x10,Hospital
String9=0x05,Ospedale
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #FFFFE5"
[end]
[_polygon]
type=0x0c
;GRMN_TYPE: Large Manmade Areas/INDUSTRIAL_COMPLEX/Industrial complex area/Non NT
String1=0x01,Zone industrielle
String2=0x02,Industriegebiet
String3=0x04,Industrial area
String4=0x03,Industriegebied
String7=0x15,Obszar przemysłowy
String8=0x10,Área industrial
String9=0x05,Area industriale
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #EBDBE8"
[end]
[_polygon]
type=0x0d
;GRMN_TYPE: Large Manmade Areas/RESERVATION/Reservation/Non NT
String1=0x01,En construction
String2=0x02,Baugebiet
String3=0x04,Under construction
String4=0x03,In ontwikkeling
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #C7C7B4"
[end]
[_polygon]
type=0x0e
;GRMN_TYPE: Large Manmade Areas/AIRPORT_RUNWAYS/Airport runway area/Non NT
String1=0x01,Zone piétonne
String2=0x02,Fußgängerzone
String3=0x04,Pedestrians
String4=0x03,Voetgangersgebied
String7=0x15,Pieszy
String8=0x10,Pedestre
String9=0x05,Area pedonale
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #DDDDE8"
[end]
[_polygon]
type=0x10
;GRMN_TYPE: //
String1=0x01,Résidentiel
String2=0x02,Wohngebiet
String3=0x04,Residential
String4=0x03,Bebouwing
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #D3D3D3"
[end]
[_polygon]
type=0x12
;GRMN_TYPE: //
String1=0x01,Carrière
String2=0x02,Grube
String3=0x04,Quarry
String4=0x03,Groeve
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="32 32 2 1"
"! c #E6E6E6"
"# c #C5C3C3"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"############!###!###############"
"###########!#####!##############"
"##########!#!###!#!#############"
"#############!#!################"
"##############!#################"
"#############!#!################"
"############!###!###############"
"###########!#####!##############"
"################################"
"################################"
;12345678901234567890123456789012
[end]
[_polygon]
type=0x13
;GRMN_TYPE: Large Manmade Areas/GENERIC_MANMADE/Other or generic manmade area, such as a building/Non NT
String1=0x01,Bâtiment
String2=0x02,Gebäude
String3=0x04,Building
String4=0x03,Gebouw
String7=0x15,Budynek
String8=0x10,Edifício
String9=0x05,Edificio
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #D9D0C9"
[end]
[_polygon]
type=0x14
;GRMN_TYPE: Park Areas/NATIONAL_PARK_MAJOR/Large or major national park/Non NT
String1=0x01,Zone de loisirs
String2=0x02,Freizeit gebiet
String3=0x04,Recreation ground
String4=0x03,Recreatie gebied
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #DFFCE2"
[end]
[_polygon]
type=0x16
;GRMN_TYPE: Park Areas/NATIONAL_PARK_OTHER/Small or misc sized national park/Non NT
String1=0x01,Parc
String2=0x02,Park
String3=0x04,Park
String4=0x03,Park
String7=0x15,Park
String8=0x10,Parque
String9=0x05,Parco
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #C8FACC"
[end]
[_polygon]
type=0x18
;GRMN_TYPE: Large Manmade Areas/GOLF_COURSE/Golf course area/Non NT
String1=0x01,Golf
String2=0x02,Golfplatz
String3=0x04,Golf course
String4=0x03,Golfbaan
String7=0x15,Pole golfowe
String8=0x10,Campo de Golfe
String9=0x05,Campo da golf
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #E2F5C1"
[end]
[_polygon]
type=0x19
;GRMN_TYPE: Large Manmade Areas/SPORTS_COMPLEX/Sports arena or stadium/Non NT
String1=0x01,Terrain de sport
String2=0x02,Sportplatz
String3=0x04,Sports pitch
String4=0x03,Sportveld
String7=0x15,Teren sportowy
String8=0x10,Campo de esportes
String9=0x05,Campo sportivo
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #AAE0CB"
[end]
[_polygon]
type=0x1a
;GRMN_TYPE: Large Manmade Areas/CEMETARY/Cemetary/Non NT
String1=0x01,Cimetière
String2=0x02,Friedhof
String3=0x04,Cemetry
String4=0x03,Begraafplaats
String7=0x15,Cmentarz
String8=0x10,Cemitério
String9=0x05,Cimitero
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="32 32 2 1"
"! c #88B78E"
"# c #AACBAF"
"################################"
"################################"
"################################"
"################################"
"#######!!#######################"
"######!!!!######################"
"######!!!!######################"
"######!!!!######################"
"######!!!!######################"
"######!!!!######################"
"######!!!!######################"
"####!!!!!!!!####################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
;12345678901234567890123456789012
[end]
[_polygon]
type=0x1b
;GRMN_TYPE: //
String1=0x01,Vignoble
String2=0x02,Weinberg, reben
String3=0x04,Vineyard
String4=0x03,Wijngaard
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="32 32 2 1"
"! c #9AC78F"
"# c #AEDFA3"
"#######!#######!#######!#######!"
"#######!#######!#######!#######!"
"#######!#######!#######!#######!"
"#######!#######!#######!#######!"
"###!#######!#######!#######!####"
"###!#######!#######!#######!####"
"###!#######!#######!#######!####"
"###!#######!#######!#######!####"
"#######!#######!#######!#######!"
"#######!#######!#######!#######!"
"#######!#######!#######!#######!"
"#######!#######!#######!#######!"
"###!#######!#######!#######!####"
"###!#######!#######!#######!####"
"###!#######!#######!#######!####"
"###!#######!#######!#######!####"
"#######!#######!#######!#######!"
"#######!#######!#######!#######!"
"#######!#######!#######!#######!"
"#######!#######!#######!#######!"
"###!#######!#######!#######!####"
"###!#######!#######!#######!####"
"###!#######!#######!#######!####"
"###!#######!#######!#######!####"
"#######!#######!#######!#######!"
"#######!#######!#######!#######!"
"#######!#######!#######!#######!"
"#######!#######!#######!#######!"
"###!#######!#######!#######!####"
"###!#######!#######!#######!####"
"###!#######!#######!#######!####"
"###!#######!#######!#######!####"
;12345678901234567890123456789012
[end]
[_polygon]
type=0x1c
;GRMN_TYPE: //
String1=0x01,Aire
String2=0x02,Raststätte
String3=0x04,Service
String4=0x03,Snelweg rustplaats
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #EFC8C8"
[end]
[_polygon]
type=0x1d
;GRMN_TYPE: //
String1=0x01,Minigolf
String2=0x02,Minigolf
String3=0x04,Miniature golf
String4=0x03,Minigolf
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #E2F5C1"
[end]
[_polygon]
type=0x1e
;GRMN_TYPE: Park Areas/STATE_PARK_MAJOR/Large or major state park/Non NT
String1=0x01,Parc
String2=0x02,Park
String3=0x04,Park
String4=0x03,Park
String7=0x15,Park
String8=0x10,Parque
String9=0x05,Parco
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #C8FACC"
[end]
[_polygon]
type=0x1f
;GRMN_TYPE: Park Areas/STATE_PARK/State or provincial park/Non NT
String1=0x01,Parc de chiens
String2=0x02,Hundenwiese
String3=0x04,Dog park
String4=0x03,Honden park
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="32 32 2 1"
"! c #B7E8BC"
"# c #DFFCE2"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"#####!!###!!####################"
"#####!!!#!!!####################"
"###!#!!!#!!!#!##################"
"##!!!#!!#!!#!!!#################"
"##!!!#######!!!#################"
"######!!!!!#####################"
"#####!!!!!!!####################"
"#####!!!!!!!####################"
"#####!!###!!####################"
"#####!!###!!####################"
"################################"
"################################"
;12345678901234567890123456789012
[end]
[_polygon]
type=0x20
;GRMN_TYPE: Park Areas/STATE_PARK_OTHER/Small or misc sized state park/Non NT
String1=0x01,Sable
String2=0x02,Sand
String3=0x04,Sand
String4=0x03,Zand
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="32 32 2 1"
"! c #C5C5C5"
" c none"
" ! "
" ! ! "
" ! ! ! ! "
"! ! "
" ! ! ! !"
" "
" ! ! ! ! ! "
" "
" ! ! ! ! ! ! "
" ! ! "
" ! ! ! "
" ! ! "
" ! ! ! "
" ! "
" ! ! "
" ! ! "
" ! ! "
" ! ! "
" ! ! ! ! "
"! "
" ! "
" ! ! ! "
" ! ! ! "
" "
" ! ! ! ! ! "
" ! "
" ! ! "
" ! ! "
" ! ! ! ! "
" ! "
" ! ! ! ! "
" ! ! "
;12345678901234567890123456789012
[end]
[_polygon]
type=0x21
;GRMN_TYPE: //
String1=0x01,Roche
String2=0x02,Steinschlag
String3=0x04,Gravel
String4=0x03,Steenslag / Gravel
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="32 32 2 1"
"! c #B4B4B4"
" c none"
"! ! ! ! ! ! ! ! "
" ! ! ! ! ! ! "
" ! ! ! ! ! ! "
"! ! ! ! ! !"
" ! ! !! ! ! ! ! ! "
" ! ! ! "
" ! ! ! ! ! ! ! ! ! ! "
" ! ! ! ! "
" ! ! ! ! ! ! ! "
" ! ! ! ! !"
"! ! ! ! ! ! ! ! ! "
" ! ! ! ! "
"! ! ! ! ! ! ! ! !"
" ! ! ! ! ! ! ! "
" ! ! ! ! "
" ! ! ! ! ! ! ! "
"! ! ! ! ! ! ! "
" ! ! ! ! "
" ! ! ! ! ! ! ! ! ! "
"! ! ! ! ! "
" ! ! ! ! ! ! "
" ! ! ! ! ! ! ! "
" ! ! ! ! ! ! "
" ! ! ! ! "
" ! ! ! ! ! ! ! ! !"
" ! ! ! ! "
"! ! ! ! ! ! ! "
" ! ! ! ! ! ! "
" ! ! ! ! ! ! ! ! "
" ! ! ! ! ! ! !"
"! ! ! ! ! ! ! ! ! "
" ! ! ! ! ! ! ! "
;12345678901234567890123456789012
[end]
[_polygon]
type=0x22
;GRMN_TYPE: //
String1=0x01,Zone commerciale
String2=0x02,Gewerbegebiet
String3=0x04,Commercial area
String4=0x03,Commercieel gebied
String7=0x15,Obszar handlowy
String8=0x10,Área comercial
String9=0x05,Area commerciale
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #F2DAD9"
[end]
[_polygon]
type=0x23
;GRMN_TYPE: //
String1=0x01,Brise-lames
String2=0x02,Wellenbrecher
String3=0x04,Breakwater
String4=0x03,Golfbreker
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #AAAAAA"
[end]
[_polygon]
type=0x24
;GRMN_TYPE: //
String1=0x01,Centre artistique
String2=0x02,Kunstzentrum
String3=0x04,Artscentre
String4=0x03,Kunstencentrum
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #FFFFE5"
[end]
[_polygon]
type=0x25
;GRMN_TYPE: //
String1=0x01,Roche
String2=0x02,Felsen
String3=0x04,Rock
String4=0x03,Steenvlakte
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #EEE5DC"
[end]
[_polygon]
type=0x26
;GRMN_TYPE: //
String1=0x01,Prison
String2=0x02,Gefängnis
String3=0x04,Prison
String4=0x03,Gevangenis
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="32 32 2 1"
"! c #C8C7C3"
" c none"
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
" !! !! "
;12345678901234567890123456789012
[end]
[_polygon]
type=0x27
;GRMN_TYPE: //
String1=0x01,Terre
String2=0x02,Land
String3=0x04,Land
String4=0x03,Land
String7=0x15,Land
String8=0x10,Terra
String9=0x05,Terra
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
ContourColor=No
Xpm="0 0 1 0"
"1 c #F2EFE9"
[end]
[_polygon]