forked from infrastructureclub/open-house-london-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2022-09-05.kml
1493 lines (1493 loc) · 54 KB
/
2022-09-05.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">
<Document id="701">
<Placemark id="703">
<name>New Ground (online only)</name>
<Point id="702">
<coordinates>-0.202757,51.6542151,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="705">
<name>Danson House</name>
<Point id="704">
<coordinates>0.1175883,51.4551228,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="707">
<name>Devonport Mausoleum</name>
<Point id="706">
<coordinates>-0.0071148,51.4805875,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="709">
<name>The Old Finsbury Town Hall </name>
<Point id="708">
<coordinates>-0.1100225,51.5257219,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="711">
<name>Former Edmonton Girls' Charity School </name>
<Point id="710">
<coordinates>-0.0622921,51.6251909,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="713">
<name>Freemasons' Hall</name>
<Point id="712">
<coordinates>-0.1211194,51.5152355,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="715">
<name>Garrick's Temple to Shakespeare, Hampton</name>
<Point id="714">
<coordinates>-0.3592084,51.4123247,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="717">
<name>King's Cross Heritage and Energy Centre Tours</name>
<Point id="716">
<coordinates>-0.1252866,51.5366294,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="719">
<name>Greenwich Yacht Club</name>
<Point id="718">
<coordinates>0.0177407,51.494727,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="721">
<name>Hackney Town Hall </name>
<Point id="720">
<coordinates>-0.0553154,51.5449003,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="723">
<name>Barking Riverside London</name>
<Point id="722">
<coordinates>0.1242973,51.5254427,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="725">
<name>Hogarth's House</name>
<Point id="724">
<coordinates>-0.2587626,51.4876657,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="727">
<name>Holy Trinity Church Sloane Square</name>
<Point id="726">
<coordinates>-0.157482,51.4931409,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="729">
<name>House Mill</name>
<Point id="728">
<coordinates>-0.0095692,51.5268983,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="731">
<name>Isokon Building (Lawn Road Flats)</name>
<Point id="730">
<coordinates>-0.1618582,51.5522126,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="733">
<name>Abbey Mills Pumping Station</name>
<Point id="732">
<coordinates>-0.0037856,51.5322173,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="735">
<name>Keats House</name>
<Point id="734">
<coordinates>-0.1679444,51.555576,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="737">
<name>Kenwood </name>
<Point id="736">
<coordinates>-0.1675998,51.5713284,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="739">
<name>London Museum of Water & Steam</name>
<Point id="738">
<coordinates>-0.2899079,51.4895259,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="741">
<name>St Martin's Parish Church, West Drayton</name>
<Point id="740">
<coordinates>-0.4707656,51.504284,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="743">
<name>Kilmorey Mausoleum</name>
<Point id="742">
<coordinates>-0.3228409,51.4611079,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="745">
<name>King George V Pumping Station</name>
<Point id="744">
<coordinates>-0.0176685,51.6664353,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="747">
<name>Old Royal Naval College - King William Court</name>
<Point id="746">
<coordinates>-0.0040511,51.4846492,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="749">
<name>Kirkaldy's Testing Works</name>
<Point id="748">
<coordinates>-0.1014711,51.5058942,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="751">
<name>Lambeth Town Hall</name>
<Point id="750">
<coordinates>-0.1161197,51.4605256,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="753">
<name>Lauderdale House</name>
<Point id="752">
<coordinates>-0.143254,51.569267,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="755">
<name>Walthamstow Pumphouse Museum</name>
<Point id="754">
<coordinates>-0.0347985,51.576733,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="757">
<name>Bow Church – St Mary</name>
<Point id="756">
<coordinates>-0.0167013,51.5287753,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="759">
<name>Manor House Gardens Ice House</name>
<Point id="758">
<coordinates>0.0046996,51.4563343,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="761">
<name>Markfield Beam Engine and House</name>
<Point id="760">
<coordinates>-0.061452,51.5818841,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="763">
<name>Fulham Palace</name>
<Point id="762">
<coordinates>-0.2162458,51.4719586,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="765">
<name>Oak Room, New River Head</name>
<Point id="764">
<coordinates>-0.1075423,51.5280442,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="767">
<name>New West End Synagogue</name>
<Point id="766">
<coordinates>-0.1907366,51.5115658,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="769">
<name>Museum of London</name>
<Point id="768">
<coordinates>-0.0967782,51.5176183,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="771">
<name>Nunhead Cemetery</name>
<Point id="770">
<coordinates>-0.0519675,51.4651848,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="773">
<name>Old Operating Theatre Museum & Herb Garret </name>
<Point id="772">
<coordinates>-0.0884359,51.5049991,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="775">
<name>Royal Over-Seas League</name>
<Point id="774">
<coordinates>-0.1394065,51.5066394,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="777">
<name>Pullman Court </name>
<Point id="776">
<coordinates>-0.1248256,51.4415283,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="779">
<name>Old Royal Naval College</name>
<Point id="778">
<coordinates>-0.0059154,51.4832059,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="781">
<name>Painters' Hall</name>
<Point id="780">
<coordinates>-0.0949905,51.5116609,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="783">
<name>Paxton Locher House</name>
<Point id="782">
<coordinates>-0.1045787,51.522989,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="785">
<name>St Paul's Bow Common</name>
<Point id="784">
<coordinates>-0.0298277,51.5172669,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="787">
<name>Pitzhanger Manor & Gallery</name>
<Point id="786">
<coordinates>-0.3073139,51.5114492,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="789">
<name>Guildhall Art Gallery</name>
<Point id="788">
<coordinates>-0.0921379,51.5152512,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="791">
<name>Old Royal Naval College - Queen Mary Court</name>
<Point id="790">
<coordinates>-0.0039511,51.4846492,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="793">
<name>Reform Club</name>
<Point id="792">
<coordinates>-0.1332457,51.5065129,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="795">
<name>Roe Green Village</name>
<Point id="794">
<coordinates>-0.2675843,51.5905165,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="797">
<name>St Alban Church</name>
<Point id="796">
<coordinates>-0.3679155,51.5828038,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="799">
<name>Round Chapel</name>
<Point id="798">
<coordinates>-0.0526051,51.5523664,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="801">
<name>Royal College of Physicians </name>
<Point id="800">
<coordinates>-0.1452812,51.5258654,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="803">
<name>Royal Hospital Chelsea, Home of the Chelsea Pensioners</name>
<Point id="802">
<coordinates>-0.1582174,51.4878309,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="805">
<name>Royal Opera House</name>
<Point id="804">
<coordinates>-0.1221976,51.5129211,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="807">
<name>Rudolf Steiner House</name>
<Point id="806">
<coordinates>-0.1603971,51.5250182,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="809">
<name>Walter Segal Self-build Houses </name>
<Point id="808">
<coordinates>-0.0503453,51.4497048,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="811">
<name>Senate House</name>
<Point id="810">
<coordinates>-0.1308206,51.5229378,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="813">
<name>Severndroog Castle</name>
<Point id="812">
<coordinates>0.0592565,51.4659745,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="815">
<name>BAPS Shri Swaminarayan Mandir</name>
<Point id="814">
<coordinates>-0.2624312,51.5478932,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="817">
<name>South London Gallery</name>
<Point id="816">
<coordinates>-0.0811445,51.474419,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="819">
<name>Peter Jones</name>
<Point id="818">
<coordinates>-0.1570174,51.4927684,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="821">
<name>St Bride Foundation </name>
<Point id="820">
<coordinates>-0.1049387,51.513548,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="823">
<name>St Peter & St Paul Harlington</name>
<Point id="822">
<coordinates>-0.4339633,51.4915691,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="825">
<name>The City Churches: St Stephen Walbrook</name>
<Point id="824">
<coordinates>-0.0899439,51.5127333,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="827">
<name>Sukkat Shalom Reform Synagogue</name>
<Point id="826">
<coordinates>0.0289235,51.5843474,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="829">
<name>The Temple Church</name>
<Point id="828">
<coordinates>-0.1077259,51.5142292,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="831">
<name>Table Top Museums at the Art Workers' Guild </name>
<Point id="830">
<coordinates>-0.1227227,51.5214982,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="833">
<name>The Great Barn, Harmondsworth</name>
<Point id="832">
<coordinates>-0.4796831,51.4886271,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="835">
<name>The Hospital Chapel of St Mary & St Thomas </name>
<Point id="834">
<coordinates>0.0692996,51.5579973,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="837">
<name>The Royal Society </name>
<Point id="836">
<coordinates>-0.1323546,51.5059347,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="839">
<name>The Stanley Picker Trust, Picker House (online only)</name>
<Point id="838">
<coordinates>-0.0677747,51.5105908,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="841">
<name>The Temple Wanstead Park</name>
<Point id="840">
<coordinates>0.0433573,51.568725,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="843">
<name>Tooting Bec Lido </name>
<Point id="842">
<coordinates>-0.1391803,51.432008,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="845">
<name>Self-guided Tower Gardens Garden Suburb Walk</name>
<Point id="844">
<coordinates>-0.0907723,51.5987078,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="847">
<name>Trinity Buoy Wharf/Container City</name>
<Point id="846">
<coordinates>0.0087426,51.5084415,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="849">
<name>Bevin Court </name>
<Point id="848">
<coordinates>-0.1112792,51.5304869,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="851">
<name>The North Wing, St Bartholomew's 'Barts' Hospital</name>
<Point id="850">
<coordinates>-0.1000463,51.517496,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="853">
<name>The Church of Our Most Holy Redeemer</name>
<Point id="852">
<coordinates>-0.1093193,51.5258212,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="855">
<name>Hampstead Garden Suburb Free Church</name>
<Point id="854">
<coordinates>-0.190889,51.5807555,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="857">
<name>West India Dock Impounding Station</name>
<Point id="856">
<coordinates>-0.0247009,51.5021182,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="859">
<name>Benjamin Franklin House</name>
<Point id="858">
<coordinates>-0.1248869,51.5076423,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="861">
<name>Hanwell Flight of Locks & Three Bridges</name>
<Point id="860">
<coordinates>-0.3434089,51.504142,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="863">
<name>Wrotham Park</name>
<Point id="862">
<coordinates>-0.1976526,51.6732098,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="865">
<name>York House</name>
<Point id="864">
<coordinates>-0.3247495,51.4484975,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="867">
<name>All Saints Church, Edmonton</name>
<Point id="866">
<coordinates>-0.0663422,51.6260409,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="869">
<name>Christ Church</name>
<Point id="868">
<coordinates>0.0236308,51.5780156,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="871">
<name>Christ Church, Streatham</name>
<Point id="870">
<coordinates>-0.1224151,51.4444384,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="873">
<name>Church of St Lawrence, Little Stanmore</name>
<Point id="872">
<coordinates>-0.2892053,51.6079015,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="875">
<name>St Alfege Church, Greenwich</name>
<Point id="874">
<coordinates>-0.0098682,51.4812198,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="877">
<name>St Andrew's Kingsbury (new church)</name>
<Point id="876">
<coordinates>-0.2618937,51.5670677,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="879">
<name>St Barnabas Church</name>
<Point id="878">
<coordinates>-0.1519005,51.4900687,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="881">
<name>St Dunstan and All Saints Church</name>
<Point id="880">
<coordinates>-0.0426262,51.517287,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="883">
<name>St John the Baptist Holland Road</name>
<Point id="882">
<coordinates>-0.2141698,51.5030578,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="885">
<name>St Jude on the Hill</name>
<Point id="884">
<coordinates>-0.1893314,51.5805196,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="887">
<name>St Mary the Virgin</name>
<Point id="886">
<coordinates>0.0586338,51.5485444,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="889">
<name>St Mary's Church, Battersea</name>
<Point id="888">
<coordinates>-0.1747989,51.4765358,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="891">
<name>St Paul's, Newington</name>
<Point id="890">
<coordinates>-0.0962774,51.4892267,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="893">
<name>Bedford Park Walking Tour</name>
<Point id="892">
<coordinates>-0.2539543,51.4963073,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="895">
<name>Brentham Garden Suburb</name>
<Point id="894">
<coordinates>-0.309085,51.5287856,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="897">
<name>All Saints, Foots Cray</name>
<Point id="896">
<coordinates>0.1090664,51.4246187,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="899">
<name>Bruce Castle Museum</name>
<Point id="898">
<coordinates>-0.0754686,51.5991494,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="901">
<name>Caledonian Park: Clock Tower Tours </name>
<Point id="900">
<coordinates>-0.1180571,51.545771,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="903">
<name>Charlton House & Gardens</name>
<Point id="902">
<coordinates>0.0371437,51.4806943,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="905">
<name>Crofton Roman Villa </name>
<Point id="904">
<coordinates>0.0850865,51.3726172,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="907">
<name>Crossness Southern Outfall</name>
<Point id="906">
<coordinates>0.1317824,51.5045227,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="909">
<name>All Saints Church (The Old Church) </name>
<Point id="908">
<coordinates>-0.0165785,51.6222923,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="911">
<name>St Peter-in-the-Forest Church & Community Centre</name>
<Point id="910">
<coordinates>0.0061333,51.5871381,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="913">
<name>Garden Court Chambers</name>
<Point id="912">
<coordinates>-0.1184708,51.5157532,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="915">
<name>Airport House, Historic Croydon Airport</name>
<Point id="914">
<coordinates>-0.1160461,51.3563076,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="917">
<name>Baitul Futuh Mosque</name>
<Point id="916">
<coordinates>-0.1995107,51.3976407,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="919">
<name>St Pancras Church & Crypt</name>
<Point id="918">
<coordinates>-0.1307808,51.5272888,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="921">
<name>The Chapter House, Merton Priory</name>
<Point id="920">
<coordinates>-0.1832929,51.4130241,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="923">
<name>New Scotland Yard</name>
<Point id="922">
<coordinates>-0.1243284,51.5028041,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="925">
<name>Carshalton Water Tower and Historic Gardens</name>
<Point id="924">
<coordinates>-0.1670357,51.3655577,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="927">
<name>All Saints Carshalton</name>
<Point id="926">
<coordinates>-0.1616349,51.3651363,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="929">
<name>The City Churches: St Mary-le-Bow</name>
<Point id="928">
<coordinates>-0.0941925,51.5141395,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="931">
<name>Working Men's College</name>
<Point id="930">
<coordinates>-0.1357918,51.5352737,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="933">
<name>The Conservatoire, Blackheath</name>
<Point id="932">
<coordinates>0.0093086,51.4646591,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="935">
<name>Canons Park</name>
<Point id="934">
<coordinates>-0.2943906,51.6087625,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="937">
<name>Quaker Meeting House Uxbridge </name>
<Point id="936">
<coordinates>-0.4772315,51.5481524,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="939">
<name>Hermitage Community Moorings</name>
<Point id="938">
<coordinates>-0.0665883,51.5044166,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="941">
<name>A Ruskinian Walk Through Shared Heritage</name>
<Point id="940">
<coordinates>-0.2747704,51.4930625,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="943">
<name>Tottenham Green Conservation Area</name>
<Point id="942">
<coordinates>-0.0722218,51.5871912,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="945">
<name>Two Temple Place</name>
<Point id="944">
<coordinates>-0.1122401,51.5116279,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="947">
<name>Sir Richard Burton's Mausoleum</name>
<Point id="946">
<coordinates>-0.2616901,51.467833,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="949">
<name>Stanley Arts</name>
<Point id="948">
<coordinates>-0.0754022,51.4001227,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="951">
<name>The British Academy</name>
<Point id="950">
<coordinates>-0.1303099,51.5066316,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="953">
<name>Christ Church Southgate and the Minchenden Oak Garden</name>
<Point id="952">
<coordinates>-0.1358408,51.6212818,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="955">
<name>Caroline Gardens Chapel</name>
<Point id="954">
<coordinates>-0.0594917,51.4791118,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="957">
<name>Roca London Gallery</name>
<Point id="956">
<coordinates>-0.1850841,51.4705297,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="959">
<name>Darbishire Place (Peabody Whitechapel Estate)</name>
<Point id="958">
<coordinates>-0.0691349,51.5102363,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="961">
<name>St Leonards Court Air Raid Shelter</name>
<Point id="960">
<coordinates>-0.2694297,51.4671716,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="963">
<name>The Wheelhouse</name>
<Point id="962">
<coordinates>-0.18319290000000002,51.4130241,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="965">
<name>St Pancras Chambers and Clock Tower</name>
<Point id="964">
<coordinates>-0.126133,51.531427,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="967">
<name>University of Greenwich, Stockwell Street</name>
<Point id="966">
<coordinates>-0.008551,51.479672,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="969">
<name>Brentford Canal Toll House and Gauging Lock</name>
<Point id="968">
<coordinates>-0.3017247,51.4849898,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="971">
<name>St Anne's Church, Limehouse</name>
<Point id="970">
<coordinates>-0.0302359,51.5098793,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="973">
<name>ROOM by Antony Gormley</name>
<Point id="972">
<coordinates>-0.1523666,51.5128465,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="975">
<name>German Historical Institute</name>
<Point id="974">
<coordinates>-0.1238095,51.5190283,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="977">
<name>The Library at Willesden Green</name>
<Point id="976">
<coordinates>-0.2290558,51.5469042,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="979">
<name>Blackheath Society Historic Walk, Blackheath SE3</name>
<Point id="978">
<coordinates>0.0124314,51.4734504,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="981">
<name>Fitzrovia Chapel</name>
<Point id="980">
<coordinates>-0.1385956,51.5193306,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="983">
<name>Brentford Then and Now/Brentford through the Ages</name>
<Point id="982">
<coordinates>-0.3092119,51.4835685,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="985">
<name>Kaymet Factory</name>
<Point id="984">
<coordinates>-0.0710449,51.4847424,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="987">
<name>Moravian Close</name>
<Point id="986">
<coordinates>-0.1762358,51.4836113,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="989">
<name>Phoenix Gardens Community Building</name>
<Point id="988">
<coordinates>-0.1285292,51.5144001,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="991">
<name>Turning Earth Ceramics Leyton - E10</name>
<Point id="990">
<coordinates>-0.0392705,51.5705045,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="993">
<name>DUPLICATE Caledonian Park: Clock Tower Tours </name>
<Point id="992">
<coordinates>-0.1233434,51.5460247,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="995">
<name>St Mary The Virgin Wanstead </name>
<Point id="994">
<coordinates>0.0325268,51.571268,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="997">
<name>Chats Palace</name>
<Point id="996">
<coordinates>-0.042876,51.550211,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="999">
<name>Polish Social and Cultural Association</name>
<Point id="998">
<coordinates>-0.237489,51.4935842,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1001">
<name>St Vedast alias Foster</name>
<Point id="1000">
<coordinates>-0.0962895,51.514999,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1003">
<name>Blackbook Winery</name>
<Point id="1002">
<coordinates>-0.1508668,51.471804,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1005">
<name>Enfield Brewery</name>
<Point id="1004">
<coordinates>-0.0435872,51.6142699,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1007">
<name>Tower Theatre</name>
<Point id="1006">
<coordinates>-0.0719775,51.5627627,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1009">
<name>Kingston Historic walk</name>
<Point id="1008">
<coordinates>-0.3062179,51.4097536,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1011">
<name>St Michael and All Angels Church</name>
<Point id="1010">
<coordinates>-0.0294614,51.5855149,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1013">
<name>Valentines Mansion & Gardens</name>
<Point id="1012">
<coordinates>0.0659805,51.5718276,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1015">
<name>Westbourne Park Baptist Church</name>
<Point id="1014">
<coordinates>-0.1894917,51.518639,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1017">
<name>St. Mary's Church, Walthamstow Village</name>
<Point id="1016">
<coordinates>-0.0159668,51.5856101,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1019">
<name>Branch Place, Colville Estate</name>
<Point id="1018">
<coordinates>-0.1277583,51.5073509,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1021">
<name>Millennium Mills</name>
<Point id="1020">
<coordinates>0.0276533,51.5046357,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1023">
<name>Centre Building: London School of Economics</name>
<Point id="1022">
<coordinates>-0.1164513,51.5144388,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1025">
<name>The Royal Bell</name>
<Point id="1024">
<coordinates>0.0143192,51.4056834,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1027">
<name>Van Gogh House London</name>
<Point id="1026">
<coordinates>-0.1151837,51.4745206,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1029">
<name>Greenwich Pumping Station</name>
<Point id="1028">
<coordinates>-0.0198363,51.4755011,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1031">
<name>Workable </name>
<Point id="1030">
<coordinates>-0.0095627,51.5423233,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1033">
<name>Amelia Street</name>
<Point id="1032">
<coordinates>-0.0971316,51.490133,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1035">