-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmapnik.txt
5756 lines (5525 loc) · 113 KB
/
mapnik.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
; (C) 2012 - 2021
; Martin Andres Gomez Gimenez
; <mggimenez@i-nis.com.ar>
; Distributed under the terms
; of the GNU General Public
; License v3
;------------------------------
;
; TYP file to give mapnik rendering
; -*- coding: UTF-8 -*- NB: first 3 bytes/char in file is UTF-8 encoded ByteOrderMark (BOM)
[_comments]
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.
Based on mkgmap default style
[end]
[_id]
;ProductCode=1 set from --product-id
;FID=980 set from --family-id
;CodePage=1252 set from --code-page
[end]
[_drawOrder]
Type=0x02,2
Type=0x03,2
Type=0x04,2
Type=0x05,2
Type=0x06,2
Type=0x07,2
Type=0x08,2
Type=0x09,2
Type=0x0a,2
Type=0x0b,2
Type=0x0c,2
Type=0x0e,2
Type=0x10,2
Type=0x13,2
Type=0x15,2
Type=0x16,2
Type=0x17,2
Type=0x18,2
Type=0x19,2
Type=0x1a,2
Type=0x1b,2
Type=0x20,2
Type=0x32,2
Type=0x3b,2
Type=0x3c,2
Type=0x3d,2
Type=0x3e,2
Type=0x3f,2
Type=0x41,2
Type=0x46,2
Type=0x47,2
Type=0x48,2
Type=0x4b,1
Type=0x4c,2
Type=0x4d,2
Type=0x4e,2
Type=0x4f,2
Type=0x50,2
Type=0x51,2
Type=0x52,2
Type=0x53,2
[end]
[_polygon]
type=0x02
;GRMN_TYPE: Urban Areas/SMALL_CITY/Small urban area, less than 200 000 inhabitants/Non NT
String1=0x00,Residential
String2=0x04,Residential
String3=0x10,Residencial
String4=0x08,Residencial
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #E0DFDF"
"1 c #323232"
[end]
[_polygon]
type=0x03
;GRMN_TYPE: Urban Areas/TOWN/Urban area, less than 50 000 inhabitants/Non NT
String1=0x00,Residential
String2=0x04,Residential
String3=0x10,Residencial
String4=0x08,Residencial
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #E0DFDF"
"1 c #424242"
[end]
[_polygon]
type=0x04
;GRMN_TYPE: Large Manmade Areas/MILITARY_BASE/Military base area/Non NT
String1=0x00,Military
String2=0x04,Military
String3=0x10,Militar
String4=0x08,Militar
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="32 32 4 1"
"0 c #F3D8D2"
"1 c #FFA8A8"
"2 c #A6938F"
"3 c #FFA8A8"
"00000000000000000000000000000011"
"00000000000000000000000000000110"
"00000000000000000000000000001100"
"00000000000000000000000000011000"
"00000000000000000000000000110000"
"00000000000000000000000001100000"
"00000000000000000000000011000000"
"00000000000000000000000110000000"
"00000000000000000000001100000000"
"00000000000000000000011000000000"
"00000000000000000000110000000000"
"00000000000000000001100000000000"
"00000000000000000011000000000000"
"00000000000000000110000000000000"
"00000000000000001100000000000000"
"00000000000000011000000000000000"
"00000000000000110000000000000000"
"00000000000001100000000000000000"
"00000000000011000000000000000000"
"00000000000110000000000000000000"
"00000000001100000000000000000000"
"00000000011000000000000000000000"
"00000000110000000000000000000000"
"00000001100000000000000000000000"
"00000011000000000000000000000000"
"00000110000000000000000000000000"
"00001100000000000000000000000000"
"00011000000000000000000000000000"
"00110000000000000000000000000000"
"01100000000000000000000000000000"
"11000000000000000000000000000000"
"10000000000000000000000000000000"
[end]
[_polygon]
type=0x05
;GRMN_TYPE: Large Manmade Areas/PARKING_LOT/Parking lot area/Non NT
String1=0x00,Parking lot
String2=0x04,Parking lot
String3=0x10,Praia do estacionamento
String4=0x08,Playa de estacionamiento
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #EEEED1"
"1 c #878777"
[end]
[_polygon]
type=0x06
;GRMN_TYPE: Large Manmade Areas/PARKING_GARAGE/Parking garage area/Non NT
String1=0x00,Parking
String2=0x08,Parking
String3=0x10,Garagem
String4=0x08,Estacionamiento
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #BCA9A9"
"1 c #8A7C7C"
[end]
[_polygon]
type=0x07
;GRMN_TYPE: Large Manmade Areas/AIRPORT/Airport area/Non NT
String1=0x00,Airport
String2=0x04,Airport
String3=0x10,Aeroporto
String4=0x08,Aeropuerto
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #EEEED1"
"1 c #878777"
[end]
[_polygon]
type=0x08
;GRMN_TYPE: Large Manmade Areas/SHOPPING_AREA/Shopping area/Non NT
String1=0x00,Retail
String2=0x04,Retail
String3=0x10,Venda varejo
String4=0x08,Venta al por menor
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #F1DADA"
"1 c #BFADAD"
[end]
[_polygon]
type=0x09
;GRMN_TYPE: Large Manmade Areas/MARINA/Marina area/Non NT
String1=0x00,Marina
String2=0x04,Marina
String3=0x10,Marina
String4=0x08,Marina
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #9AD0D0"
"1 c #759E9E"
[end]
[_polygon]
type=0x0a
;GRMN_TYPE: Large Manmade Areas/COLLEGE/College or university area/Non NT
String1=0x00,School
String2=0x04,School
String3=0x10,Escola
String4=0x08,Escuela
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #F0F0D8"
"1 c #BDBDAA"
[end]
[_polygon]
type=0x0b
;GRMN_TYPE: Large Manmade Areas/HOSPITAL/Hospital area/Non NT
String1=0x00,Hospital
String2=0x04,Hospital
String3=0x10,Hospital
String4=0x08,Hospital
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 1 0"
"0 c #F0F0D8"
[end]
[_polygon]
type=0x0c
;GRMN_TYPE: Large Manmade Areas/INDUSTRIAL_COMPLEX/Industrial complex area/Non NT
String1=0x00,Industrial
String2=0x04,Industrial
String3=0x10,Industrial
String4=0x08,Industrial
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"1 c #EBDBE8"
"2 c #91888B"
[end]
[_polygon]
type=0x0e
;GRMN_TYPE: Large Manmade Areas/AIRPORT_RUNWAYS/Airport runway area/Non NT
String1=0x00,Helipad
String2=0x04,Helipad
String3=0x10,Heliporto
String4=0x08,Helipuerto
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #EEEED1"
"1 c #878777"
[end]
[_polygon]
type=0x0f
;GRMN_TYPE: //
String=Commercial Area
String1=0x01,Zone commerciale
String2=0x02,Gewerbegebiet
String4=0x03,Commercieel gebied
String7=0x15,Obszar handlowy
String8=0x10,Área comercial
String9=0x05,Area commerciale
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
Xpm="0 0 1 0"
"1 c #F2DAD9"
[end]
[_polygon]
type=0x10
;GRMN_TYPE: //
String1=0x00,Residential
String2=0x08,Residential
String3=0x10,Residencial
String4=0x08,Residencial
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #E0DFDF"
"1 c #787878"
[end]
[_polygon]
type=0x11
;GRMN_TYPE: //
String=Danger Area
String1=0x01,Domaine militair
String2=0x02,Militärisches Sperrgebiet
String4=0x03,Miltaire gevarenzone
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
Xpm="32 32 2 1"
"! c #FFFFFF"
"# c #FCD8DB"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"#############!###!##############"
"##############!#!###############"
"###############!################"
"##############!#!###############"
"#############!###!##############"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
"################################"
;12345678901234567890123456789012
[end]
[_polygon]
type=0x12
;GRMN_TYPE: //
String=Retail
String1=0x01,Aire
String2=0x02,Raststätte
String4=0x03,Snelweg rustplaats
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
Xpm="0 0 1 0"
"1 c #EFC8C8"
[end]
[_polygon]
type=0x13
;GRMN_TYPE: Large Manmade Areas/GENERIC_MANMADE/Other or generic manmade area, such as a building/Non NT
String1=0x00,Building
String2=0x04,Building
String3=0x10,Edifício
String4=0x08,Edificio
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 1 0"
"0 c #D9D0C9"
[end]
[_polygon]
type=0x15
;GRMN_TYPE: Park Areas/NATIONAL_PARK/National park/Non NT
String1=0x00,Forest
String2=0x04,Forest
String3=0x10,Floresta
String4=0x08,Bosque
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="32 32 4 1"
"0 c #8DC56C"
"1 c #339C46"
"2 c #339C46"
"3 c #8DC56C"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000001000000000000000"
"00000000000000001000000000000000"
"00000000000000011100000000000000"
"00000000000000101010000000000000"
"00000000000000001000000000000000"
"00000000000000011100000000000000"
"00000000000000101010000000000000"
"00000000000000001000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
[end]
[_polygon]
type=0x16
;GRMN_TYPE: Park Areas/NATIONAL_PARK_OTHER/Small or misc sized national park/Non NT
String1=0x00,National Park
String2=0x04,National Park
String3=0x10,Parque nacional
String4=0x08,Parque nacional
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="32 32 4 1"
"0 c #ABDF96"
"1 c #80A36C"
"2 c #80A36C"
"3 c #ABDF96"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000011110010001000000000000"
"00000000010001011001000000000000"
"00000000011110010101000000000000"
"00000000010000010011000000000000"
"00000000010000010001000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
[end]
[_polygon]
type=0x17
;GRMN_TYPE: Park Areas/URBAN_PARK/Small urban park, typically only a few square blocks in size/Non NT
String1=0x00,Meadow
String2=0x04,Meadow
String3=0x10,Prado
String4=0x08,Pradera
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #C8FACC"
"1 c #4A6633"
[end]
[_polygon]
type=0x18
;GRMN_TYPE: Large Manmade Areas/GOLF_COURSE/Golf course area/Non NT
String1=0x00,Golf course
String2=0x04,Golf course
String3=0x10,Campo de golfe
String4=0x08,Campo de golf
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #B5E2B5"
"1 c #647D64"
[end]
[_polygon]
type=0x19
;GRMN_TYPE: Large Manmade Areas/SPORTS_COMPLEX/Sports arena or stadium/Non NT
String1=0x00,Sports pitch
String2=0x04,Sports pitch
String3=0x10,Campo de esportes
String4=0x08,Campo deportivo
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #AAE0CB"
"1 c #19664C"
[end]
[_polygon]
type=0x1a
;GRMN_TYPE: Large Manmade Areas/CEMETARY/Cemetary/Non NT
String1=0x00,Graveyard
String2=0x04,Graveyard
String3=0x10,Cemitério
String4=0x08,Cementerio
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="32 32 4 1"
"0 c #A9C9AE"
"1 c #749677"
"2 c #749677"
"3 c #A9C9AE"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000001100000000000000000000000"
"00000011110000000000000000000000"
"00000011110000000000000000000000"
"00000011110000000000000000000000"
"00000011110000000000000000000000"
"00000011110000000000000000000000"
"00000011110000000000000000000000"
"00001111111100000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
[end]
[_polygon]
type=0x1c
;GRMN_TYPE: //
String=Meadow
String2=0x02,Wiese
String4=0x03,Weide
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
Xpm="0 0 1 0"
"1 c #CDEBB0"
[end]
[_polygon]
type=0x1d
;GRMN_TYPE: //
String=Common
String1=0x01,Parc
String2=0x02,Park
String4=0x03,Park
String7=0x15,Park
String8=0x10,Parque
String9=0x05,Parco
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
Xpm="0 0 1 0"
"1 c #C8FACC"
[end]
[_polygon]
type=0x20
;GRMN_TYPE: Park Areas/STATE_PARK_OTHER/Small or misc sized state park/Non NT
String1=0x00,Garden
String2=0x04,Garden
String3=0x10,Jardim
String4=0x08,Jardin
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="32 32 4 1"
"0 c none"
"1 c #EFC8C8"
"2 c none"
"3 c #BD9E9E"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00010000000100000001000000010000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00010000000100000001000000010000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00010000000100000001000000010000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00010000000100000001000000010000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
[end]
[_polygon]
type=0x21
;GRMN_TYPE: //
String=Tourism
String4=0x03,Toeristische attractie
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
Xpm="0 0 1 0"
"1 c #CDEBB0"
[end]
[_polygon]
type=0x22
;GRMN_TYPE: //
String=Historic
String1=0x01,Patrimoine historique
String2=0x02,Historisches Gebiet / Gebäude
String4=0x03,Historisch gebied/gebouw
String7=0x15,Historyczny teren / budynek
String8=0x10,Edifício histórico
String9=0x05,Luogo storico
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
Xpm="0 0 1 0"
"1 c #D9D0C9"
[end]
[_polygon]
type=0x23
;GRMN_TYPE: //
String=Amenity
String1=0x01,Bâtiment
String2=0x02,Gebäude
String4=0x03,Gebouw
String7=0x15,Budynek
String8=0x10,Edifício
String9=0x05,Edificio
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
Xpm="0 0 1 0"
"1 c #D9D0C9"
[end]
[_polygon]
type=0x24
;GRMN_TYPE: //
String=Man-made
String2=0x02,Konstruktion
String4=0x03,Constructie
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
Xpm="0 0 1 0"
"1 c #B8B8B8"
[end]
[_polygon]
type=0x25
;GRMN_TYPE: //
;See also 0x6b for pedestrian area
String=Square
String1=0x01,Place
String1=0x02,Platz
String1=0x03,Markt
String1=0x05,Piazza
String1=0x08,Plaza
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
Xpm="0 0 1 0"
"1 c #DDDDE8"
[end]
[_polygon]
type=0x26
;GRMN_TYPE: //
String=Farm / Yard
String1=0x01,Ferme
String2=0x02,Bauernhof
String4=0x03,Boerenbedrijf
ExtendedLabels=Y
FontStyle=NoLabel (invisible)
CustomColor=No
Xpm="0 0 1 0"
"1 c #F5DCBA"
[end]
[_polygon]
type=0x32
;GRMN_TYPE: Water Areas/SEA/Sea/Non NT
String1=0x00,Sea
String2=0x04,Sea
String3=0x10,Mar
String4=0x08,Mar
ExtendedLabels=Y
FontStyle=NormalFont
CustomColor=Day
DaycustomColor:#B5D0D0
Xpm="0 0 2 0"
"0 c #B5D0D0"
"1 c #4D6B6B"
[end]
[_polygon]
type=0x3b
;GRMN_TYPE: //
String1=0x00,Water
String2=0x04,Water
String3=0x10,Agua
String4=0x08,Agua
ExtendedLabels=Y
FontStyle=SmallFont
CustomColor=Day
DaycustomColor:#B5D0D0
Xpm="0 0 2 0"
"0 c #B5D0D0"
"1 c #4D6B6B"
[end]
[_polygon]
type=0x3c
;GRMN_TYPE: Water Areas/LAKE_100MI/Lake less than 250 sq mi but greater or equal to 100 sq mi in area/Non NT
String1=0x00,Lake
String2=0x04,Lake
String3=0x10,Lago
String4=0x08,Lago
ExtendedLabels=Y
FontStyle=SmallFont
CustomColor=Day
DaycustomColor:#B5D0D0
Xpm="0 0 2 0"
"0 c #B5D0D0"
"1 c #4D6B6B"
[end]
[_polygon]
type=0x3d
;GRMN_TYPE: Water Areas/LAKE_30MI, LARGE_LAKE/Large lake, typically between 30 and 500 sq mi in area/Non NT
String1=0x00,Bay
String2=0x04,Bay
String3=0x10,Baia
String4=0x08,Bahia
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #F1EEE8"
"1 c #BFBDB8"
[end]
[_polygon]
type=0x3f
;GRMN_TYPE: Water Areas/LAKE, LAKE_5MI/Medium sized lake, typically between 5 and 30 sq mi in area/Non NT
String1=0x00,Lake
String2=0x04,Lake
String3=0x10,Lago
String4=0x08,Lago
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=No
Xpm="0 0 2 0"
"0 c #B5D0D0"
"1 c #4D6B6B"
[end]
[_polygon]
type=0x41
;GRMN_TYPE: Water Areas/LAKE_LT_1MI, SMALL_LAKE/Small lake, typically less than 5 sq mi in area/Non NT
String1=0x00,Lake
String2=0x04,Lake
String3=0x10,Lago
String4=0x08,Lago
ExtendedLabels=Y
FontStyle=SmallFont
CustomColor=Day
DaycustomColor:#B5D0D0
Xpm="0 0 2 0"
"0 c #B5D0D0"
"1 c #4D6B6B"
[end]
[_polygon]
type=0x46
;GRMN_TYPE: Water Areas/LARGE_RIVER/Major river, typically at least 700 ft in width/Non NT
String1=0x00,Riverbank
String2=0x04,Riverbank
String3=0x10,Margem do rio
String4=0x08,Orilla del río
ExtendedLabels=Y
FontStyle=NoLabel
CustomColor=Day
DaycustomColor:#B5D0D0
Xpm="0 0 2 0"
"0 c #B5D0D0"
"1 c #4D6B6B"
[end]
[_polygon]
type=0x47
;GRMN_TYPE: Water Areas/RIVER_GT_700FT/Major river greater or equal to 700 ft in width/Non NT
String1=0x00,Waterfall
String2=0x04,Waterfall
String3=0x10,Cascata
String4=0x08,Catarata
ExtendedLabels=Y
FontStyle=SmallFont
CustomColor=Day
DaycustomColor:#B5D0D0
Xpm="0 0 2 0"
"0 c #AAD3DF"
"1 c #4D6B6B"
[end]
[_polygon]
type=0x48
;GRMN_TYPE: Water Areas/RIVER_100FT, SMALL_RIVER/Minor river, typically less than 700 ft in width/Non NT
String1=0x00,River
String2=0x04,River
String3=0x10,Rio
String4=0x08,Río
ExtendedLabels=Y
FontStyle=SmallFont
CustomColor=Day
DaycustomColor:#B5D0D0
Xpm="0 0 2 0"
"0 c #B5D0D0"
"1 c #4D6B6B"
[end]
[_polygon]
type=0x4b
;GRMN_TYPE: Map Bounds/DATA_BOUNDS/Bounds of map after creation/Non NT
String1=0x00,Non mapped area
String2=0x04,Non mapped area
String3=0x10,Area não mapeada
String4=0x08,Area no mapeada
ExtendedLabels=Y
FontStyle=LargeFont
CustomColor=Day
DaycustomColor:#F2EFE9
Xpm="0 0 2 0"
"0 c #F2EFE9"
"1 c #000000"
[end]
[_polygon]
type=0x4c
;GRMN_TYPE: Water Areas/INTERMITTENT_LAKE/An intermittent or dry lake/Non NT
String1=0x00,Water lock
String2=0x04,Water lock
String3=0x10,Water lock
String4=0x08,Water lock
ExtendedLabels=Y
FontStyle=SmallFont
CustomColor=No
Xpm="32 32 4 1"
"0 c #DDECEC"
"1 c #7E8C8C"
"2 c #7E8C8C"
"3 c #DDECEC"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
"11111111111111111111111111111111"
[end]
[_polygon]
type=0x4d
;GRMN_TYPE: Surface Cover Areas/GLACIER/Large area of compacted snow and ice/Non NT
String1=0x00,Glacier
String2=0x04,Glacier
String3=0x10,Geleira
String4=0x08,Glaciar
ExtendedLabels=Y
FontStyle=SmallFont
CustomColor=No
Xpm="32 32 4 1"
"0 c #DDECEC"
"1 c #7E8C8C"
"2 c #7E8C8C"
"3 c #DDECEC"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000110000110000110000110000000"
"00001001001001001001001001000000"
"00010000110000110000110000100000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"
"00000000000000000000000000000000"