-
Notifications
You must be signed in to change notification settings - Fork 0
/
ca_cultural_resources.kml
1698 lines (1698 loc) · 53.6 KB
/
ca_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>ca_s_low_culturalresources.kml</name>
<open>1</open>
<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>
<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="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="sh_sito unesco_0_0_01_0_0_4_200">
<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>
<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="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>
<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_sito unesco_0_0_01_0_0_4_20">
<Pair>
<key>normal</key>
<styleUrl>#sn_sito unesco_0_0_01_0_0_4_200</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sh_sito unesco_0_0_01_0_0_4_20</styleUrl>
</Pair>
</StyleMap>
<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>
<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="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>
<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>
<Style id="sn_sito unesco_0_0_01_0_0_4_200">
<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>
<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_200">
<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_200</styleUrl>
</Pair>
</StyleMap>
<Folder>
<name>Cultural resources</name>
<open>1</open>
<Folder>
<name>Villages of excellence</name>
<Placemark>
<name>Wimpole Estate, The National Trust</name>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Wimpole%20Estate.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
Wimpole Estate is a large estate containing Wimpole Hall, a country house located southwest of Cambridge. It is owned by the National Trust .<br>
<br>
<a href=http://www.nationaltrust.org.uk/wimpole-estate/>www.nationaltrust.org.uk </a><br><br>
<b>Address:</b> Arrington, Royston, Hertfordshire SG8 0BW<br>
</div>
</body>]]></description>
<LookAt>
<longitude>-0.04925899997946459</longitude>
<latitude>52.14124683359782</latitude>
<altitude>0</altitude>
<heading>2.503794144254617e-011</heading>
<tilt>0</tilt>
<range>1000.000143255927</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_20</styleUrl>
<Point>
<gx:drawOrder>1</gx:drawOrder>
<coordinates>-0.04925899997946459,52.14124683359782,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Grantchester Village</name>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Grantchester%20Village.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
Grantchester is a small but pretty village that is a popular destination for going punting on the River Cam. The historic village can excellently be combined with a visit to the Orchard Tea Rooms.
<br>
<br>
<a href= http://www.grantchester.org.uk/> www.grantchester.org.uk</a><br><br>
<b>Address:</b> Grantchester, CB2 4AG, Cambridgeshire <br>
</div>
</body>]]></description>
<LookAt>
<longitude>0.0972460000793629</longitude>
<latitude>52.17730000048472</latitude>
<altitude>0</altitude>
<heading>6.180880001651052e-011</heading>
<tilt>0</tilt>
<range>1000.000438701512</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_200</styleUrl>
<Point>
<gx:drawOrder>1</gx:drawOrder>
<coordinates>0.0972460000793629,52.17730000048472,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Punting (and the River Cam)</name>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Punting%20and%20the%20River%20Cam.JPG" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
Punting along the River Cam is a classic tradition in Cambrige. It provides a beautiful journey with stunning views of the ‘Backs’ in a very Cambridge way while being told the history of the University by a professional guide.
<br>
<br>
<b>Address:</b> Granta Place, Cambridge, CB2 1RS
<br>
</div>
</body>]]></description>
<LookAt>
<longitude>0.1175308393929297</longitude>
<latitude>52.21013376502485</latitude>
<altitude>0</altitude>
<heading>-2.068270355526768e-010</heading>
<tilt>0</tilt>
<range>1001.207393234544</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_200</styleUrl>
<Point>
<gx:drawOrder>1</gx:drawOrder>
<coordinates>0.1175308393929297,52.21013376502485,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Island Hall</name>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Island%20Hall.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
Island Hall is an elegant riverside mansion built in the late 1740s just north of Cambridge providing a venue for ceremonies and scheduled tour groups.
<br>
<br>
<a href= http://www.islandhall.com/> www.islandhall.com </a><br><br>
<b>Address:</b>Post Street, Godmanchester, Huntingdon, Cambs, PE29 2BA<br>
</div>
</body>]]></description>
<LookAt>
<longitude>0.1795394521461869</longitude>
<latitude>52.31784982578995</latitude>
<altitude>0</altitude>
<heading>0.002541016027576936</heading>
<tilt>0</tilt>
<range>1284.295727686665</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_200</styleUrl>
<Point>
<gx:drawOrder>1</gx:drawOrder>
<coordinates>0.1795394521461868,52.31784982578995,0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Castles</name>
<Placemark id="16851474661913952706">
<name>Mountfitchet Castle & Norman Village</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Mountfitchet%20Castle%20and%20Village.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
Mountfitchet Castle and Norman Village is an open-air museum experience where vistors can explore medieval life in a historic castle and village. It is located 30 minutes away from Cambridge on the way to Stansted airport <br>
<br>
<a href=http://www.mountfitchetcastle.com/> www.mountfitchetcastle.com</a><br><br>
<b>Address:</b> Lower Street, Stansted, Essex, CM24 8LY<br>
</div>
</body>]]></description>
<styleUrl>#sn_castello10171050101012</styleUrl>
<ExtendedData>
<Data name="tracking_href_2">
<value>http://www.google.com/maps/gen_204?ct=google_earth:popup&oi=blaces-tourist_destination-tourist_destination._._._.7af34378f6069572_en&cad=lat:51.902176,lon:0.201036,quad:020100100112,cc:GB</value>
</Data>
</ExtendedData>
<Point>
<coordinates>0.201036,51.902176,0</coordinates>
</Point>
</Placemark>
<Placemark id="3230760221969737764">
<name>Hedingham Castle</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/micro-business/Hedingham%20Castle.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
The 900 year old Norman keep of Hedingham Castle in Essex stands in 160 acres of landscaped gardens and woodland.
<br>
<br>
<a href=http://www.hedinghamcastle.co.uk/> www.hedinghamcastle.co.uk</a><br><br>
<b>Address:</b> Bayley Street, Castle Hedingham, Essex, CO9 3DJ<br>
</div>
</body>]]></description>
<styleUrl>#sn_castello10171050101012</styleUrl>
<ExtendedData>
<Data name="tracking_href_2">
<value>http://www.google.com/maps/gen_204?ct=google_earth:popup&oi=blaces-generic_poi-event_venue._._._.fdc20a81bfc71a6c_en&cad=lat:51.9927281,lon:0.6025049,quad:020100100122,cc:GB</value>
</Data>
</ExtendedData>
<Point>
<coordinates>0.6025049,51.9927281,0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Religious</name>
<Placemark id="3689260485220570745">
<name>Round Church</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/The%20Round%20Church.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
The origins of the Round Church building date back to about 1130 AD making it one of the oldest buildings in Cambridge <br>
<br>
<a href= http://www.christianheritageuk.org.uk/> www.christianheritageuk.org.uk</a><br><br>
<b>Address:</b> Bridge Street, Cambridge , CB2 1UB
<br>
</div>
</body>]]></description>
<styleUrl>#msn_chiesa_0_0_01_0_03_0000</styleUrl>
<ExtendedData>
<Data name="tracking_href_2">
<value>http://www.google.com/maps/gen_204?ct=google_earth:popup&oi=blaces-worship_general-church._._._.8a205064d414b966_en&cad=lat:52.2084959,lon:0.1189768,quad:02010010100130303,cc:GB</value>
</Data>
</ExtendedData>
<Point>
<coordinates>0.1189768,52.2084959,0</coordinates>
</Point>
</Placemark>
<Placemark id="13900943080634574511">
<name>Ely Cathedral</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Ely%20Cathedral.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
Ely Cathedral in Cambridgeshire is a magnificent medieval cathedral with a number of unique characteristics, for example an octagon tower.
<br>
<br>
<a href= http://www.elycathedral.org/> www.elycathedral.org</a><br><br>
<b>Address:</b> Chapter House, The College, Ely, Cambridgeshire, CB7 4DL <br>
</div>
</body>]]></description>
<styleUrl>#msn_chiesa_0_0_01_0_03_0000</styleUrl>
<ExtendedData>
<Data name="tracking_href_2">
<value>http://www.google.com/maps/gen_204?ct=google_earth:popup&oi=blaces-worship_general-church._._._.372559bad7f05b83_en&cad=lat:52.3986614,lon:0.2637792,quad:02010010101330,cc:GB</value>
</Data>
</ExtendedData>
<Point>
<coordinates>0.2637792,52.3986614,0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Museums and cultural locations</name>
<Placemark id="16068983067978096398">
<name>Oliver Cromwell's House</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Oliver%20Cromwells%20House.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
Oliver Cromwell’s House was home to the former “Lord Protector” of Britain and re-create a 17th Century experience with audio guides and guided tours.
<br>
<br>
<a href=http://www.visitcambridge.org/things-to-do/oliver-cromwells-house-p507381> www.visitcambridge.org</a><br><br>
<b>Address:</b> 29 St Mary's Street, Ely, Cambridgshire,CB7 4HF<br>
</div>
</body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<ExtendedData>
<Data name="tracking_href_2">
<value>http://www.google.com/maps/gen_204?ct=google_earth:popup&oi=blaces-tourist_destination-tourist_destination._._._.d6732e1d5aaa5413_en&cad=lat:52.3987984,lon:0.2590025,quad:02010010101,cc:GB</value>
</Data>
</ExtendedData>
<Point>
<coordinates>0.2590025,52.3987984,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Anglesey Abbey</name>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Anglesey%20Abbey.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
Anglesey Abbey is a Jacobean-style house with beautiful gardens and a working watermill.
<br>
<br>
<a href=http://www.nationaltrust.org.uk/anglesey-abbey/>www.nationaltrust.org.uk/anglesey-abbey
</a><br><br>
<b>Address:</b>Quy Road, Lode, Cambridge, Cambridgeshire , CB25 9EJ
<br>
</div>
</body>]]></description>
<LookAt>
<longitude>0.2368069998609834</longitude>
<latitude>52.23584183313729</latitude>
<altitude>0</altitude>
<heading>-1.089623991995075e-010</heading>
<tilt>0</tilt>
<range>1000.000187951793</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<gx:drawOrder>1</gx:drawOrder>
<coordinates>0.2368069998609834,52.23584183313729,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Mill Road (local art space - see Ceri)</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Local%20art%20on%20Mill%20Road.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
An exciting community art project is being developed on Mill Road to celebrate the multicultural and diverse community of this vibrant part of Cambridge. <br>
<br>
<br>
<b>Address:</b> Mill Road, Cambridge, CB1 <br>
</div>
</body>]]></description>
<LookAt>
<longitude>0.1441790000016252</longitude>
<latitude>52.19711599998603</latitude>
<altitude>0</altitude>
<heading>6.781041973214014e-013</heading>
<tilt>0</tilt>
<range>1000.00032572115</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<gx:drawOrder>1</gx:drawOrder>
<coordinates>0.1441790000016252,52.19711599998603,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Cambridge Science Centre</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Cambridge%20Science%20Centre.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
The Cambridge Science Centre is a venue for exhibitions, shows and workshops dedicated to bringing science, technology, engineering and mathematics to life with fun and hands-on activities.
<br>
<br>
<a href=http://www.cambridgesciencecentre.org/> www.cambridgesciencecentre.org</a><br><br>
<b>Address:</b>Cambridge Science Centre, 18 Jesus Lane, Cambridge, CB5 8BQ, United Kingdom
<br>
</div>
</body>]]></description>
<LookAt>
<longitude>0.1210329999687909</longitude>
<latitude>52.20868600022075</latitude>
<altitude>0</altitude>
<heading>-3.15035307843551e-011</heading>
<tilt>0</tilt>
<range>1000.000343571776</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<gx:drawOrder>1</gx:drawOrder>
<coordinates>0.1210329999687909,52.20868600022074,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Duxford Imperial War Museum</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Duxford%20Imperial%20War%20%20Museum.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
The Imperial War Museum displays iconic aircraft of WW1 and WW2 and the powerful stories of the men and women involved to show the impact of aviation on the nature of war and on people’s lives.
<br>
<br>
<a href= http://www.iwm.org.uk/visits/iwm-duxford> www.iwm.org.uk</a><br><br>
<b>Address:</b>Duxford, Cambridge CB22 4QR<br>
</div>
</body>]]></description>
<LookAt>
<longitude>0.128179833144435</longitude>
<latitude>52.09476383346375</latitude>
<altitude>0</altitude>
<heading>-1.452855636419516e-010</heading>
<tilt>0</tilt>
<range>1000.00041633601</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<gx:drawOrder>1</gx:drawOrder>
<coordinates>0.128179833144435,52.09476383346375,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Centre for Computing History</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Centre%20for%20Computing%20History.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
The Centre for Computing History tells the story of the Information Age presenting a collection of related artefacts while reflecting the social and historical impacts of computers in Europe.
<br>
<br>
<a href= http://www.computinghistory.org.uk/> www.computinghistory.org.uk</a><br><br>
<b>Address:</b>Centre for Computing History, Rene Court , Coldhams Road, Cambridge, CB1 3EW
<br>
</div>
</body>]]></description>
<LookAt>
<longitude>0.148808833245111</longitude>
<latitude>52.20829100036805</latitude>
<altitude>0</altitude>
<heading>-7.752318767916002e-011</heading>
<tilt>0</tilt>
<range>1000.000221048859</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<gx:drawOrder>1</gx:drawOrder>
<coordinates>0.148808833245111,52.20829100036805,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Scott Polar Research Institute</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Scott%20Polar%20Research%20Institute.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
Scott Polar Research Institute holds a collection of artefacts, journals, paintings, photographs, clothing equipment, maps and other materials illustrating polar exploration, history and science.
<br>
<br>
<a href=http://www.spri.cam.ac.uk/museum/> www.spri.cam.ac.uk</a><br><br>
<b>Address:</b> Scott Polar Research Institute, University of Cambridge, Lensfield Road, Cambridge CB2 1ER, England
<br>
</div>
</body>]]></description>
<LookAt>
<longitude>0.1263008332685622</longitude>
<latitude>52.19822399945812</latitude>
<altitude>0</altitude>
<heading>-4.823394415518975e-011</heading>
<tilt>0</tilt>
<range>1000.000114642218</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<gx:drawOrder>1</gx:drawOrder>
<coordinates>0.1263008332685622,52.19822399945811,0</coordinates>
</Point>
</Placemark>
<Placemark id="12687767599581280044">
<name>The Fitzwilliam Museum</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Fitzwilliam%20Museum.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
The Fitzwilliam Museum hosts diverse, high-quality collections across the ancient world which are supplemented by regular temporary exhibitions as well as an outdoor sculpture gallery.
<br>
<br>
<a href= http://www.fitzmuseum.cam.ac.uk/> www.fitzmuseum.cam.ac.uk </a><br><br>
<b>Address:</b> Trumpington Street, Cambridge, Cambridgeshire, CB2 1RB
<br>
</div>
</body>]]></description>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<ExtendedData>
<Data name="tracking_href_2">
<value>http://www.google.com/maps/gen_204?ct=google_earth:popup&oi=blaces-museum-museum._._._.3ecb0f264b137b25_en&cad=lat:52.1995342,lon:0.119944,quad:020100101000,cc:GB</value>
</Data>
</ExtendedData>
<Point>
<coordinates>0.119944,52.1995342,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Sedgwick Museum of Geology</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Sedgwick%20Museum%20of%20Geology.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
The Sedgwick Museum of Earth Sciences is the oldest of the University of Cambridge museums. It hosts a stunning collection of fossils, minerals and rocks that illustrate the evolution of life in the oceans, on land and in the air.
<br>
<br>
<a href=http://www.sedgwickmuseum.org/> www.sedgwickmuseum.org</a><br><br>
<b>Address:</b> Downing Street, Cambridge, CB2 3EQ <br>
</div>
</body>]]></description>
<LookAt>
<longitude>0.1215179999691518</longitude>
<latitude>52.20293510902372</latitude>
<altitude>0</altitude>
<heading>-1.345649077340761e-010</heading>
<tilt>30.29276366241169</tilt>
<range>174.3325877336582</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<gx:drawOrder>1</gx:drawOrder>
<coordinates>0.1215084343686002,52.20286795141286,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Museum of Zoology</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/University%20Museum%20of%20Zoology.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
The University Museum of Zoology displays fossils, specimens, mammal skeletons and shells from all over the world <br>
<br>
<a href= http://www.museum.zoo.cam.ac.uk/> www.museum.zoo.cam.ac.uk </a><br><br>
<b>Address:</b> Downing Street, Cambridge, CB2 3EJ <br>
</div>
</body>]]></description>
<LookAt>
<longitude>0.1215179999256066</longitude>
<latitude>52.2028868338867</latitude>
<altitude>0</altitude>
<heading>-5.833569642456098e-011</heading>
<tilt>0</tilt>
<range>1000.000202019668</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<gx:drawOrder>1</gx:drawOrder>
<coordinates>0.1220000294934076,52.20283187092115,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Whipple Museum of the History of Science</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Whipple%20Museum%20of%20the%20History%20of%20Science.jpg
" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<style type="text/css">
.box {
width: 320px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
<body>
<div class="box"><br>
The Whipple Museum holds an internationally important collection of scientific instruments and models, dating from the Middle Ages to the present <br>
<br>
<a href=http://www.hps.cam.ac.uk/whipple>www.hps.cam.ac.uk/whipple </a><br><br>
<b>Address:</b> Free School Lane, Cambridge, CB2 3RH <br>
</div>
</body>]]></description>
<LookAt>
<longitude>0.119051902376317</longitude>
<latitude>52.20370014433269</latitude>
<altitude>0</altitude>
<heading>-1.7635555274559e-006</heading>
<tilt>19.80751414602756</tilt>
<range>296.4796270477007</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#m_ylw-pushpin0320011187206</styleUrl>
<Point>
<gx:drawOrder>1</gx:drawOrder>
<coordinates>0.119051902376317,52.2037001443327,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Cambridge Ruskin Gallery</name>
<open>1</open>
<description><![CDATA[<TD><img src="https://sites.google.com/site/sevenbeautiesslow/home/cultural-resources/Ruskin%20Gallery.jpg" WIDTH=320 HEIGHT=240 ALT=></TD>
<br>
<head>