-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathch_cultural_resources.kml
1190 lines (1060 loc) · 36 KB
/
ch_cultural_resources.kml
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"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
<Document>
<name>ch_cultural_resources.kml</name>
<Style id="s_ylw-pushpin01303117000216">
<IconStyle>
<scale>0.5</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/musei.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="sh_sito unesco_0_0_01_0_0_4_20">
<IconStyle>
<scale>0.827273</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/borghi_png.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<StyleMap id="msn_sito unesco_0_0_01_0_0_4_20">
<Pair>
<key>normal</key>
<styleUrl>#sn_sito unesco_0_0_01_0_0_4_20</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sh_sito unesco_0_0_01_0_0_4_20</styleUrl>
</Pair>
</StyleMap>
<Style id="sn_castello01000080040022">
<IconStyle>
<scale>0.7</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/castelli.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<color>ff005cb8</color>
<scale>0</scale>
</LabelStyle>
</Style>
<StyleMap id="msn_chiesa_0_0_01_0_03_0000">
<Pair>
<key>normal</key>
<styleUrl>#sn_chiesa_0_0_01_0_03_01</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sh_chiesa_0_0_01_0_03_00</styleUrl>
</Pair>
</StyleMap>
<Style id="sh_triangle30">
<IconStyle>
<color>ff434cff</color>
<scale>1.16667</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/shapes/triangle.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<StyleMap id="sn_castello10171050101012">
<Pair>
<key>normal</key>
<styleUrl>#sn_castello01000080040022</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sn_castello200001010001110</styleUrl>
</Pair>
</StyleMap>
<Style id="sn_sito unesco_0_0_01_0_0_4_20">
<IconStyle>
<scale>0.7</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/borghi_png.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<StyleMap id="msn_triangle100">
<Pair>
<key>normal</key>
<styleUrl>#sn_triangle21</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sh_triangle30</styleUrl>
</Pair>
</StyleMap>
<Style id="sn_castello200001010001110">
<IconStyle>
<scale>0.7</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/castelli.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<color>ff005cb8</color>
<scale>0</scale>
</LabelStyle>
</Style>
<StyleMap id="m_ylw-pushpin0320011187206">
<Pair>
<key>normal</key>
<styleUrl>#s_ylw-pushpin01303117000216</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#s_ylw-pushpin_hl10011251780204</styleUrl>
</Pair>
</StyleMap>
<Style id="sn_chiesa_0_0_01_0_03_01">
<IconStyle>
<scale>0.6</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/sitireligiosi.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="sh_chiesa_0_0_01_0_03_00">
<IconStyle>
<scale>0.699993</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/sitireligiosi.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="sn_triangle21">
<IconStyle>
<color>ff434cff</color>
<Icon>
<href>http://maps.google.com/mapfiles/kml/shapes/triangle.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="s_ylw-pushpin_hl10011251780204">
<IconStyle>
<scale>0.5</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/musei.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Folder>
<name>ch_cultural_resources</name>
<Folder>
<name>Località</name>
<Folder>
<name>Borghi d'eccellenza</name>
<Placemark id=" 101 ">
<name>Aiseau-Presles "pittoresque village"</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/aiseau%20presle.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Aiseau-Presles are four different typical villages (Aiseau, Pont-de-Loup, Presles and Roselies) which are specific because of their houses built of freestone and they have a rich history. Photo Source: CGT<br><br>
<b>Address: </b>Rue Kennedy, 150 6250 Aiseau-Presles<br>
<b> </b><a href="www.aiseau-presles.be ">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_20</styleUrl>
<Point>
<coordinates>4.570009,50.40799999999999,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 99 ">
<name>Fontaine-l'Eveque, city of nail makers</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/Fontaine-lEv%C3%AAque_JPG01.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Historic industrial village. Photo Source: CGT.<br><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_20</styleUrl>
<Point>
<coordinates>4.324,50.41500000000001,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 100 ">
<name>Gerpinnes, village of Sainte-Rolende</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/Gerpines%20Sainte%20rolende.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Located in a green belt of Charleroi and surrounded by fields, with its landscape Gerpinnes is an excellent site for a warm welcome and rest, a few minutes away from the hustle and bustle of the urban centre of Charleroi. One of the prettiest villages in the region displays its historic and architectural heritage in rural walks. Photo Source: CGT.<br><br>
<b>Address: </b>Rue Edmond Schmidt 1 6280 Gerpinnes<br>
<b> </b><a href="http://www.gerpinnes.be/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_20</styleUrl>
<Point>
<coordinates>4.527007,50.336986,0</coordinates>
</Point>
</Placemark>
</Folder>
</Folder>
<Folder>
<name>Luoghi della fede</name>
<Placemark id=" 87 ">
<name>Saint Christopher Basilica</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/saint_christophe_basilica.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Its curious architecture is explained by the many different stages of building. Photo Source: CGT.<br><br>
<b>Address: </b>Place Charles II, 6000 Charleroi<br>
<b> </b><a href="www.paysdecharleroi.be">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#msn_chiesa_0_0_01_0_03_0000</styleUrl>
<Point>
<coordinates>4.444,50.412006,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 98 ">
<name>Cisterian Abbey in Soleilmont</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/cisterian_abbey_soleilmont.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Religious building. Photo Source: CGT.<br><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#msn_chiesa_0_0_01_0_03_0000</styleUrl>
<Point>
<coordinates>4.504967,50.43687499999999,0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Musei</name>
<Placemark id=" 84 ">
<name>Charleroi Belfry</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/belfry%20charleroi.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The Charleroi Belfry is part of the Unesco World Heritage Sites, as are fifty-five belfries in Belgium and France. Photo Source: CGT.<br><br>
<b>Address: </b>Place Charles II, 6000 Charleroi<br>
<b> </b><a href="http://www.belgique-tourisme.be/informations/attractions-touristiques-charleroi-beffroi-de-charleroi-patrimoine-mondial-de-l-unesco/fr/V/32202.html">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.442,50.41,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 74 ">
<name>La Grange aux potiers</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/bouffioulx%20pottery.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Bouffioulx, village of master-potters Photo Source: CGT<br><br>
<b>Address: </b>Rue E. Hermant 20, 6200 Bouffioulx<br>
<b> </b><a href="http://www.poteriedubois.be/en.html">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.405189,50.38801699999999,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 75 ">
<name>Fine Arts Museum</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/Fine%20Arts%20Museum.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The Fine Arts Museum exhibits works from the brief but rich artistic past of the Charleroi Country together with many productions by other renowned Walloo artists. The whole covers the 19th and 20th centuries, looking over the different major artistic and collective tendencies in the history of art in Wallonia and Brussels: neo-classicism, orientalism, social realism, post-impressionism, surrealism, abstraction, but also Nervia, living art in the Charleroi Country, MAKA, concrete art in Hainaut and so on. Some well-known names : F.-J Navez, J. Portaels, P. Paulus, R. Magritte, A. Darville...Photo Source: CGT <br><br>
<b>Address: </b>Place du Manège 1 in 6000 Charleroi<br>
<b> </b><a href="http://charleroi-museum.be/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.445053,50.411059,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 82 ">
<name>Fleurus "The city of three French victories"</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/Fleurus_the_city_of_three_french_victories.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Historic walking route. Photo Source: CGT.<br><br>
<b>Address: </b>Rue de la Virginette, 2 6220 Fleurus<br>
<b> </b><a href="http://www.fleurus-tourisme.be/fr/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.55,50.48100000000001,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 89 ">
<name>Folklore Parades of the Entre-Sambre et Meuse Region Museum</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/Folklore%20Parades%20of%20the%20Entre-Sambre%20et%20Meuse%20Region%20Museum.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The aim of the museum is to demonstrate one of the most important dimensions of folk tradition in Wallonia. The traditional parades, which date back to the Middle Ages, have never ceased to adapt to the important and historical periods which have marked the Entre-Sambre-et-Meuse region. Photo Source: CGT.<br><br>
<b>Address: </b>Rue de la Régence 6, 6280 Gerpinnes<br>
<b> </b><a href="http://www.museedesmarches.be/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.46,50.39,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 91 ">
<name>Musée Du Verre</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/Glass%20Museum.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Located on the site of Bois du Cazier, Charleroi's new look Glass Museum displays its collections in an unexpected way : going backwards through time from the present day back to the origins of glass, all the periods are covered in a universal approach along three axes : art - history - technology. Photo Source: CGT.<br><br>
<b>Address: </b>Rue Jean Jaurès, 2. 6180 Courcelles<br>
<b> </b><a href="http://www.charleroi.be/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.444935,50.38191100000001,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 71 ">
<name>House of Pottery</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/House%20of%20Pottery.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The House of Pottery pays homage to the potters of yesterday and today, enablig the visitor to discover their technique, their mastery of earth, water and fire along a set-design circuit tracing the major developments in the industry and quality craftman's work. There is also a pleasant area housing temporary exhibitions, a cafetaria, a souvenir gift shop, a documentation centre. Photo Source: CGT ion centre.<br><br>
<b>Address: </b>Rue Général Jacques 46200 BOUFFIOULX<br>
<b> </b><a href="http://www.portail.wallonie.museum/fr/museum.php?id=417">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.404957,50.387983,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 78 ">
<name>Light Infantry Museum</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/infantery%20museum%20charleroi.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The museum offers a panorama of our history through the twelve light infantry regiments which existed between 1830 and the present day. Photo Source: CGT.<br><br>
<b>Address: </b>Avenue Général Michel 1B, 6000 Charleroi<br>
<b> </b><a href="http://www.charleroi.be/en/sightseeing-in-the-region-of-charleroi">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.444,50.413,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 76 ">
<name>Le Bois du Cazier</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/Le%20Bois%20du%20Cazier.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The whole architectural site is remarkable. Crowded by two winding wheels, it is a surrounded by three slag-heaps which have been developed as footpaths. The site is in the list of the UNESCO. Photo Source: CGT.<br><br>
<b>Address: </b>Rue du Cazier, 80, 6001 Marcinelle<br>
<b> </b><a href="http://www.leboisducazier.be/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.457238,50.37490499999999,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 72 ">
<name>Jules Destrée Museum</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/Jules%20Destr%C3%A9e%20Museum.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Located in the City Hall of Charleroi. Works of art, archives, books, documents and various objects narrate the life of Jules Destrée, a versatile and resolutely modern man who was active at the turn of the 19th and the early 20th century. Photo Source: CGT.<br><br>
<b>Address: </b>Town Hall, 2nd floor, Place Charles II, 6000 Charleroi
Place Charles II
6000 CHARLEROI<br>
<b> </b><a href="http://www.charleroi.be/en/sightseeing-in-the-region-of-charleroi">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.437899,50.403212,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 86 ">
<name>Mill of Gerpinnes</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/mill_of_gerpinnes.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>This renovated water mill today produces whole wheat flour to an ancestral method, as well as a clean electricity, in compliance with the conerns of sustainable development. Photo Source: CGT.<br><br>
<b>Address: </b>Rue du Moulin, 3 6280 Gerpinnes<br>
<b> </b><a href="http://www.gerpinnes.be/loisirs/loisirs-1/tourisme/le-moulin-banal-de-gerpinnes">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.528,50.337,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 90 ">
<name>Mining Museum</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/Mining%20Museum.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Fontaine-l'Evêque is a traditional mining town. The mining museum is the direct heritage of the educational workshop where the future foreign miners were trained before facing the dangers of the mine. Photo Source: CGT.<br><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.32381,50.410391,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 83 ">
<name>Musée "Vie et travail de nos Aïeux"</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/Musee_de_la_vie_et_travail.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b>Address: </b>Place Albert Ier, 326183 Trazegnies (Courcelles)<br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.445,50.419,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 73 ">
<name>Passage de la Bourse</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/passage%20de%20la%20bourse%20charleroi.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The urban images of Charleroi deserve particular attention. Photo Source: CGT.<br><br>
<b>Address: </b>Passage de la Bourse, 6000 Charleroi<br>
<b> </b><a href="http://www.charleroi-decouverte.be/index.php?id=62">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.430009,50.40599999999999,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 79 ">
<name>Photography Museum</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/Photography%20Museum.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The museum displays the artistic and technical diversity of photography. It looks at the whole history of photography up to the most recent contemporary developments. The museum is the largest museum in Europe dedicated to photography. A specialized library and a documentation centre are open to students and researchers, and an educational service offers a fun and creative approach to photography in the Discovery Area and through different forms of entertainment. Photo Source: CGT.<br><br>
<b>Address: </b>Avenue Paul Pastur, 11, 6032 Mont-sur-Marchienne<br>
<b> </b><a href="http://www.charleroi.be/en/sightseeing-in-the-region-of-charleroi">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.375764,50.410061,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 80 ">
<name>ULB Scientific Culture Centre</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/ULB%20Scientific%20Culture%20Centre.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The Scientific Culture Centre offers temporary exhibitions on varied themes, interactive experiences to arouse the senses and reflexion, a biotechnology space or evenings observing the sky through the site's telescope. An industrial archeology observatory with an orientation table presents a panoramic view on the industrial area of Charleroi. Photo Source: CGT <br><br>
<b>Address: </b>Rue de Villers 227 6010 Couillet (Charleroi)<br>
<b> </b><a href="http://www.ulb.ac.be//ccs/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.444,50.381997,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 88 ">
<name>The Liberchies Museum</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/The%20Liberchies%20Museum.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The town of Liberchies lies along one of the most important Roman roads in northern Gaul. The archeological sites of Liberchies are two distinct Gallo-Roman establishments, recognised as exceptional heritage of Wallonia. Photo Source: CGT.<br><br>
<b>Address: </b>Place de Liberchies, 5 6238 Liberchies<br>
<b> </b><a href="http://www.musee-liberchies.be/archaeology-liberchies-gallo-roman-museum.html">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.421,50.513,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 85 ">
<name>Charleroi Town Hall</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/town%20hall%20charleroi.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>It is a building with a grand monumental appearance designed by the architect Joseph André, blending the Classical and Art Deco architecture. Photo Source: CGT.<br><br>
<b>Address: </b>Place Charles II, 6000 Charleroi<br>
<b> </b><a href="http://www.charleroi.be/node/242">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<coordinates>4.444,50.400009,0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Luoghi di interesse culturale</name>
<Placemark id=" 94 ">
<name>Tour "Art Deco"</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/Art%20deco%20Charleroi.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Architectural guided walking tour. Photo Source: CGT.<br><br>
<b>Address: </b>Place Charles II, 6000 Charleroi<br>
<b> </b><a href="www.paysdecharleroi.be">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#msn_triangle100</styleUrl>
<Point>
<coordinates>4.444,50.41099999999999,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 92 ">
<name>Tour "Art Nouveau"</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/charleroislow/cultural-resources/Art%20nouveau%20charleroi.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Architectural guided walking tour. Photo Source: CGT.<br><br>
<b>Address: </b>Place Charles II, 6000 Charleroi<br>
<b> </b><a href="www.paysdecharleroi.be">Website</a><br>
<head>