diff --git a/digital_land/api.py b/digital_land/api.py index e047003c..204691e4 100644 --- a/digital_land/api.py +++ b/digital_land/api.py @@ -1,3 +1,6 @@ +from collections import OrderedDict +import csv +import itertools import os import sys import json @@ -244,6 +247,43 @@ def dataset_dump_cmd(self, input_path, output_path): logging.info(cmd) os.system(cmd) + def dataset_dump_hoisted_cmd(self, csv_path, hoisted_csv_path): + if not hoisted_csv_path: + hoisted_csv_path = csv_path.replace(".csv", "-hoisted.csv") + + with open(csv_path, "r") as read_file, open( + hoisted_csv_path, "w+" + ) as write_file: + reader = csv.DictReader(read_file) + + spec_field_names = [ + field.replace("-", "_") + for field in itertools.chain( + *[ + self.specification.current_fieldnames(schema) + for schema in self.specification.dataset_schema[self.dataset] + ] + ) + ] + reader_fieldnames = list(reader.fieldnames) + reader_fieldnames.remove("json") + hoisted_field_names = set(spec_field_names).difference( + set(reader_fieldnames) + ) + # Make sure we put hoisted fieldnames last + field_names = reader_fieldnames + sorted(list(hoisted_field_names)) + + writer = csv.DictWriter(write_file, fieldnames=field_names) + writer.writeheader() + for row in reader: + row = OrderedDict(row) + json_string = row.pop("json") or "{}" + row.update(json.loads(json_string)) + snake_case_row = dict( + [(key.replace("-", "_"), val) for key, val in row.items()] + ) + writer.writerow(snake_case_row) + # # configuration commands # diff --git a/digital_land/cli.py b/digital_land/cli.py index 4a23b774..ca6d5af1 100644 --- a/digital_land/cli.py +++ b/digital_land/cli.py @@ -169,7 +169,16 @@ def dataset_create_cmd(input_paths, output_path, organisation_path): @cli.command("dataset-entries", short_help="dump dataset entries as csv") @input_output_path def dataset_dump_cmd(input_path, output_path): - return API.dataset_dump_cmd(input_path, output_path) + API.dataset_dump_cmd(input_path, output_path) + + +@cli.command( + "dataset-entries-hoisted", + short_help="dump dataset entries as csv with additional top-level `entity.json` fields", +) +@input_output_path +def dataset_dump_hoisted_cmd(input_path, output_path): + API.dataset_dump_hoisted_cmd(csv_path=input_path, hoisted_csv_path=output_path) @cli.command("pipeline", short_help="process a resource") diff --git a/digital_land/specification.py b/digital_land/specification.py index 255b6978..97d13281 100644 --- a/digital_land/specification.py +++ b/digital_land/specification.py @@ -21,7 +21,6 @@ class Specification: def __init__(self, path="specification"): - self.dataset = {} self.dataset = {} self.dataset_names = [] self.schema = {} diff --git a/tests/data/listed-building/dataset/listed-building-grade-hoisted.csv b/tests/data/listed-building/dataset/listed-building-grade-hoisted.csv new file mode 100644 index 00000000..d7846e76 --- /dev/null +++ b/tests/data/listed-building/dataset/listed-building-grade-hoisted.csv @@ -0,0 +1,4 @@ +dataset,end_date,entity,entry_date,geojson,geometry,name,organisation_entity,point,prefix,reference,start_date,typology,listed_building_grade +listed-building-grade,,700000,2021-11-22,,,I,,,listed-building-grade,I,,category,I +listed-building-grade,,700001,2021-11-22,,,II,,,listed-building-grade,II,,category,II +listed-building-grade,,700002,2021-11-22,,,II*,,,listed-building-grade,II*,,category,II* diff --git a/tests/data/listed-building/dataset/listed-building-outline-hoisted.csv b/tests/data/listed-building/dataset/listed-building-outline-hoisted.csv new file mode 100644 index 00000000..7017f8f1 --- /dev/null +++ b/tests/data/listed-building/dataset/listed-building-outline-hoisted.csv @@ -0,0 +1,953 @@ +dataset,end_date,entity,entry_date,geojson,geometry,name,organisation_entity,point,prefix,reference,start_date,typology,documentation_url,listed_building,listed_building_grade,listed_building_outline,organisation,wikidata,wikipedia +listed-building-outline,,42101000,2021-12-23,,"MULTIPOLYGON (((1.025641 51.354931,1.025825 51.355022,1.025780 51.355060,1.025370 51.354861,1.025418 51.354823,1.025641 51.354931)))",,75,POINT(1.025598 51.354941),listed-building-outline,,,geography,,,,,,, +listed-building-outline,,42101001,2021-12-08,,"MULTIPOLYGON (((-0.104776 51.488985,-0.104728 51.489031,-0.104751 51.489052,-0.104599 51.489152,-0.104290 51.489014,-0.104457 51.488859,-0.104776 51.488985)))","Church of St Mary, Newington",329,POINT(-0.104538 51.489006),listed-building-outline,0,2018-12-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/1453719.pdf,,II,,,, +listed-building-outline,,42101080,2021-11-23,,"MULTIPOLYGON (((-0.113036 51.477708,-0.113461 51.477711,-0.113505 51.477458,-0.113020 51.477422,-0.113014 51.477454,-0.113090 51.477471,-0.113070 51.477534,-0.113122 51.477579,-0.113117 51.477620,-0.113045 51.477654,-0.113036 51.477708)))","Christ Church Hall, Mowll Street",192,POINT(-0.113273 51.477572),listed-building-outline,8/1,,geography,,,Listed Building Grade II,828,,, +listed-building-outline,,42101081,2021-11-23,,"MULTIPOLYGON (((-0.121334 51.493014,-0.121543 51.492462,-0.121023 51.492343,-0.120931 51.492515,-0.120885 51.492507,-0.120871 51.492553,-0.121131 51.492609,-0.121166 51.492511,-0.121269 51.492525,-0.121302 51.492455,-0.121328 51.492462,-0.121247 51.492689,-0.121205 51.492716,-0.121236 51.492733,-0.121122 51.492983,-0.121334 51.493014)))",No Address Supplied,192,POINT(-0.121253 51.492632),listed-building-outline,82,,geography,,,Listed Building Grade II,82,,, +listed-building-outline,,42101082,2021-11-23,,"MULTIPOLYGON (((-0.120711 51.492951,-0.120679 51.492896,-0.120609 51.492912,-0.120638 51.492968,-0.120711 51.492951)))",No Address Supplied,192,POINT(-0.120659 51.492932),listed-building-outline,83,,geography,,,Listed Building Grade II,83,,, +listed-building-outline,,42101128,2021-11-23,,"MULTIPOLYGON (((-0.109618 51.505660,-0.109546 51.505549,-0.108286 51.505993,-0.108389 51.506095,-0.109618 51.505660)))",1-18 (cons) Aquinas Street,192,POINT(-0.108958 51.505825),listed-building-outline,1/29,,geography,,,Listed Building Grade II,40,,, +listed-building-outline,,42101170,2021-11-23,,"MULTIPOLYGON (((-0.117867 51.461044,-0.117765 51.460779,-0.117541 51.460844,-0.117664 51.461100,-0.117867 51.461044)))",24 & 26 Acre Lane,192,POINT(-0.117708 51.460939),listed-building-outline,17/1,,geography,,,Listed Building Grade II,589,,, +listed-building-outline,,42101171,2021-11-23,,"MULTIPOLYGON (((-0.118338 51.460796,-0.118311 51.460755,-0.118263 51.460749,-0.117854 51.460873,-0.117880 51.460914,-0.117920 51.460911,-0.118338 51.460796)))",1 to 12 Acre Lane (consec),192,POINT(-0.118100 51.460830),listed-building-outline,17/2,,geography,,,Listed Building Grade II,590,,, +listed-building-outline,,42101172,2021-11-23,,"MULTIPOLYGON (((-0.118514 51.461106,-0.118473 51.461075,-0.118091 51.461196,-0.118108 51.461220,-0.118514 51.461106)))","13 to 16 Acre Lane (with wash-house, walls)",192,POINT(-0.118309 51.461145),listed-building-outline,17/3,,geography,,,Listed Building Grade II,591,,, +listed-building-outline,,42101173,2021-11-23,,"MULTIPOLYGON (((-0.118043 51.461207,-0.117910 51.460987,-0.117851 51.461002,-0.117976 51.461224,-0.118043 51.461207)))",17 to 20 Acre Lane - Trinity Homes(consec),192,POINT(-0.117946 51.461107),listed-building-outline,17/4,,geography,,,Listed Building Grade II,592,,, +listed-building-outline,,42101174,2021-11-23,,"MULTIPOLYGON (((-0.118232 51.460976,-0.118182 51.460896,-0.118097 51.460917,-0.118145 51.460997,-0.118232 51.460976)))",Acre Lane (washroom building in courtyard of Trinity Homes),192,POINT(-0.118164 51.460947),listed-building-outline,17/5,,geography,,,Listed Building Grade II,527,,, +listed-building-outline,,42101175,2021-11-23,,"MULTIPOLYGON (((-0.118267 51.460755,-0.118352 51.460733,-0.118293 51.460641,-0.117765 51.460779,-0.117802 51.460878,-0.117886 51.460856,-0.117805 51.460873,-0.117772 51.460781,-0.118289 51.460646,-0.118342 51.460732,-0.118267 51.460755)))",1 to 12 Acre Lane (forecourt walls),192,POINT(-0.118056 51.460733),listed-building-outline,17/6,,geography,,,Listed Building Grade II,593,,, +listed-building-outline,,42101176,2021-11-23,,"MULTIPOLYGON (((-0.119836 51.460443,-0.119765 51.460329,-0.119626 51.460368,-0.119698 51.460480,-0.119836 51.460443)))",46 Acre Lane,192,POINT(-0.119731 51.460405),listed-building-outline,17/7,,geography,,,Listed Building Grade II,594,,, +listed-building-outline,,42101177,2021-11-23,,"MULTIPOLYGON (((-0.119908 51.460557,-0.120324 51.460459,-0.120151 51.460181,-0.119734 51.460279,-0.119908 51.460557)))",48 & 50 Acre Lane,192,POINT(-0.120029 51.460369),listed-building-outline,17/8,,geography,,,Listed Building Grade II,558,,, +listed-building-outline,,42101178,2021-11-23,,"MULTIPOLYGON (((-0.119734 51.460279,-0.119737 51.460283,-0.120153 51.460185,-0.120151 51.460181,-0.119734 51.460279)))","48 & 50 Acre Lane (forecourt wall, gates)",192,POINT(-0.119942 51.460232),listed-building-outline,17/9,,geography,,,Listed Building Grade II,528,,, +listed-building-outline,,42101220,2021-11-23,,"MULTIPOLYGON (((-0.119985 51.500343,-0.120079 51.500350,-0.120773 51.496714,-0.121161 51.495064,-0.121060 51.495054,-0.120790 51.496178,-0.119985 51.500343)))",No Address Supplied,192,POINT(-0.120561 51.497642),listed-building-outline,2/21,,geography,,,Listed Building Grade II,714,,, +listed-building-outline,,42101221,2021-11-23,,"MULTIPOLYGON (((-0.119840 51.500673,-0.119900 51.500351,-0.119967 51.500350,-0.119985 51.500343,-0.120791 51.496179,-0.120794 51.496120,-0.120747 51.496071,-0.120788 51.496147,-0.119977 51.500342,-0.119893 51.500351,-0.119840 51.500673)))","St Thomas' Hospital, Albert Embankment (wall along western boundary of hospital)",192,POINT(-0.120383 51.498247),listed-building-outline,2/22,,geography,,,Listed Building Grade II,561,,, +listed-building-outline,,42101234,2021-11-23,,"MULTIPOLYGON (((-0.118643 51.500915,-0.118403 51.501557,-0.118353 51.501576,-0.118095 51.502188,-0.118124 51.502222,-0.117900 51.502758,-0.117874 51.502753,-0.117832 51.502855,-0.119322 51.503045,-0.119347 51.503037,-0.119370 51.502933,-0.119349 51.502930,-0.119447 51.502442,-0.119550 51.502423,-0.119577 51.502300,-0.119357 51.502195,-0.119303 51.502119,-0.119278 51.502003,-0.119440 51.501856,-0.119679 51.501795,-0.119704 51.501672,-0.119616 51.501639,-0.119757 51.501047,-0.119305 51.500989,-0.119292 51.500962,-0.119156 51.500970,-0.119163 51.500947,-0.119109 51.500940,-0.119102 51.500964,-0.118684 51.500900,-0.118643 51.500915)))","The County Hall, Belvedere Road",192,POINT(-0.118868 51.502010),listed-building-outline,2/35,,geography,,,Listed Building Grade II*,41,,, +listed-building-outline,,42101235,2021-11-23,,"MULTIPOLYGON (((-0.117813 51.502972,-0.118816 51.503090,-0.118829 51.503094,-0.118831 51.503127,-0.118851 51.503155,-0.118885 51.503175,-0.118937 51.503190,-0.119001 51.503189,-0.119051 51.503174,-0.119087 51.503147,-0.119098 51.503129,-0.119337 51.503157,-0.119340 51.503149,-0.119094 51.503119,-0.119048 51.503173,-0.118945 51.503189,-0.118854 51.503154,-0.118839 51.503086,-0.117789 51.502959,-0.117786 51.502969,-0.117813 51.502972)))","The County Hall, Belvedere Road (Balustrade North of Main Block)",192,POINT(-0.118549 51.503065),listed-building-outline,2/36,,geography,,,Listed Building Grade II,263,,, +listed-building-outline,,42101236,2021-11-23,,"MULTIPOLYGON (((-0.119902 51.501616,-0.119856 51.501755,-0.119703 51.502502,-0.119849 51.501970,-0.119902 51.501616)),((-0.119985 51.500926,-0.119974 51.500925,-0.119801 51.501754,-0.119833 51.501744,-0.119985 51.500926)),((-0.119700 51.502362,-0.119670 51.502360,-0.119536 51.503001,-0.119567 51.502955,-0.119700 51.502362)),((-0.119549 51.503047,-0.119530 51.503032,-0.119410 51.503604,-0.119430 51.503603,-0.119549 51.503047)))","The County Hall, Belvedere Road (250m of river wall to west of main block)",192,POINT(-0.119724 51.502251),listed-building-outline,2/37,,geography,,,Listed Building Grade II,602,,, +listed-building-outline,,42101274,2021-11-23,,"MULTIPOLYGON (((-0.109704 51.445199,-0.109561 51.444941,-0.109788 51.444861,-0.109640 51.444659,-0.108850 51.444872,-0.108995 51.445297,-0.109704 51.445199)))","Holy Trinity church, Trinity Rise",192,POINT(-0.109309 51.444990),listed-building-outline,27/5,,geography,,,Listed Building Grade II,826,,, +listed-building-outline,,42101390,2021-11-23,,"MULTIPOLYGON (((-0.128220 51.419514,-0.128281 51.419603,-0.128807 51.419443,-0.128834 51.419376,-0.128745 51.419299,-0.128687 51.419318,-0.128705 51.419298,-0.128679 51.419270,-0.128605 51.419296,-0.128675 51.419389,-0.128220 51.419514)))",496 Streatham High Road,192,POINT(-0.128558 51.419452),listed-building-outline,39/1,,geography,,,Listed Building Grade II,827,,, +listed-building-outline,,42101392,2021-11-23,,"MULTIPOLYGON (((-0.129081 51.419244,-0.129145 51.419305,-0.129759 51.419070,-0.129700 51.419007,-0.129081 51.419244)))",No Address Supplied,192,POINT(-0.129421 51.419156),listed-building-outline,39/3,,geography,,,Listed Building Grade II,830,,, +listed-building-outline,,42101437,2021-11-23,,"MULTIPOLYGON (((-0.119585 51.492034,-0.119390 51.492164,-0.119409 51.492204,-0.120470 51.492409,-0.120754 51.492510,-0.120930 51.492328,-0.120915 51.492299,-0.119585 51.492034)))","Southbank House, Black Prince Road",192,POINT(-0.120178 51.492256),listed-building-outline,4/38,,geography,,,Listed Building Grade II,878,,, +listed-building-outline,,42101439,2021-11-23,,"MULTIPOLYGON (((-0.115480 51.490273,-0.115644 51.490107,-0.115471 51.490019,-0.115412 51.490027,-0.115271 51.490197,-0.115480 51.490273)))",35 Black Prince Road (Day Hospital - St Thomas' Childrens' Dept.),192,POINT(-0.115457 51.490144),listed-building-outline,4/40,,geography,,,Listed Building Grade II,897,,, +listed-building-outline,,42101440,2021-11-23,,"MULTIPOLYGON (((-0.115703 51.490039,-0.115480 51.490273,-0.116334 51.490582,-0.116554 51.490268,-0.115703 51.490039)))",39 Black Prince Road (Beaufoy Institute),192,POINT(-0.116033 51.490297),listed-building-outline,4/41,,geography,,,Listed Building Grade II,913,,, +listed-building-outline,,42101441,2021-11-23,,"MULTIPOLYGON (((-0.116523 51.490330,-0.116365 51.490525,-0.116333 51.490580,-0.115558 51.490297,-0.115480 51.490273,-0.116334 51.490582,-0.116523 51.490330)))","39 Black Prince Road (gates, piers and rails)",192,POINT(-0.116074 51.490438),listed-building-outline,4/42,,geography,,,Listed Building Grade II,928,,, +listed-building-outline,,42101715,2021-11-23,,"MULTIPOLYGON (((-0.104303 51.437407,-0.104749 51.437273,-0.105060 51.437183,-0.104916 51.436991,-0.104009 51.437256,-0.104153 51.437449,-0.104303 51.437407)))",No Address Supplied,192,POINT(-0.104533 51.437220),listed-building-outline,716,,geography,,,Listed Building Grade II,716,,, +listed-building-outline,,42101718,2021-11-23,,"MULTIPOLYGON (((-0.127823 51.470721,-0.127736 51.470791,-0.127776 51.470814,-0.127943 51.470701,-0.127974 51.470717,-0.128028 51.470682,-0.128096 51.470726,-0.128192 51.470678,-0.128225 51.470637,-0.128194 51.470618,-0.128233 51.470600,-0.128182 51.470551,-0.128065 51.470608,-0.128114 51.470495,-0.128029 51.470450,-0.127948 51.470554,-0.127767 51.470654,-0.127823 51.470721)))","Former Annie McCall Hospital, Jefferys Road, London, SW4 6QU",192,POINT(-0.127994 51.470632),listed-building-outline,719,,geography,,,Listed Building Grade II,719,,, +listed-building-outline,,42101724,2021-11-23,,"MULTIPOLYGON (((-0.120382 51.477119,-0.120239 51.477245,-0.119774 51.477661,-0.120169 51.477831,-0.120435 51.477593,-0.120851 51.477774,-0.120881 51.477604,-0.120573 51.477471,-0.120828 51.477242,-0.120382 51.477119)))",15 to 23 Albert Square,192,POINT(-0.120356 51.477489),listed-building-outline,7/25,,geography,,,Listed Building Grade II,877,,, +listed-building-outline,,42101725,2021-11-23,,"MULTIPOLYGON (((-0.119688 51.477770,-0.118881 51.477411,-0.118597 51.477666,-0.119415 51.478009,-0.119688 51.477770)))",24 to 32 Albert Square,192,POINT(-0.119142 51.477712),listed-building-outline,7/26,,geography,,,Listed Building Grade II,599,,, +listed-building-outline,,42101726,2021-11-23,,"MULTIPOLYGON (((-0.118870 51.477421,-0.119117 51.477200,-0.118716 51.477027,-0.118492 51.477258,-0.118870 51.477421)))",33 to 36 Albert Square,192,POINT(-0.118800 51.477225),listed-building-outline,7/27,,geography,,,Listed Building Grade II,177,,, +listed-building-outline,,42101777,2021-11-23,,"MULTIPOLYGON (((-0.127032 51.487729,-0.127245 51.487550,-0.126862 51.487378,-0.126871 51.487333,-0.126808 51.487353,-0.126292 51.487121,-0.126306 51.487074,-0.126240 51.487097,-0.125771 51.486887,-0.125796 51.486865,-0.125725 51.486832,-0.125698 51.486855,-0.125455 51.486741,-0.125187 51.486949,-0.125538 51.487089,-0.125561 51.487068,-0.126033 51.487280,-0.126015 51.487330,-0.126085 51.487303,-0.126331 51.487414,-0.126600 51.487536,-0.126583 51.487580,-0.126652 51.487559,-0.127032 51.487729)))",Vauxhall Bridge,192,POINT(-0.126215 51.487228),listed-building-outline,778,,geography,,,Listed Building Grade II,778,,, +listed-building-outline,,42101780,2021-11-23,,"MULTIPOLYGON (((-0.105117 51.492630,-0.105069 51.492549,-0.105173 51.492521,-0.105206 51.492498,-0.105190 51.492473,-0.105263 51.492443,-0.105183 51.492358,-0.105339 51.492318,-0.105267 51.492200,-0.105109 51.492238,-0.105074 51.492144,-0.104925 51.492121,-0.104762 51.492159,-0.104775 51.492179,-0.104726 51.492191,-0.104962 51.492576,-0.105020 51.492562,-0.105041 51.492632,-0.105117 51.492630)))","Administrative Block to former Lambeth Workhouse, Renfrew Road",192,POINT(-0.105024 51.492337),listed-building-outline,781,,geography,,,Listed Building Grade II,781,,, +listed-building-outline,,42101781,2021-11-23,,"MULTIPOLYGON (((-0.104765 51.492648,-0.104734 51.492591,-0.104627 51.492625,-0.104661 51.492671,-0.104765 51.492648)))","Water Tower to former Lambeth Workhouse, Renfrew Road",192,POINT(-0.104698 51.492633),listed-building-outline,782,,geography,,,Listed Building Grade II,782,,, +listed-building-outline,,42101782,2021-11-23,,"MULTIPOLYGON (((-0.137530 51.423389,-0.137510 51.422695,-0.137465 51.422242,-0.137512 51.423389,-0.137530 51.423389)))","Gates, gate-piers, curved wall section and railings associated with pumping station, Conyers Road",192,POINT(-0.137502 51.422887),listed-building-outline,783,,geography,,,Listed Building Grade II,783,,, +listed-building-outline,,42101783,2021-11-23,,"MULTIPOLYGON (((-0.128052 51.467039,-0.128124 51.466997,-0.128108 51.466965,-0.128180 51.466894,-0.127998 51.466848,-0.127917 51.466967,-0.127971 51.466985,-0.127927 51.467003,-0.128052 51.467039)))",369 Clapham Road,192,POINT(-0.128040 51.466943),listed-building-outline,784,,geography,,,Listed Building Grade II,784,,, +listed-building-outline,,42101857,2021-11-23,,"MULTIPOLYGON (((-0.111811 51.478386,-0.111868 51.478391,-0.111888 51.478284,-0.111575 51.478267,-0.111560 51.478342,-0.111811 51.478386)))",91 & 93 Brixton Road,192,POINT(-0.111732 51.478323),listed-building-outline,8/58,,geography,,,Listed Building Grade II,718,,, +listed-building-outline,,42101858,2021-11-23,,"MULTIPOLYGON (((-0.111575 51.478267,-0.111888 51.478283,-0.111949 51.477975,-0.111636 51.477949,-0.111575 51.478267)))",95 to 103 Brixton Road (odd),192,POINT(-0.111761 51.478118),listed-building-outline,8/59,,geography,,,Listed Building Grade II,3,,, +listed-building-outline,,42101859,2021-11-23,,"MULTIPOLYGON (((-0.111636 51.477949,-0.111949 51.477975,-0.111987 51.477780,-0.111706 51.477762,-0.111668 51.477781,-0.111636 51.477949)))","105, 107 & 109 Brixton Road",192,POINT(-0.111813 51.477867),listed-building-outline,8/60,,geography,,,Listed Building Grade II,577,,, +listed-building-outline,,42101860,2021-11-23,,"MULTIPOLYGON (((-0.111776 51.477605,-0.111703 51.477615,-0.111672 51.477760,-0.111987 51.477779,-0.112018 51.477622,-0.111776 51.477605)))",111 to 115 Brixton Road (odd),192,POINT(-0.111847 51.477691),listed-building-outline,8/61,,geography,,,Listed Building Grade II,930,,, +listed-building-outline,,42101861,2021-11-23,,"MULTIPOLYGON (((-0.112018 51.477622,-0.112122 51.477073,-0.111807 51.477049,-0.111725 51.477476,-0.111778 51.477493,-0.111759 51.477604,-0.112018 51.477622)))",117 to 137 Brixton Road (odd),192,POINT(-0.111919 51.477328),listed-building-outline,8/62,,geography,,,Listed Building Grade II,4,,, +listed-building-outline,,42101872,2021-11-23,,"MULTIPOLYGON (((-0.115595 51.495478,-0.115595 51.495474,-0.115588 51.495476,-0.115590 51.495478,-0.115595 51.495478)))","Lamp post on East side of railway viaduct, Lambeth Road",192,POINT(-0.115592 51.495476),listed-building-outline,873,,geography,,,Listed Building Grade II,873,,, +listed-building-outline,,42101873,2021-11-23,,"MULTIPOLYGON (((-0.111806 51.480346,-0.111923 51.480190,-0.111480 51.480121,-0.111369 51.480294,-0.111806 51.480346)))",22 & 24 Brixton Road,192,POINT(-0.111642 51.480237),listed-building-outline,8/74,,geography,,,Listed Building Grade II,580,,, +listed-building-outline,,42101874,2021-11-23,,"MULTIPOLYGON (((-0.122794 51.494609,-0.122830 51.494443,-0.122687 51.494428,-0.122675 51.494371,-0.122632 51.494423,-0.121970 51.494353,-0.121958 51.494293,-0.121916 51.494347,-0.121377 51.494283,-0.121332 51.494460,-0.121874 51.494511,-0.121887 51.494569,-0.121929 51.494518,-0.122589 51.494587,-0.122601 51.494640,-0.122643 51.494593,-0.122794 51.494609)))",Lambeth Bridge,192,POINT(-0.122081 51.494449),listed-building-outline,875,,geography,,,Listed Building Grade II,875,,, +listed-building-outline,,42101875,2021-11-23,,"MULTIPOLYGON (((-0.112569 51.477389,-0.112873 51.477411,-0.112906 51.477111,-0.113193 51.477133,-0.113178 51.477083,-0.113219 51.476986,-0.112536 51.476932,-0.112514 51.477080,-0.112624 51.477088,-0.112569 51.477389)))",98 to 110 Brixton Road (even),192,POINT(-0.112804 51.477135),listed-building-outline,8/76,,geography,,,Listed Building Grade II,935,,, +listed-building-outline,,42101876,2021-11-23,,"MULTIPOLYGON (((-0.112860 51.476957,-0.112894 51.476872,-0.112549 51.476845,-0.112536 51.476932,-0.112860 51.476957)))",112 Brixton Road,192,POINT(-0.112710 51.476901),listed-building-outline,8/77,,geography,,,Listed Building Grade II,581,,, +listed-building-outline,,42101882,2021-11-23,,"MULTIPOLYGON (((-0.131456 51.428317,-0.131466 51.428296,-0.131454 51.428293,-0.131444 51.428315,-0.131456 51.428317)))","Dyke Drinking Fountain, Streatham Green, Streatham High Road",192,POINT(-0.131455 51.428305),listed-building-outline,883,,geography,,,Listed Building Grade II,883,,, +listed-building-outline,,42101884,2021-11-23,,"MULTIPOLYGON (((-0.109228 51.502324,-0.109168 51.502254,-0.109040 51.502186,-0.108612 51.502327,-0.108745 51.502484,-0.109228 51.502324)))",83 - 101 The Cut (Royal National Theatre Studio),192,POINT(-0.108914 51.502330),listed-building-outline,885,,geography,,,Listed Building Grade II,885,,, +listed-building-outline,,42101899,2021-11-23,,"MULTIPOLYGON (((-0.130283 51.465957,-0.129504 51.465773,-0.129355 51.465994,-0.130159 51.466177,-0.130283 51.465957)))","Church of St Bede and Institute, 412 Clapham Road, SW4 6NH",192,POINT(-0.129823 51.465975),listed-building-outline,900,,geography,,,Listed Building Grade II,900,,, +listed-building-outline,,42101906,2021-11-23,,"MULTIPOLYGON (((-0.105060 51.470524,-0.105050 51.470526,-0.105048 51.470533,-0.105064 51.470534,-0.105060 51.470524)))",,192,POINT(-0.105056 51.470530),listed-building-outline,907,,geography,,,Listed Building Grade II,907,,, +listed-building-outline,,42101914,2021-11-23,,"MULTIPOLYGON (((-0.128710 51.431623,-0.128695 51.431672,-0.128860 51.431704,-0.128848 51.431742,-0.129009 51.431755,-0.129012 51.431715,-0.129066 51.431717,-0.129089 51.431754,-0.129213 51.431756,-0.129231 51.431532,-0.128972 51.431524,-0.128969 51.431570,-0.128874 51.431567,-0.128897 51.431488,-0.128778 51.431473,-0.128710 51.431623)))",Streatham Tate Library and Hall,192,POINT(-0.128979 51.431627),listed-building-outline,915,,geography,,,Listed Building Grade II,915,,, +listed-building-outline,,42101947,2021-12-08,,"MULTIPOLYGON (((-0.089762 51.504137,-0.089803 51.504083,-0.090323 51.504241,-0.090272 51.504289,-0.089762 51.504137)))",The George Inn,329,POINT(-0.090038 51.504187),listed-building-outline,470656,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB81.pdf,,I,,,, +listed-building-outline,,42101948,2021-12-08,,"MULTIPOLYGON (((-0.089936 51.506526,-0.089683 51.506490,-0.089663 51.506475,-0.089719 51.506417,-0.089711 51.506388,-0.089391 51.506338,-0.089346 51.506431,-0.089363 51.506450,-0.089303 51.506523,-0.089212 51.506528,-0.089304 51.506296,-0.089267 51.506278,-0.089314 51.506276,-0.089321 51.506217,-0.089375 51.506167,-0.089282 51.506145,-0.089240 51.506171,-0.089260 51.506140,-0.089013 51.506072,-0.089144 51.505906,-0.089310 51.505957,-0.089346 51.505938,-0.089331 51.505961,-0.089369 51.505971,-0.089404 51.505952,-0.089389 51.505976,-0.089483 51.505998,-0.089527 51.505971,-0.089614 51.505984,-0.089642 51.505935,-0.089779 51.505965,-0.089812 51.505986,-0.089750 51.506057,-0.090199 51.506142,-0.090105 51.506338,-0.089989 51.506362,-0.089980 51.506436,-0.089934 51.506464,-0.089936 51.506526)))",Cathedral church of St Saviour and St Mary Overie (Southwark Cathedral),329,POINT(-0.089626 51.506203),listed-building-outline,470761,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB180.pdf,,I,,,, +listed-building-outline,,42101949,2021-12-08,,"MULTIPOLYGON (((-0.075269 51.505840,-0.075087 51.505772,-0.075468 51.505201,-0.075507 51.505097,-0.076015 51.504377,-0.075961 51.504361,-0.076007 51.504286,-0.076063 51.504299,-0.076389 51.503814,-0.076640 51.503879,-0.076314 51.504366,-0.076366 51.504380,-0.076318 51.504456,-0.076266 51.504439,-0.075333 51.505837,-0.075269 51.505840)))",Tower Bridge (that part that lies within the Borough of Southwark),329,POINT(-0.075863 51.504820),listed-building-outline,471400,1949-12-06,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB730.pdf,,I,,,, +listed-building-outline,,42101950,2021-12-08,,"MULTIPOLYGON (((-0.092439 51.486679,-0.092381 51.486608,-0.092337 51.486621,-0.092298 51.486573,-0.092805 51.486413,-0.092882 51.486442,-0.092953 51.486533,-0.092922 51.486558,-0.092942 51.486584,-0.092684 51.486678,-0.092434 51.486743,-0.092393 51.486693,-0.092439 51.486679)))",Church of St Peter,329,POINT(-0.092645 51.486573),listed-building-outline,471066,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB445.pdf,,I,,,, +listed-building-outline,,42101951,2021-12-08,,"MULTIPOLYGON (((-0.063305 51.489373,-0.063292 51.489281,-0.063405 51.489262,-0.063406 51.489241,-0.063892 51.489244,-0.063906 51.489287,-0.063873 51.489443,-0.063814 51.489442,-0.063813 51.489417,-0.063496 51.489416,-0.063328 51.489445,-0.063305 51.489373)))",Church of St Augustine,329,POINT(-0.063603 51.489334),listed-building-outline,471091,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB474.pdf,,II*,,,, +listed-building-outline,,42101952,2021-12-08,,"MULTIPOLYGON (((-0.034006 51.504482,-0.033831 51.504504,-0.033790 51.504392,-0.033962 51.504354,-0.034006 51.504482)))",Nelson House including railings to steps,329,POINT(-0.033899 51.504433),listed-building-outline,471249,1949-12-06,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB599.pdf,,II*,,,, +listed-building-outline,,42101953,2021-12-08,,"MULTIPOLYGON (((-0.054018 51.501470,-0.054028 51.501514,-0.053816 51.501533,-0.053803 51.501475,-0.053751 51.501480,-0.053725 51.501370,-0.053769 51.501365,-0.053760 51.501324,-0.054112 51.501292,-0.054124 51.501337,-0.054203 51.501330,-0.054215 51.501383,-0.054138 51.501390,-0.054150 51.501443,-0.054018 51.501470)))",Church of St Mary Rotherhithe,329,POINT(-0.053949 51.501404),listed-building-outline,471286,1949-12-06,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB626.pdf,,II*,,,, +listed-building-outline,,42101954,2021-12-08,,"MULTIPOLYGON (((-0.066562 51.497160,-0.066487 51.496976,-0.067033 51.496888,-0.067049 51.496926,-0.067114 51.496919,-0.067155 51.497017,-0.067104 51.497025,-0.067111 51.497071,-0.066562 51.497160)))",Church of St James,329,POINT(-0.066817 51.497021),listed-building-outline,471382,1949-12-06,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB711.pdf,,II*,,,, +listed-building-outline,,42101955,2021-12-08,,"MULTIPOLYGON (((-0.087269 51.473110,-0.087206 51.473120,-0.087182 51.473171,-0.087100 51.473173,-0.087096 51.473125,-0.086919 51.473130,-0.086913 51.473167,-0.086786 51.473171,-0.086783 51.473099,-0.086753 51.473085,-0.086590 51.473098,-0.086574 51.473015,-0.086601 51.472970,-0.086686 51.472967,-0.086684 51.472930,-0.086768 51.472910,-0.086896 51.472907,-0.086914 51.472950,-0.087104 51.472945,-0.087086 51.472907,-0.087173 51.472904,-0.087189 51.472942,-0.087257 51.472940,-0.087269 51.473110)))",Church of St Gile’s,329,POINT(-0.086943 51.473033),listed-building-outline,470699,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB120.pdf,,II*,,,, +listed-building-outline,,42101956,2021-12-08,,"MULTIPOLYGON (((-0.084511 51.444618,-0.084452 51.444497,-0.084475 51.444494,-0.084450 51.444413,-0.084606 51.444394,-0.084695 51.444678,-0.084617 51.444688,-0.084600 51.444735,-0.084549 51.444742,-0.084511 51.444618)))",Bell house,329,POINT(-0.084569 51.444556),listed-building-outline,470802,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB212.pdf,,II*,,,, +listed-building-outline,,42101957,2021-12-08,,"MULTIPOLYGON (((-0.072329 51.433266,-0.072265 51.433170,-0.072283 51.433145,-0.072354 51.433183,-0.072512 51.433090,-0.072582 51.433137,-0.072329 51.433266)))",Six pillars,329,POINT(-0.072415 51.433176),listed-building-outline,470853,1981-01-16,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB246.pdf,,II*,,,, +listed-building-outline,,42101958,2021-12-08,,"MULTIPOLYGON (((-0.086135 51.445941,-0.086248 51.445926,-0.086265 51.445819,-0.086227 51.445817,-0.086239 51.445747,-0.086575 51.445768,-0.086565 51.445828,-0.086509 51.445824,-0.086490 51.445937,-0.086599 51.445968,-0.086561 51.446015,-0.086481 51.446004,-0.086461 51.446129,-0.086517 51.446132,-0.086507 51.446192,-0.086173 51.446171,-0.086237 51.445996,-0.086131 51.445968,-0.086135 51.445941)))",Dulwich Picture Gallery and mausoleum,329,POINT(-0.086366 51.445969),listed-building-outline,470946,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB321.pdf,,II*,,,, +listed-building-outline,,42101959,2021-12-08,,"MULTIPOLYGON (((-0.100585 51.452710,-0.100540 51.452540,-0.100707 51.452523,-0.100719 51.452569,-0.100856 51.452555,-0.100903 51.452719,-0.100561 51.452770,-0.100546 51.452714,-0.100585 51.452710)))",Half Moon public house,329,POINT(-0.100708 51.452647),listed-building-outline,470995,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB371.pdf,,II*,,,, +listed-building-outline,,42101960,2021-12-08,,"MULTIPOLYGON (((-0.099518 51.454949,-0.099470 51.454978,-0.099424 51.454946,-0.099354 51.454983,-0.099314 51.454951,-0.099252 51.454964,-0.099214 51.454939,-0.099244 51.454913,-0.099020 51.454763,-0.099139 51.454683,-0.099177 51.454706,-0.099215 51.454673,-0.099270 51.454684,-0.099282 51.454718,-0.099526 51.454871,-0.099479 51.454899,-0.099518 51.454949)))",Church of St Paul,329,POINT(-0.099283 51.454831),listed-building-outline,471003,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB379.pdf,,II*,,,, +listed-building-outline,,42101961,2021-12-08,,"MULTIPOLYGON (((-0.053693 51.472345,-0.053608 51.472268,-0.053503 51.471965,-0.053545 51.471958,-0.053534 51.471930,-0.053973 51.471865,-0.054133 51.472281,-0.053693 51.472345)))",Southwark adult education institute,329,POINT(-0.053813 51.472108),listed-building-outline,471282,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB622.pdf,,II*,,,, +listed-building-outline,,42101962,2021-12-08,,"MULTIPOLYGON (((-0.054543 51.503212,-0.052806 51.501709,-0.052712 51.501688,-0.052703 51.501606,-0.052781 51.501572,-0.052907 51.501589,-0.052901 51.501666,-0.054640 51.503183,-0.054543 51.503212)))",Thames Tunnel (that part which lies in London Borough of Southwark),329,POINT(-0.053623 51.502355),listed-building-outline,470692,1995-03-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB113.pdf,,II*,,,, +listed-building-outline,,42101963,2021-12-08,,"MULTIPOLYGON (((-0.081080 51.498343,-0.081039 51.498517,-0.080601 51.498474,-0.080611 51.498432,-0.080556 51.498427,-0.080571 51.498356,-0.080714 51.498370,-0.080731 51.498304,-0.080852 51.498316,-0.080859 51.498283,-0.081080 51.498343)))",Church of St Mary Magdalene,329,POINT(-0.080844 51.498407),listed-building-outline,470571,1949-12-06,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB43.pdf,,II*,,,, +listed-building-outline,,42101964,2021-12-08,,"MULTIPOLYGON (((-0.092365 51.501301,-0.092449 51.501152,-0.092940 51.501275,-0.092842 51.501424,-0.092365 51.501301)))",Church of St George the Martyr,329,POINT(-0.092650 51.501288),listed-building-outline,470665,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB88.pdf,,II*,,,, +listed-building-outline,,42101965,2021-12-08,,"MULTIPOLYGON (((-0.091149 51.506859,-0.091168 51.506863,-0.091110 51.506940,-0.091149 51.506859)))",Remains of Winchester Palace,329,POINT(-0.091142 51.506887),listed-building-outline,470785,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB199.pdf,,II*,,,, +listed-building-outline,,42101966,2021-12-08,,"MULTIPOLYGON (((-0.101842 51.506887,-0.101835 51.506782,-0.101899 51.506780,-0.101904 51.506843,-0.102136 51.506836,-0.102184 51.506809,-0.102182 51.506773,-0.102244 51.506771,-0.102252 51.506873,-0.101842 51.506887)),((-0.101720 51.506788,-0.101800 51.506786,-0.101805 51.506831,-0.101500 51.506836,-0.101497 51.506796,-0.101720 51.506788)))","Hoptons almshouses, Hopton Gardens",329,POINT(-0.101913 51.506832),listed-building-outline,471025,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB401.pdf,,II*,,,, +listed-building-outline,,42101967,2021-12-08,,"MULTIPOLYGON (((-0.101484 51.506623,-0.101555 51.506621,-0.101566 51.506788,-0.101494 51.506790,-0.101484 51.506623)))",Hoptons almshouses Hopton Gardens,329,POINT(-0.101525 51.506706),listed-building-outline,471026,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB402.pdf,,II*,,,, +listed-building-outline,,42101968,2021-12-08,,"MULTIPOLYGON (((-0.101813 51.506535,-0.101812 51.506501,-0.102229 51.506490,-0.102238 51.506459,-0.102338 51.506486,-0.102343 51.506531,-0.102231 51.506534,-0.102235 51.506596,-0.102165 51.506597,-0.102161 51.506533,-0.101878 51.506540,-0.101882 51.506604,-0.101817 51.506606,-0.101813 51.506535)),((-0.101762 51.506565,-0.101789 51.506565,-0.101791 51.506607,-0.101482 51.506614,-0.101480 51.506571,-0.101762 51.506565)))","Hoptons almshouses, Hopton Gardens",329,POINT(-0.101949 51.506545),listed-building-outline,471027,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB403.pdf,,II*,,,, +listed-building-outline,,42101969,2021-12-08,,"MULTIPOLYGON (((-0.087353 51.499607,-0.087166 51.499748,-0.086847 51.499605,-0.087062 51.499411,-0.087172 51.499459,-0.087047 51.499573,-0.087210 51.499612,-0.087305 51.499527,-0.087398 51.499567,-0.087353 51.499607)))",Number 142 and attached railings,329,POINT(-0.087103 51.499593),listed-building-outline,471070,1949-12-06,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB453.pdf,,II*,,,, +listed-building-outline,,42101970,2021-12-08,,"MULTIPOLYGON (((-0.087905 51.504982,-0.088006 51.504848,-0.088188 51.504902,-0.088075 51.505052,-0.087905 51.504982)))",Mary Sheridan House (part) and area railings,329,POINT(-0.088045 51.504947),listed-building-outline,471293,1949-12-06,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB634.pdf,,II*,,,, +listed-building-outline,,42101971,2021-12-08,,"MULTIPOLYGON (((-0.088021 51.504539,-0.088309 51.504221,-0.087826 51.504051,-0.087541 51.504373,-0.087342 51.504304,-0.087905 51.503663,-0.087972 51.503685,-0.088006 51.503649,-0.088836 51.503934,-0.088628 51.504234,-0.088570 51.504229,-0.088313 51.504515,-0.088270 51.504500,-0.088250 51.504522,-0.088292 51.504538,-0.088222 51.504613,-0.088021 51.504539),(-0.088649 51.504000,-0.088347 51.503897,-0.088201 51.504062,-0.088503 51.504165,-0.088649 51.504000),(-0.088104 51.504030,-0.088248 51.503864,-0.087950 51.503761,-0.087806 51.503927,-0.088104 51.504030),(-0.088469 51.504231,-0.088428 51.504216,-0.088404 51.504241,-0.088446 51.504256,-0.088469 51.504231)))",Guys Hospital main building including wings and chapel,329,POINT(-0.088129 51.504086),listed-building-outline,471296,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB637.pdf,,II*,,,, +listed-building-outline,,42101972,2021-12-08,,"MULTIPOLYGON (((-0.086236 51.506544,-0.086183 51.506520,-0.086221 51.506451,-0.086199 51.506448,-0.086209 51.506403,-0.086340 51.506417,-0.086409 51.506253,-0.086357 51.506236,-0.086396 51.506188,-0.086678 51.506278,-0.086639 51.506327,-0.086595 51.506313,-0.086525 51.506439,-0.086672 51.506458,-0.086581 51.506581,-0.086236 51.506544)))",St Olaf House,329,POINT(-0.086446 51.506415),listed-building-outline,471397,1971-05-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB727.pdf,,II*,,,, +listed-building-outline,,42101973,2021-12-08,,"MULTIPOLYGON (((-0.088188 51.504902,-0.088346 51.504948,-0.088430 51.504973,-0.088339 51.505095,-0.088097 51.505023,-0.088188 51.504902)))",Number 9 and attached railings,329,POINT(-0.088264 51.504998),listed-building-outline,471291,1949-12-06,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB631.pdf,,II*,,,, +listed-building-outline,,42101974,2021-12-08,,"MULTIPOLYGON (((-0.088704 51.505011,-0.088582 51.505150,-0.088346 51.505085,-0.088433 51.504969,-0.088606 51.505020,-0.088628 51.504990,-0.088704 51.505011)))",,329,POINT(-0.088520 51.505057),listed-building-outline,471292,1949-12-06,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB632.pdf,,II*,,,, +listed-building-outline,,42101975,2021-12-08,,"MULTIPOLYGON (((-0.104753 51.498712,-0.104757 51.498679,-0.104807 51.498681,-0.104803 51.498714,-0.104753 51.498712)))",Obelisk at the centre of St George’s Circus,329,POINT(-0.104780 51.498697),listed-building-outline,471046,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB429.pdf,,II*,,,, +listed-building-outline,,42101976,2021-12-08,,"MULTIPOLYGON (((-0.079024 51.496515,-0.078924 51.496627,-0.078870 51.496601,-0.078906 51.496564,-0.078831 51.496550,-0.078897 51.496469,-0.079024 51.496515)))",,329,POINT(-0.078926 51.496541),listed-building-outline,470977,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB352.pdf,,II*,,,, +listed-building-outline,,42101977,2021-12-08,,"MULTIPOLYGON (((-0.085457 51.440844,-0.084949 51.440948,-0.084860 51.440783,-0.085047 51.440766,-0.084972 51.440597,-0.084895 51.440476,-0.084816 51.440496,-0.084802 51.440473,-0.084670 51.440210,-0.084741 51.440188,-0.084665 51.440029,-0.084589 51.440021,-0.084545 51.439938,-0.084421 51.439963,-0.084335 51.439801,-0.084851 51.439694,-0.084933 51.439850,-0.084724 51.439892,-0.084868 51.440162,-0.085342 51.440084,-0.085482 51.440348,-0.085050 51.440446,-0.085037 51.440481,-0.085175 51.440741,-0.085380 51.440684,-0.085457 51.440844)))","Dulwich College, main building",329,POINT(-0.084967 51.440298),listed-building-outline,470815,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB215.pdf,,II*,,,, +listed-building-outline,,42101978,2021-12-08,,"MULTIPOLYGON (((-0.101678 51.506044,-0.101382 51.505961,-0.101436 51.505885,-0.101757 51.505938,-0.101678 51.506044)))",Kirkaldy Testing Works and Testing Machine,329,POINT(-0.101572 51.505959),listed-building-outline,1385928,1971-05-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB682.pdf,,II*,,,, +listed-building-outline,,42101979,2021-12-08,,"MULTIPOLYGON (((-0.071891 51.500137,-0.071670 51.500137,-0.071652 51.500094,-0.071591 51.500094,-0.071567 51.499946,-0.071733 51.499935,-0.071896 51.499981,-0.072232 51.499996,-0.072233 51.500106,-0.071926 51.500107,-0.071891 51.500137)))",Roman Catholic Church of the Most Holy Trinity,329,POINT(-0.071873 51.500042),listed-building-outline,1376609,2015-04-27,geography,,,II*,,,, +listed-building-outline,,42101980,2021-12-08,,"MULTIPOLYGON (((-0.090844 51.503537,-0.090878 51.503502,-0.090950 51.503529,-0.090967 51.503510,-0.091294 51.503603,-0.091227 51.503690,-0.090844 51.503537)))",,329,POINT(-0.091088 51.503589),listed-building-outline,470662,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB86.pdf,,II,,,, +listed-building-outline,,42101981,2021-12-08,,"MULTIPOLYGON (((-0.091493 51.503037,-0.091687 51.503096,-0.091646 51.503132,-0.091331 51.503043,-0.091370 51.502992,-0.091493 51.503037)))",,329,POINT(-0.091501 51.503064),listed-building-outline,470663,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB86.pdf,,II,,,, +listed-building-outline,,42101982,2021-12-08,,"MULTIPOLYGON (((-0.092092 51.502546,-0.091758 51.502462,-0.091736 51.502497,-0.091608 51.502464,-0.091655 51.502391,-0.092114 51.502504,-0.092092 51.502546)))",,329,POINT(-0.091837 51.502467),listed-building-outline,470664,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB87.pdf,,II,,,, +listed-building-outline,,42101983,2021-12-08,,"MULTIPOLYGON (((-0.090919 51.504265,-0.090931 51.504245,-0.090948 51.504249,-0.090935 51.504270,-0.090919 51.504265)))",The St Saviours Southwark war memorial,329,POINT(-0.090933 51.504257),listed-building-outline,470667,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB90.pdf,,II,,,, +listed-building-outline,,42101984,2021-12-08,,"MULTIPOLYGON (((-0.103663 51.499053,-0.103405 51.499084,-0.103397 51.499045,-0.103355 51.499048,-0.103338 51.498961,-0.103685 51.498935,-0.103702 51.499023,-0.103658 51.499026,-0.103663 51.499053)))",St George the Martyr library,329,POINT(-0.103521 51.499005),listed-building-outline,470670,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB95.pdf,,II,,,, +listed-building-outline,,42101985,2021-12-08,,"MULTIPOLYGON (((-0.099621 51.499324,-0.099550 51.499327,-0.099545 51.499204,-0.099683 51.499194,-0.099706 51.499209,-0.099677 51.499322,-0.099621 51.499324)))",Goose and Firkin public house,329,POINT(-0.099620 51.499259),listed-building-outline,470671,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB96.pdf,,II,,,, +listed-building-outline,,42101986,2021-12-08,,"MULTIPOLYGON (((-0.098767 51.499261,-0.099545 51.499204,-0.099552 51.499354,-0.098720 51.499414,-0.098693 51.499266,-0.098767 51.499261)))",Hanover House,329,POINT(-0.099128 51.499309),listed-building-outline,470672,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB97.pdf,,II,,,, +listed-building-outline,,42101987,2021-12-08,,"MULTIPOLYGON (((-0.098613 51.499271,-0.098627 51.499342,-0.098525 51.499384,-0.098507 51.499279,-0.098613 51.499271)))",,329,POINT(-0.098565 51.499320),listed-building-outline,470673,1994-05-16,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB98.pdf,,II,,,, +listed-building-outline,,42101988,2021-12-08,,"MULTIPOLYGON (((-0.103446 51.498661,-0.103322 51.498671,-0.103169 51.498544,-0.103324 51.498469,-0.103521 51.498656,-0.103446 51.498661)))",,329,POINT(-0.103338 51.498582),listed-building-outline,470674,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB99.pdf,,II,,,, +listed-building-outline,,42101989,2021-12-08,,"MULTIPOLYGON (((-0.103804 51.498580,-0.103781 51.498504,-0.103855 51.498497,-0.103875 51.498574,-0.104142 51.498553,-0.104167 51.498614,-0.103683 51.498656,-0.103635 51.498593,-0.103804 51.498580)))",,329,POINT(-0.103893 51.498594),listed-building-outline,488388,2000-06-14,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB100.pdf,,II,,,, +listed-building-outline,,42101990,2021-12-08,,"MULTIPOLYGON (((-0.102803 51.500607,-0.102703 51.500646,-0.102239 51.500194,-0.102342 51.500153,-0.102803 51.500607)))","Albury House, Boyfield Street estate",329,POINT(-0.102520 51.500399),listed-building-outline,470675,1977-09-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB101.pdf,,II,,,, +listed-building-outline,,42101991,2021-12-08,,"MULTIPOLYGON (((-0.102363 51.500655,-0.102183 51.500496,-0.101987 51.500292,-0.102089 51.500251,-0.102468 51.500612,-0.102363 51.500655)))","Clandon House, Boyfield Street estate",329,POINT(-0.102225 51.500455),listed-building-outline,470676,1977-09-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB102.pdf,,II,,,, +listed-building-outline,,42101992,2021-12-08,,"MULTIPOLYGON (((-0.091289 51.507157,-0.091345 51.507031,-0.091693 51.507091,-0.091641 51.507220,-0.091289 51.507157)))",Winchester Wharf,329,POINT(-0.091492 51.507125),listed-building-outline,470803,1998-10-05,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB200.pdf,,II,,,, +listed-building-outline,,42101993,2021-12-08,,"MULTIPOLYGON (((-0.089326 51.501549,-0.089316 51.501570,-0.088968 51.501502,-0.089011 51.501407,-0.089214 51.501463,-0.089221 51.501514,-0.089326 51.501549)))",,329,POINT(-0.089121 51.501489),listed-building-outline,491612,2004-02-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB248.pdf,,II,,,, +listed-building-outline,,42101994,2021-12-08,,"MULTIPOLYGON (((-0.102991 51.504861,-0.103002 51.504962,-0.102785 51.504971,-0.102764 51.504870,-0.102991 51.504861)))",Rochester House,329,POINT(-0.102885 51.504916),listed-building-outline,470864,1971-05-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB259.pdf,,II,,,, +listed-building-outline,,42101995,2021-12-08,,"MULTIPOLYGON (((-0.081886 51.499985,-0.081917 51.500051,-0.081793 51.500077,-0.081936 51.500091,-0.081960 51.500146,-0.081724 51.500184,-0.081656 51.500026,-0.081886 51.499985)))",,329,POINT(-0.081802 51.500086),listed-building-outline,470566,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB39.pdf,,II,,,, +listed-building-outline,,42101996,2021-12-08,,"MULTIPOLYGON (((-0.081818 51.499965,-0.081656 51.500026,-0.081638 51.499984,-0.081781 51.499972,-0.081818 51.499965)))",,329,POINT(-0.081701 51.499993),listed-building-outline,470567,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB39.pdf,,II,,,, +listed-building-outline,,42101997,2021-12-08,,"MULTIPOLYGON (((-0.081124 51.499084,-0.080799 51.499107,-0.080753 51.498947,-0.081048 51.498932,-0.081124 51.499084)))",,329,POINT(-0.080931 51.499019),listed-building-outline,470568,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB40.pdf,,II,,,, +listed-building-outline,,42101998,2021-12-08,,"MULTIPOLYGON (((-0.080944 51.498607,-0.081004 51.498612,-0.080998 51.498679,-0.080598 51.498654,-0.080609 51.498599,-0.080944 51.498607),(-0.080835 51.498622,-0.080833 51.498639,-0.080890 51.498643,-0.080892 51.498626,-0.080835 51.498622)))",,329,POINT(-0.080807 51.498636),listed-building-outline,470569,1988-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB41.pdf,,II,,,, +listed-building-outline,,42101999,2021-12-08,,"MULTIPOLYGON (((-0.080944 51.498607,-0.080813 51.498599,-0.080825 51.498545,-0.080772 51.498512,-0.080966 51.498510,-0.080944 51.498607)))",,329,POINT(-0.080884 51.498554),listed-building-outline,470570,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB42.pdf,,II,,,, +listed-building-outline,,42102000,2021-12-08,,"MULTIPOLYGON (((-0.080184 51.498050,-0.080202 51.498054,-0.080192 51.498068,-0.080177 51.498063,-0.080184 51.498050)))","Drinking fountain, approximately 45 metres south south east of church of St Mary Magdalene",329,POINT(-0.080189 51.498059),listed-building-outline,470579,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB45.pdf,,II,,,, +listed-building-outline,,42102001,2021-12-08,,"MULTIPOLYGON (((-0.081284 51.498023,-0.081231 51.498028,-0.081245 51.497969,-0.081300 51.497967,-0.081284 51.498023)))",Watch House in St Mary’s Churchyard (recreation ground),329,POINT(-0.081265 51.497997),listed-building-outline,470585,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB48.pdf,,II,,,, +listed-building-outline,,42102002,2021-12-08,,"MULTIPOLYGON (((-0.105044 51.503412,-0.105049 51.503328,-0.105095 51.503329,-0.105094 51.503371,-0.105120 51.503370,-0.105150 51.503329,-0.105399 51.503317,-0.105437 51.503383,-0.104806 51.503520,-0.104810 51.503435,-0.105044 51.503412)))",,329,POINT(-0.105124 51.503405),listed-building-outline,470594,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB57.pdf,,II,,,, +listed-building-outline,,42102003,2021-12-08,,"MULTIPOLYGON (((-0.104810 51.503435,-0.104819 51.503204,-0.105052 51.503207,-0.105051 51.503232,-0.104966 51.503230,-0.104964 51.503265,-0.105051 51.503266,-0.105049 51.503294,-0.104963 51.503293,-0.104962 51.503327,-0.105049 51.503328,-0.105048 51.503352,-0.104963 51.503351,-0.104961 51.503384,-0.105047 51.503381,-0.105044 51.503412,-0.104810 51.503435)))",Numbers 75-78 and attached railings,329,POINT(-0.104914 51.503316),listed-building-outline,470596,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB58.pdf,,II,,,, +listed-building-outline,,42102004,2021-12-08,,"MULTIPOLYGON (((-0.104826 51.503022,-0.104830 51.502899,-0.105333 51.502907,-0.105330 51.502970,-0.104976 51.502963,-0.104973 51.503025,-0.105063 51.503026,-0.105059 51.503086,-0.104823 51.503082,-0.104826 51.503022)))","Numbers 81, 82 and 83 and attached railings",329,POINT(-0.105015 51.502975),listed-building-outline,470597,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB59.pdf,,II,,,, +listed-building-outline,,42102005,2021-12-08,,"MULTIPOLYGON (((-0.104832 51.502842,-0.104837 51.502721,-0.105335 51.502727,-0.105333 51.502788,-0.104986 51.502783,-0.104985 51.502826,-0.105074 51.502822,-0.105073 51.502845,-0.104832 51.502842)))",Numbers 85 and 86 including railings,329,POINT(-0.105044 51.502771),listed-building-outline,470598,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB60.pdf,,II,,,, +listed-building-outline,,42102006,2021-12-08,,"MULTIPOLYGON (((-0.105697 51.506155,-0.105707 51.506154,-0.105711 51.506165,-0.105696 51.506166,-0.105697 51.506155)))",Christ Church Gardens drinking fountain,329,POINT(-0.105703 51.506160),listed-building-outline,470599,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB61.pdf,,II,,,, +listed-building-outline,,42102007,2021-12-08,,"MULTIPOLYGON (((-0.106507 51.499804,-0.106431 51.499771,-0.105837 51.499427,-0.105926 51.499366,-0.106596 51.499742,-0.106507 51.499804)),((-0.104929 51.500473,-0.104944 51.500066,-0.105074 51.500069,-0.105058 51.500475,-0.104929 51.500473)),((-0.105036 51.500047,-0.104945 51.500040,-0.104948 51.499956,-0.105547 51.499959,-0.105545 51.500042,-0.105036 51.500047)),((-0.105023 51.500503,-0.105533 51.500506,-0.105530 51.500588,-0.104924 51.500583,-0.104928 51.500501,-0.105023 51.500503)),((-0.105505 51.499785,-0.105405 51.499730,-0.105807 51.499449,-0.105905 51.499503,-0.105505 51.499785)),((-0.106042 51.500004,-0.106379 51.499773,-0.106478 51.499827,-0.106086 51.500106,-0.105988 51.500052,-0.106042 51.500004)),((-0.105757 51.500051,-0.105714 51.500028,-0.105763 51.499992,-0.105825 51.500003,-0.106054 51.500129,-0.105970 51.500190,-0.105739 51.500064,-0.105757 51.500051)),((-0.104910 51.500918,-0.104917 51.500726,-0.105049 51.500729,-0.105043 51.500921,-0.104910 51.500918)),((-0.104919 51.500697,-0.104923 51.500614,-0.105226 51.500620,-0.105223 51.500702,-0.104919 51.500697)),((-0.105569 51.500470,-0.105577 51.500278,-0.105705 51.500280,-0.105699 51.500468,-0.105569 51.500470)),((-0.105302 51.499802,-0.105377 51.499751,-0.105600 51.499877,-0.105512 51.499938,-0.105302 51.499802)),((-0.105578 51.500251,-0.105586 51.500062,-0.105716 51.500065,-0.105706 51.500254,-0.105578 51.500251)),((-0.105919 51.500298,-0.105860 51.500265,-0.105821 51.500290,-0.105794 51.500275,-0.105828 51.500247,-0.105770 51.500215,-0.105829 51.500173,-0.105979 51.500256,-0.105919 51.500298)))",Peabody Estate,329,POINT(-0.105590 51.500080),listed-building-outline,470600,1996-11-21,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB62.pdf,,II,,,, +listed-building-outline,,42102008,2021-12-08,,"MULTIPOLYGON (((-0.088804 51.506914,-0.088378 51.506864,-0.088509 51.506513,-0.089127 51.506620,-0.089020 51.506919,-0.088812 51.506889,-0.088804 51.506914)))",Hibernia Chambers,329,POINT(-0.088748 51.506729),listed-building-outline,470639,1970-04-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB65.pdf,,II,,,, +listed-building-outline,,42102009,2021-12-08,,"MULTIPOLYGON (((-0.088864 51.506429,-0.088855 51.506446,-0.088522 51.506389,-0.088560 51.506294,-0.088746 51.506325,-0.088758 51.506299,-0.088808 51.506307,-0.088851 51.506224,-0.088950 51.506271,-0.088864 51.506429)))",Bridge House,329,POINT(-0.088753 51.506350),listed-building-outline,470640,1971-05-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB66.pdf,,II,,,, +listed-building-outline,,42102010,2021-12-08,,"MULTIPOLYGON (((-0.088746 51.506325,-0.088560 51.506294,-0.088704 51.506103,-0.088923 51.506151,-0.088808 51.506307,-0.088758 51.506299,-0.088746 51.506325)))",,329,POINT(-0.088742 51.506217),listed-building-outline,470641,1971-05-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB67.pdf,,II,,,, +listed-building-outline,,42102011,2021-12-08,,"MULTIPOLYGON (((-0.072331 51.498106,-0.071683 51.498204,-0.071640 51.498099,-0.072089 51.497991,-0.072331 51.498106)),((-0.071586 51.498221,-0.071506 51.498234,-0.071458 51.498127,-0.071541 51.498113,-0.071586 51.498221)))",Neckinger Mills,329,POINT(-0.071907 51.498108),listed-building-outline,508020,2010-08-10,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/Listed%20Buildings/LBS_Neckinger_Mills.pdf,,II,,,, +listed-building-outline,,42102012,2021-12-08,,"MULTIPOLYGON (((-0.088936 51.505216,-0.089088 51.505271,-0.088986 51.505360,-0.088475 51.505137,-0.088582 51.505150,-0.088645 51.505086,-0.088903 51.505170,-0.088879 51.505190,-0.088936 51.505216)))",Post office,329,POINT(-0.088812 51.505218),listed-building-outline,470643,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB69.pdf,,II,,,, +listed-building-outline,,42102013,2021-12-08,,"MULTIPOLYGON (((-0.095088 51.503199,-0.095106 51.503170,-0.095235 51.503205,-0.095146 51.503377,-0.095009 51.503343,-0.095088 51.503199)))",Whitecross Cottages,329,POINT(-0.095123 51.503274),listed-building-outline,470547,1973-10-08,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB24.pdf,,II,,,, +listed-building-outline,,42102014,2021-12-08,,"MULTIPOLYGON (((-0.094933 51.503040,-0.095272 51.503131,-0.095235 51.503205,-0.094886 51.503112,-0.094933 51.503040)))",Bishops Hall,329,POINT(-0.095081 51.503122),listed-building-outline,470548,1973-10-08,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB25.pdf,,II,,,, +listed-building-outline,,42102015,2021-12-08,,"MULTIPOLYGON (((-0.093144 51.507263,-0.093161 51.507244,-0.093124 51.507247,-0.093004 51.507376,-0.092818 51.507309,-0.092848 51.507147,-0.093139 51.507218,-0.093181 51.507170,-0.093207 51.507178,-0.093192 51.507198,-0.093317 51.507237,-0.093260 51.507304,-0.093144 51.507263)))",Anchor public House,329,POINT(-0.093016 51.507255),listed-building-outline,470549,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB26.pdf,,II,,,, +listed-building-outline,,42102016,2021-12-08,,"MULTIPOLYGON (((-0.097649 51.508253,-0.097611 51.508121,-0.097674 51.508116,-0.097734 51.508247,-0.097649 51.508253)))","Cardinals Wharf, and railings at door",329,POINT(-0.097668 51.508187),listed-building-outline,470551,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB28.pdf,,II,,,, +listed-building-outline,,42102017,2021-12-08,,"MULTIPOLYGON (((-0.097840 51.508142,-0.097900 51.508134,-0.097939 51.508223,-0.097734 51.508247,-0.097707 51.508160,-0.097840 51.508142)))",,329,POINT(-0.097821 51.508191),listed-building-outline,470552,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB29.pdf,,II,,,, +listed-building-outline,,42102018,2021-12-08,,"MULTIPOLYGON (((-0.089862 51.505534,-0.089834 51.505496,-0.089912 51.505443,-0.090048 51.505500,-0.089862 51.505534)))",The Globe public house,329,POINT(-0.089925 51.505492),listed-building-outline,470556,1998-01-08,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB33.pdf,,II,,,, +listed-building-outline,,42102019,2021-12-08,,"MULTIPOLYGON (((-0.082209 51.501815,-0.082238 51.501884,-0.082061 51.501911,-0.082025 51.501835,-0.082209 51.501815)))",,329,POINT(-0.082132 51.501861),listed-building-outline,470560,1996-05-31,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB36.pdf,,II,,,, +listed-building-outline,,42102020,2021-12-08,,"MULTIPOLYGON (((-0.081745 51.501795,-0.081812 51.501650,-0.081915 51.501643,-0.081958 51.501773,-0.082044 51.501746,-0.082032 51.501710,-0.082162 51.501693,-0.082198 51.501772,-0.081745 51.501795)),((-0.081991 51.501601,-0.082117 51.501581,-0.082147 51.501661,-0.082021 51.501679,-0.081991 51.501601)))","Numbers 59, 61 and 63 and attached railings",329,POINT(-0.081972 51.501709),listed-building-outline,470561,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB37.pdf,,II,,,, +listed-building-outline,,42102021,2021-12-08,,"MULTIPOLYGON (((-0.082261 51.501574,-0.082169 51.501340,-0.082437 51.501325,-0.082463 51.501384,-0.082365 51.501400,-0.082389 51.501453,-0.082324 51.501457,-0.082356 51.501543,-0.082395 51.501518,-0.082408 51.501552,-0.082261 51.501574)))",,329,POINT(-0.082304 51.501428),listed-building-outline,470562,1970-04-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB38.pdf,,II,,,, +listed-building-outline,,42102022,2021-12-08,,"MULTIPOLYGON (((-0.082307 51.501314,-0.082169 51.501340,-0.082134 51.501275,-0.082374 51.501247,-0.082395 51.501299,-0.082307 51.501314)))",,329,POINT(-0.082263 51.501291),listed-building-outline,470563,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB38.pdf,,II,,,, +listed-building-outline,,42102023,2021-12-08,,"MULTIPOLYGON (((-0.091445 51.504266,-0.091486 51.504174,-0.091634 51.504198,-0.091598 51.504291,-0.091445 51.504266)),((-0.091110 51.504225,-0.091125 51.504205,-0.091231 51.504234,-0.091195 51.504286,-0.091086 51.504260,-0.091110 51.504225)))",,329,POINT(-0.091421 51.504237),listed-building-outline,470648,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB74.pdf,,II,,,, +listed-building-outline,,42102024,2021-12-08,,"MULTIPOLYGON (((-0.091261 51.504311,-0.091195 51.504286,-0.091219 51.504251,-0.091471 51.504310,-0.091447 51.504359,-0.091261 51.504311)))",Calverts Buildings (attached to rear of number 50),329,POINT(-0.091337 51.504304),listed-building-outline,470649,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB74.pdf,,II,,,, +listed-building-outline,,42102025,2021-12-08,,"MULTIPOLYGON (((-0.089927 51.504735,-0.089726 51.504666,-0.089760 51.504631,-0.089965 51.504707,-0.089927 51.504735)))",,329,POINT(-0.089843 51.504684),listed-building-outline,470651,1974-06-10,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB76.pdf,,II,,,, +listed-building-outline,,42102026,2021-12-08,,"MULTIPOLYGON (((-0.089997 51.504682,-0.089965 51.504707,-0.089790 51.504640,-0.089819 51.504614,-0.089997 51.504682)))",,329,POINT(-0.089893 51.504661),listed-building-outline,470652,1975-12-03,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB77.pdf,,II,,,, +listed-building-outline,,42102027,2021-12-08,,"MULTIPOLYGON (((-0.091436 51.504053,-0.091564 51.504078,-0.091510 51.504178,-0.091171 51.504121,-0.091199 51.504088,-0.091406 51.504101,-0.091436 51.504053)))",,329,POINT(-0.091401 51.504117),listed-building-outline,470653,1972-05-15,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB77.pdf,,II,,,, +listed-building-outline,,42102028,2021-12-08,,"MULTIPOLYGON (((-0.091479 51.503901,-0.091512 51.503908,-0.091456 51.503971,-0.091288 51.503932,-0.091354 51.503847,-0.091479 51.503901)))",,329,POINT(-0.091398 51.503914),listed-building-outline,470654,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB78.pdf,,II,,,, +listed-building-outline,,42102029,2021-12-08,,"MULTIPOLYGON (((-0.090233 51.504507,-0.090204 51.504528,-0.090072 51.504489,-0.090102 51.504462,-0.090233 51.504507)))",,329,POINT(-0.090151 51.504496),listed-building-outline,470655,1971-05-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB79.pdf,,II,,,, +listed-building-outline,,42102030,2021-12-08,,"MULTIPOLYGON (((-0.091909 51.503848,-0.091935 51.503792,-0.092037 51.503760,-0.092813 51.503901,-0.092704 51.504063,-0.092584 51.504035,-0.092563 51.503998,-0.091909 51.503848)))","Kent House, Maidstone Buildings",329,POINT(-0.092390 51.503894),listed-building-outline,473199,1999-03-18,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB80.pdf,,II,,,, +listed-building-outline,,42102031,2021-12-08,,"MULTIPOLYGON (((-0.090626 51.504131,-0.090707 51.504181,-0.090663 51.504209,-0.090582 51.504159,-0.090626 51.504131)))",,329,POINT(-0.090644 51.504170),listed-building-outline,470657,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB82.pdf,,II,,,, +listed-building-outline,,42102032,2021-12-08,,"MULTIPOLYGON (((-0.090707 51.504181,-0.090626 51.504131,-0.090716 51.504076,-0.090794 51.504126,-0.090707 51.504181)))",,329,POINT(-0.090710 51.504129),listed-building-outline,470658,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB83.pdf,,II,,,, +listed-building-outline,,42102033,2021-12-08,,"MULTIPOLYGON (((-0.090849 51.503932,-0.090807 51.503973,-0.090936 51.504026,-0.090877 51.504075,-0.090682 51.503980,-0.090770 51.503899,-0.090849 51.503932)))",,329,POINT(-0.090804 51.503989),listed-building-outline,470659,1972-05-15,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB84.pdf,,II,,,, +listed-building-outline,,42102034,2021-12-08,,"MULTIPOLYGON (((-0.090936 51.504026,-0.090807 51.503973,-0.090849 51.503932,-0.090978 51.503985,-0.090936 51.504026)))",,329,POINT(-0.090892 51.503979),listed-building-outline,470660,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB84.pdf,,II,,,, +listed-building-outline,,42102035,2021-12-08,,"MULTIPOLYGON (((-0.091209 51.503713,-0.091163 51.503775,-0.091011 51.503702,-0.090868 51.503677,-0.090898 51.503642,-0.090760 51.503595,-0.090789 51.503563,-0.091209 51.503713)))",The Grapes Public House,329,POINT(-0.090999 51.503671),listed-building-outline,470661,1971-05-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB85.pdf,,II,,,, +listed-building-outline,,42102036,2021-12-08,,"MULTIPOLYGON (((-0.090495 51.504557,-0.090586 51.504595,-0.090717 51.504643,-0.090412 51.504718,-0.090348 51.504705,-0.090342 51.504675,-0.090495 51.504557)))",,329,POINT(-0.090504 51.504644),listed-building-outline,470644,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB70.pdf,,II,,,, +listed-building-outline,,42102037,2021-12-08,,"MULTIPOLYGON (((-0.090779 51.504552,-0.090584 51.504489,-0.090800 51.504325,-0.090922 51.504358,-0.090779 51.504552)))",,329,POINT(-0.090764 51.504439),listed-building-outline,470645,1989-07-26,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB71.pdf,,II,,,, +listed-building-outline,,42102038,2021-12-08,,"MULTIPOLYGON (((-0.091030 51.504548,-0.090913 51.504517,-0.090966 51.504437,-0.091095 51.504470,-0.091030 51.504548)))",,329,POINT(-0.091002 51.504492),listed-building-outline,470646,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB72.pdf,,II,,,, +listed-building-outline,,42102039,2021-12-08,,"MULTIPOLYGON (((-0.090994 51.504396,-0.091122 51.504431,-0.091095 51.504470,-0.090966 51.504437,-0.090994 51.504396)))",,329,POINT(-0.091044 51.504433),listed-building-outline,470647,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB73.pdf,,II,,,, +listed-building-outline,,42102040,2021-12-08,,"MULTIPOLYGON (((-0.084721 51.499621,-0.084734 51.499591,-0.084804 51.499581,-0.085029 51.499619,-0.084987 51.499711,-0.084766 51.499674,-0.084740 51.499732,-0.084453 51.499683,-0.084496 51.499584,-0.084721 51.499621)))","Units 7 and 8, Bermondsey Leather Market",329,POINT(-0.084736 51.499651),listed-building-outline,508052,2010-10-08,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/Listed%20Buildings/LBS_7_8_Weston_St.pdf,,II,,,, +listed-building-outline,,42102041,2021-12-08,,"MULTIPOLYGON (((-0.086312 51.506063,-0.086222 51.506121,-0.086140 51.506118,-0.086286 51.506005,-0.086347 51.506037,-0.086312 51.506063)))",Denmark House,329,POINT(-0.086250 51.506068),listed-building-outline,471383,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB712.pdf,,II,,,, +listed-building-outline,,42102042,2021-12-08,,"MULTIPOLYGON (((-0.086090 51.506090,-0.086068 51.506078,-0.086101 51.506055,-0.086058 51.506032,-0.086020 51.506058,-0.085918 51.506019,-0.086037 51.505875,-0.086286 51.506005,-0.086140 51.506118,-0.086090 51.506090)))",London Bridge hospital (part),329,POINT(-0.086098 51.505998),listed-building-outline,471384,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB713.pdf,,II,,,, +listed-building-outline,,42102043,2021-12-08,,"MULTIPOLYGON (((-0.085550 51.506477,-0.085530 51.506179,-0.085703 51.506176,-0.085718 51.506246,-0.086009 51.506248,-0.086010 51.506226,-0.086093 51.506231,-0.086133 51.506166,-0.086259 51.506180,-0.086199 51.506448,-0.086221 51.506451,-0.086182 51.506517,-0.085550 51.506517,-0.085550 51.506477)))","London Bridge hospital, the riverside block behind Tooley Street",329,POINT(-0.085881 51.506360),listed-building-outline,471385,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB714.pdf,,II,,,, +listed-building-outline,,42102044,2021-12-08,,"MULTIPOLYGON (((-0.085660 51.505777,-0.085683 51.505744,-0.085935 51.505849,-0.085817 51.505979,-0.085570 51.505907,-0.085660 51.505777)))",,329,POINT(-0.085749 51.505867),listed-building-outline,471386,1971-05-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB715.pdf,,II,,,, +listed-building-outline,,42102045,2021-12-08,,"MULTIPOLYGON (((-0.084866 51.505486,-0.084922 51.505441,-0.085160 51.505535,-0.084927 51.505723,-0.084707 51.505617,-0.084866 51.505486)))",,329,POINT(-0.084930 51.505579),listed-building-outline,471387,1971-05-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB716.pdf,,II,,,, +listed-building-outline,,42102046,2021-12-08,,"MULTIPOLYGON (((-0.078088 51.502907,-0.078114 51.502882,-0.078161 51.502902,-0.078137 51.502927,-0.078088 51.502907)))",Statue on island site in front of south London college and railings,329,POINT(-0.078125 51.502905),listed-building-outline,471396,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB726.pdf,,II,,,, +listed-building-outline,,42102047,2021-12-08,,"MULTIPOLYGON (((-0.082968 51.496310,-0.082943 51.496355,-0.082775 51.496297,-0.082814 51.496255,-0.082968 51.496310)))","Manzes eel, pie and mash shop",329,POINT(-0.082874 51.496304),listed-building-outline,471398,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB728.pdf,,II,,,, +listed-building-outline,,42102048,2021-12-08,,"MULTIPOLYGON (((-0.076809 51.503832,-0.076736 51.503904,-0.076641 51.503878,-0.076719 51.503761,-0.076834 51.503792,-0.076809 51.503832)))",Tower Bridge Bridgemasters House (Bridge House estate) and gate to side,329,POINT(-0.076736 51.503832),listed-building-outline,471401,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB731.pdf,,II,,,, +listed-building-outline,,42102049,2021-12-08,,"MULTIPOLYGON (((-0.076184 51.503969,-0.076256 51.503988,-0.076197 51.504079,-0.076126 51.504062,-0.076184 51.503969)))",Accumulator tower and chimney stack to east side of Tower Bridge Approach,329,POINT(-0.076191 51.504024),listed-building-outline,471402,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB732.pdf,,II,,,, +listed-building-outline,,42102050,2021-12-08,,"MULTIPOLYGON (((-0.095150 51.499577,-0.094969 51.499467,-0.095018 51.499431,-0.095430 51.499628,-0.095346 51.499680,-0.095150 51.499577)))",,329,POINT(-0.095203 51.499560),listed-building-outline,471421,1996-07-29,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB748.pdf,,II,,,, +listed-building-outline,,42102051,2021-12-08,,"MULTIPOLYGON (((-0.094330 51.499169,-0.094393 51.499193,-0.094325 51.499256,-0.094266 51.499232,-0.094330 51.499169)))",Number 22 and attached railings,329,POINT(-0.094329 51.499212),listed-building-outline,471422,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB749.pdf,,II,,,, +listed-building-outline,,42102052,2021-12-08,,"MULTIPOLYGON (((-0.083418 51.506302,-0.083449 51.506235,-0.083114 51.506180,-0.083084 51.506243,-0.082783 51.506191,-0.082807 51.506134,-0.082676 51.506111,-0.082814 51.505883,-0.082931 51.505900,-0.083736 51.505242,-0.084507 51.505578,-0.083863 51.506049,-0.083928 51.506099,-0.083882 51.506319,-0.083747 51.506297,-0.083724 51.506355,-0.083418 51.506302)))",Hays Galleria,329,POINT(-0.083600 51.505828),listed-building-outline,470847,1980-06-20,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB240.pdf,,II,,,, +listed-building-outline,,42102053,2021-12-08,,"MULTIPOLYGON (((-0.091261 51.505518,-0.091391 51.505632,-0.091301 51.505672,-0.091172 51.505561,-0.091261 51.505518)))",Resisted floral hall portico at Borough Market,329,POINT(-0.091281 51.505596),listed-building-outline,496206,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB93.pdf,,II,,,, +listed-building-outline,,42102054,2021-12-08,,"MULTIPOLYGON (((-0.104810 51.503435,-0.104806 51.503520,-0.104763 51.503519,-0.104766 51.503434,-0.104810 51.503435)))",Gate posts and railings at number 74,329,POINT(-0.104786 51.503477),listed-building-outline,470595,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB57.pdf,,II,,,, +listed-building-outline,,42102055,2021-12-08,,"MULTIPOLYGON (((-0.091486 51.504174,-0.091445 51.504266,-0.091356 51.504252,-0.091400 51.504159,-0.091486 51.504174)))",,329,POINT(-0.091422 51.504213),listed-building-outline,470650,1990-10-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB75.pdf,,II,,,, +listed-building-outline,,42102056,2021-12-08,,"MULTIPOLYGON (((-0.077926 51.502049,-0.078003 51.502066,-0.078097 51.502086,-0.078059 51.502157,-0.077888 51.502122,-0.077926 51.502049)))",Number 10 and attached railings to front door steps,329,POINT(-0.077992 51.502103),listed-building-outline,470917,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB297.pdf,,II,,,, +listed-building-outline,,42102057,2021-12-08,,"MULTIPOLYGON (((-0.078386 51.502197,-0.078365 51.502192,-0.078389 51.502191,-0.078386 51.502197)))",War memorial,329,POINT(-0.078380 51.502193),listed-building-outline,489585,2002-07-08,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB298.pdf,,II,,,, +listed-building-outline,,42102058,2021-12-08,,"MULTIPOLYGON (((-0.078243 51.502343,-0.078366 51.502369,-0.078311 51.502503,-0.078186 51.502418,-0.078243 51.502343)))",Watch House in St John’s Churchyard (recreation ground),329,POINT(-0.078280 51.502412),listed-building-outline,470918,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB299.pdf,,II,,,, +listed-building-outline,,42102059,2021-12-08,,"MULTIPOLYGON (((-0.102061 51.502125,-0.101915 51.502018,-0.101660 51.501840,-0.101747 51.501793,-0.101800 51.501867,-0.102173 51.502112,-0.102061 51.502125)))",The Drapers Almshouses,329,POINT(-0.101906 51.501971),listed-building-outline,470953,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB328.pdf,,II,,,, +listed-building-outline,,42102060,2021-12-08,,"MULTIPOLYGON (((-0.101164 51.502761,-0.101066 51.502755,-0.101010 51.502623,-0.101245 51.502601,-0.101240 51.502752,-0.101164 51.502761)))",,329,POINT(-0.101142 51.502681),listed-building-outline,500795,2009-02-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB354.pdf,,II,,,, +listed-building-outline,,42102061,2021-12-08,,"MULTIPOLYGON (((-0.106524 51.506369,-0.106476 51.506303,-0.106915 51.506233,-0.107158 51.506816,-0.106633 51.506894,-0.106637 51.506863,-0.106720 51.506848,-0.106524 51.506369)))",,329,POINT(-0.106823 51.506560),listed-building-outline,470999,1988-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB376.pdf,,II,,,, +listed-building-outline,,42102062,2021-12-08,,"MULTIPOLYGON (((-0.102178 51.507184,-0.102265 51.507182,-0.102268 51.507223,-0.102305 51.507238,-0.102180 51.507242,-0.102178 51.507184)))",Number 61 and attached railings and overthrow to gate,329,POINT(-0.102226 51.507213),listed-building-outline,471028,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB404.pdf,,II,,,, +listed-building-outline,,42102063,2021-12-08,,"MULTIPOLYGON (((-0.109666 51.497594,-0.109714 51.497587,-0.109739 51.497541,-0.109678 51.497497,-0.109759 51.497507,-0.109771 51.497487,-0.109743 51.497482,-0.109783 51.497465,-0.109743 51.497456,-0.109809 51.497420,-0.109768 51.497410,-0.109829 51.497385,-0.109787 51.497375,-0.109836 51.497369,-0.109855 51.497340,-0.109813 51.497330,-0.109874 51.497305,-0.109814 51.497282,-0.109898 51.497280,-0.109917 51.497250,-0.110032 51.497275,-0.109807 51.497627,-0.109666 51.497594)))",Numbers 15-31 and attached railings,329,POINT(-0.109856 51.497433),listed-building-outline,471041,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB424.pdf,,II,,,, +listed-building-outline,,42102064,2021-12-08,,"MULTIPOLYGON (((-0.089589 51.504641,-0.089532 51.504699,-0.089409 51.504652,-0.089488 51.504567,-0.089606 51.504624,-0.089589 51.504641)))",Kings Head public House,329,POINT(-0.089508 51.504635),listed-building-outline,471042,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB425.pdf,,II,,,, +listed-building-outline,,42102065,2021-12-08,,"MULTIPOLYGON (((-0.082346 51.500588,-0.082277 51.500578,-0.082192 51.500492,-0.082447 51.500463,-0.082466 51.500561,-0.082346 51.500588)))",,329,POINT(-0.082346 51.500525),listed-building-outline,471049,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB434.pdf,,II,,,, +listed-building-outline,,42102066,2021-12-08,,"MULTIPOLYGON (((-0.082949 51.498350,-0.082891 51.498368,-0.082934 51.498241,-0.083076 51.498265,-0.083000 51.498373,-0.082941 51.498375,-0.082949 51.498350)))",Simon the Tanner public House,329,POINT(-0.082977 51.498307),listed-building-outline,471071,1973-10-08,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB454.pdf,,II,,,, +listed-building-outline,,42102067,2021-12-08,,"MULTIPOLYGON (((-0.102033 51.501688,-0.102052 51.501702,-0.101938 51.501751,-0.101623 51.501516,-0.101732 51.501466,-0.102033 51.501688)))","Merrow House, Rushworth Street estate",329,POINT(-0.101837 51.501609),listed-building-outline,471270,1977-09-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB609.pdf,,II,,,, +listed-building-outline,,42102068,2021-12-08,,"MULTIPOLYGON (((-0.102150 51.501646,-0.102138 51.501672,-0.101867 51.501435,-0.101963 51.501392,-0.102222 51.501605,-0.102150 51.501646)))","Ripley House, Rushworth Street estate",329,POINT(-0.102047 51.501526),listed-building-outline,471271,1977-09-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB610.pdf,,II,,,, +listed-building-outline,,42102069,2021-12-08,,"MULTIPOLYGON (((-0.094753 51.506886,-0.094807 51.506890,-0.094772 51.506876,-0.094819 51.506813,-0.094787 51.506812,-0.094790 51.506782,-0.094831 51.506786,-0.094838 51.506758,-0.094785 51.506752,-0.094799 51.506701,-0.094861 51.506690,-0.094828 51.506683,-0.094902 51.506612,-0.094871 51.506605,-0.094942 51.506477,-0.095046 51.506497,-0.094935 51.506963,-0.094741 51.506950,-0.094753 51.506886)))",Anchor terrace and attached railings,329,POINT(-0.094905 51.506741),listed-building-outline,471334,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB665.pdf,,II,,,, +listed-building-outline,,42102070,2021-12-08,,"MULTIPOLYGON (((-0.096042 51.504019,-0.096061 51.504064,-0.095897 51.504057,-0.095901 51.503998,-0.096042 51.504019)))",Number 52 and attached railings,329,POINT(-0.095971 51.504035),listed-building-outline,471335,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB666.pdf,,II,,,, +listed-building-outline,,42102071,2021-12-08,,"MULTIPOLYGON (((-0.097794 51.502364,-0.097712 51.502322,-0.097815 51.502282,-0.097841 51.502127,-0.098014 51.501886,-0.098239 51.501934,-0.098267 51.501883,-0.098835 51.501999,-0.098877 51.502031,-0.098915 51.502204,-0.098009 51.502103,-0.098001 51.502163,-0.098053 51.502180,-0.098035 51.502296,-0.098117 51.502301,-0.098106 51.502369,-0.098067 51.502366,-0.098059 51.502415,-0.097821 51.502399,-0.097826 51.502367,-0.097794 51.502364)))",London fire brigade,329,POINT(-0.098283 51.502103),listed-building-outline,471336,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkNL7.pdf,,II,,,, +listed-building-outline,,42102072,2021-12-08,,"MULTIPOLYGON (((-0.098150 51.502739,-0.097917 51.502709,-0.097929 51.502643,-0.097906 51.502640,-0.097952 51.502506,-0.097930 51.502505,-0.097944 51.502430,-0.097970 51.502409,-0.098059 51.502415,-0.098052 51.502461,-0.098075 51.502462,-0.098022 51.502645,-0.098238 51.502670,-0.098228 51.502730,-0.098150 51.502739)))",Winchester House and attached railings,329,POINT(-0.098031 51.502602),listed-building-outline,471337,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB669.pdf,,II,,,, +listed-building-outline,,42102073,2021-12-08,,"MULTIPOLYGON (((-0.096865 51.502930,-0.096880 51.502978,-0.096835 51.503037,-0.096726 51.503005,-0.096689 51.502890,-0.096845 51.502869,-0.096865 51.502930)))",The Borough Welsh congregational chapel,329,POINT(-0.096790 51.502948),listed-building-outline,471338,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB670.pdf,,II,,,, +listed-building-outline,,42102074,2021-12-08,,"MULTIPOLYGON (((-0.090779 51.504552,-0.090727 51.504626,-0.090611 51.504583,-0.090675 51.504523,-0.090779 51.504552)))",,329,POINT(-0.090698 51.504572),listed-building-outline,471341,1989-07-26,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB675.pdf,,II,,,, +listed-building-outline,,42102075,2021-12-08,,"MULTIPOLYGON (((-0.090998 51.504622,-0.090886 51.504613,-0.090878 51.504567,-0.090913 51.504517,-0.091030 51.504548,-0.090998 51.504622)))",,329,POINT(-0.090949 51.504573),listed-building-outline,471342,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB676.pdf,,II,,,, +listed-building-outline,,42102076,2021-12-08,,"MULTIPOLYGON (((-0.094078 51.504552,-0.093999 51.504656,-0.093877 51.504660,-0.093976 51.504526,-0.094078 51.504552)))",,329,POINT(-0.093980 51.504598),listed-building-outline,471344,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB678.pdf,,II,,,, +listed-building-outline,,42102077,2021-12-08,,"MULTIPOLYGON (((-0.094473 51.504563,-0.094642 51.504610,-0.094568 51.504711,-0.094123 51.504658,-0.094198 51.504547,-0.094399 51.504598,-0.094386 51.504619,-0.094425 51.504631,-0.094473 51.504563)))",,329,POINT(-0.094386 51.504633),listed-building-outline,471345,1996-04-16,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB679.pdf,,II,,,, +listed-building-outline,,42102078,2021-12-08,,"MULTIPOLYGON (((-0.100411 51.505699,-0.100087 51.505618,-0.100113 51.505570,-0.100479 51.505596,-0.100411 51.505699)))",,329,POINT(-0.100294 51.505624),listed-building-outline,471346,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB680.pdf,,II,,,, +listed-building-outline,,42102079,2021-12-08,,"MULTIPOLYGON (((-0.101382 51.505961,-0.101030 51.505862,-0.100980 51.505830,-0.101436 51.505885,-0.101382 51.505961)))",Former fire Station,329,POINT(-0.101247 51.505891),listed-building-outline,471347,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB681.pdf,,II,,,, +listed-building-outline,,42102080,2021-12-08,,"MULTIPOLYGON (((-0.103546 51.508541,-0.103807 51.508532,-0.103820 51.508615,-0.103544 51.508612,-0.103546 51.508541)))",Southern abutment to former west Blackfriars and St Paul’s rails bridge,329,POINT(-0.103683 51.508575),listed-building-outline,470601,1995-08-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB63.pdf,,II,,,, +listed-building-outline,,42102081,2021-12-08,,"MULTIPOLYGON (((-0.092227 51.501697,-0.092004 51.501679,-0.091759 51.501649,-0.090958 51.501592,-0.091756 51.501645,-0.092227 51.501697)))","Wall forming north boundary of public gardens, formerly St Georges Churchyard",329,POINT(-0.091759 51.501652),listed-building-outline,470669,1977-09-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB92.pdf,,II,,,, +listed-building-outline,,42102082,2021-12-08,,"MULTIPOLYGON (((-0.080402 51.498302,-0.080402 51.498311,-0.080387 51.498311,-0.080388 51.498302,-0.080402 51.498302)))",Tomb approximately 15 metres south south east of church of St Mary Magdalene,329,POINT(-0.080395 51.498307),listed-building-outline,470583,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB47.pdf,,II,,,, +listed-building-outline,,42102083,2021-12-08,,"MULTIPOLYGON (((-0.081218 51.498116,-0.081217 51.498125,-0.081203 51.498125,-0.081203 51.498116,-0.081218 51.498116)))","Table tomb in St Mary’s Churchyard, near entrance from Bermondsey Street",329,POINT(-0.081210 51.498120),listed-building-outline,470582,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB46.pdf,,II,,,, +listed-building-outline,,42102084,2021-12-08,,"MULTIPOLYGON (((-0.080845 51.498057,-0.080845 51.498066,-0.080831 51.498066,-0.080831 51.498057,-0.080845 51.498057)))","Harrison family chest tomb, south of church of St Mary Magdalene",329,POINT(-0.080838 51.498061),listed-building-outline,470581,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB46.pdf,,II,,,, +listed-building-outline,,42102085,2021-12-08,,"MULTIPOLYGON (((-0.080919 51.498004,-0.080919 51.498013,-0.080904 51.498013,-0.080905 51.498004,-0.080919 51.498004)))",Dedication Stele approximately 35 metres south of church of St Mary Magdalene,329,POINT(-0.080912 51.498009),listed-building-outline,470578,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB44.pdf,,II,,,, +listed-building-outline,,42102086,2021-12-08,,"MULTIPOLYGON (((-0.080792 51.497948,-0.080791 51.497957,-0.080777 51.497957,-0.080777 51.497948,-0.080792 51.497948)))","Chest tomb, approximately 60 metres south of church of St Mary Magdalene, near abbey Street",329,POINT(-0.080784 51.497952),listed-building-outline,470577,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB44.pdf,,II,,,, +listed-building-outline,,42102087,2021-12-08,,"MULTIPOLYGON (((-0.080667 51.498338,-0.080667 51.498347,-0.080652 51.498347,-0.080653 51.498338,-0.080667 51.498338)))",Tomb of John Sargeant at south west corner of church of St Mary Magdalene,329,POINT(-0.080660 51.498343),listed-building-outline,470584,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB47.pdf,,II,,,, +listed-building-outline,,42102088,2021-12-08,,"MULTIPOLYGON (((-0.079534 51.498550,-0.079526 51.498548,-0.079548 51.498519,-0.079534 51.498550)))",Gates and gate piers at north east entrance to St Mary’s churchyard,329,POINT(-0.079536 51.498539),listed-building-outline,470580,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB45.pdf,,II,,,, +listed-building-outline,,42102089,2021-12-08,,"MULTIPOLYGON (((-0.104756 51.495925,-0.104481 51.495833,-0.104197 51.495737,-0.104254 51.495657,-0.104538 51.495767,-0.104577 51.495710,-0.104560 51.495774,-0.104671 51.495811,-0.104721 51.495769,-0.104703 51.495823,-0.104798 51.495802,-0.104772 51.495845,-0.105013 51.495929,-0.104970 51.495998,-0.104756 51.495925)))",,329,POINT(-0.104603 51.495827),listed-building-outline,471274,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB614.pdf,,II,,,, +listed-building-outline,,42102090,2021-12-08,,"MULTIPOLYGON (((-0.109235 51.498000,-0.108705 51.497741,-0.108180 51.497486,-0.108283 51.497428,-0.108448 51.497497,-0.108471 51.497478,-0.108515 51.497553,-0.108573 51.497527,-0.108605 51.497542,-0.108576 51.497582,-0.108605 51.497596,-0.108648 51.497563,-0.108663 51.497586,-0.108634 51.497610,-0.108661 51.497622,-0.108702 51.497588,-0.108722 51.497613,-0.108692 51.497638,-0.108777 51.497626,-0.108751 51.497667,-0.108838 51.497655,-0.108811 51.497696,-0.108838 51.497709,-0.108895 51.497683,-0.108868 51.497724,-0.108928 51.497752,-0.108981 51.497727,-0.109182 51.497816,-0.109150 51.497842,-0.109165 51.497867,-0.109236 51.497827,-0.109273 51.497846,-0.109229 51.497898,-0.109252 51.497909,-0.109331 51.497870,-0.109283 51.497925,-0.109312 51.497939,-0.109388 51.497898,-0.109343 51.497953,-0.109398 51.497981,-0.109461 51.497939,-0.109499 51.497957,-0.109457 51.498008,-0.109494 51.498027,-0.109419 51.498089,-0.109235 51.498000)))",Laurie terrace and railings,329,POINT(-0.108868 51.497755),listed-building-outline,471275,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB615.pdf,,II,,,, +listed-building-outline,,42102091,2021-12-08,,"MULTIPOLYGON (((-0.105539 51.496744,-0.105503 51.496786,-0.105253 51.496712,-0.105392 51.496548,-0.105636 51.496631,-0.105539 51.496744)))",Former church of St Jude,329,POINT(-0.105445 51.496669),listed-building-outline,471276,1996-05-31,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB616.pdf,,II,,,, +listed-building-outline,,42102092,2021-12-08,,"MULTIPOLYGON (((-0.089155 51.505016,-0.089119 51.505001,-0.089194 51.504928,-0.089293 51.504967,-0.089344 51.504954,-0.089243 51.505053,-0.089155 51.505016)))",Bunch of Grapes public House,329,POINT(-0.089223 51.504989),listed-building-outline,471289,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB628.pdf,,II,,,, +listed-building-outline,,42102093,2021-12-08,,"MULTIPOLYGON (((-0.088006 51.504848,-0.087905 51.504982,-0.087754 51.504919,-0.087843 51.504799,-0.088006 51.504848)))",Mary Sheridan House (part) and attached area railings,329,POINT(-0.087879 51.504887),listed-building-outline,471294,1949-12-06,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB635.pdf,,II,,,, +listed-building-outline,,42102094,2021-12-08,,"MULTIPOLYGON (((-0.103098 51.502384,-0.103106 51.502611,-0.102795 51.502611,-0.102795 51.502533,-0.103059 51.502533,-0.103059 51.502499,-0.103020 51.502499,-0.103018 51.502390,-0.103098 51.502384)))",The Blackfriars settlement and attached railings,329,POINT(-0.102984 51.502536),listed-building-outline,471119,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB493.pdf,,II,,,, +listed-building-outline,,42102095,2021-12-08,,"MULTIPOLYGON (((-0.091063 51.502898,-0.090993 51.502965,-0.090855 51.502912,-0.090911 51.502856,-0.091063 51.502898)))",Kings Arms public house with refixed coat of arms,329,POINT(-0.090958 51.502908),listed-building-outline,471125,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB505.pdf,,II,,,, +listed-building-outline,,42102096,2021-12-08,,"MULTIPOLYGON (((-0.106268 51.506936,-0.106178 51.506203,-0.106377 51.506192,-0.106420 51.506279,-0.106363 51.506287,-0.106363 51.506321,-0.106432 51.506310,-0.106670 51.506857,-0.106637 51.506863,-0.106626 51.506934,-0.106268 51.506936)))",Former clays printing works,329,POINT(-0.106391 51.506608),listed-building-outline,471158,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB524.pdf,,II,,,, +listed-building-outline,,42102097,2021-12-08,,"MULTIPOLYGON (((-0.091454 51.505213,-0.091630 51.505153,-0.091677 51.505196,-0.091716 51.505183,-0.091671 51.505160,-0.091741 51.505136,-0.091836 51.505190,-0.091897 51.505168,-0.091930 51.505202,-0.091479 51.505358,-0.091460 51.505344,-0.091496 51.505327,-0.091437 51.505280,-0.091493 51.505260,-0.091454 51.505213)))",,329,POINT(-0.091648 51.505235),listed-building-outline,471159,1998-01-08,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB525.pdf,,II,,,, +listed-building-outline,,42102098,2021-12-08,,"MULTIPOLYGON (((-0.092053 51.505190,-0.091984 51.505187,-0.091955 51.505158,-0.092069 51.505119,-0.092105 51.505157,-0.092053 51.505190)))",,329,POINT(-0.092034 51.505159),listed-building-outline,471160,1998-01-08,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB526.pdf,,II,,,, +listed-building-outline,,42102099,2021-12-08,,"MULTIPOLYGON (((-0.092563 51.505780,-0.092607 51.505757,-0.092544 51.505757,-0.092573 51.505728,-0.092518 51.505734,-0.092496 51.505715,-0.092533 51.505699,-0.092517 51.505685,-0.092446 51.505690,-0.092582 51.505626,-0.092726 51.505752,-0.092563 51.505780)))",,329,POINT(-0.092595 51.505707),listed-building-outline,471161,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB526.pdf,,II,,,, +listed-building-outline,,42102100,2021-12-08,,"MULTIPOLYGON (((-0.092579 51.505380,-0.092698 51.505326,-0.092799 51.505406,-0.092678 51.505465,-0.092579 51.505380)))",Numbers 21 and 23 and attached railings,329,POINT(-0.092689 51.505395),listed-building-outline,471162,1971-05-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB527.pdf,,II,,,, +listed-building-outline,,42102101,2021-12-08,,"MULTIPOLYGON (((-0.096157 51.507425,-0.096093 51.507386,-0.096152 51.507251,-0.096429 51.507318,-0.096388 51.507472,-0.096157 51.507425)))",Union works,329,POINT(-0.096264 51.507363),listed-building-outline,471164,1996-05-31,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB529.pdf,,II,,,, +listed-building-outline,,42102102,2021-12-08,,"MULTIPOLYGON (((-0.102308 51.501700,-0.102050 51.501820,-0.101954 51.501743,-0.101993 51.501726,-0.102044 51.501749,-0.102113 51.501717,-0.102172 51.501664,-0.102155 51.501636,-0.102205 51.501613,-0.102308 51.501700)))",Chadwick House and attached railings,329,POINT(-0.102145 51.501723),listed-building-outline,471269,1980-12-29,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB608.pdf,,II,,,, +listed-building-outline,,42102103,2021-12-08,,"MULTIPOLYGON (((-0.084122 51.505307,-0.083799 51.505189,-0.083992 51.505050,-0.084754 51.505391,-0.084571 51.505524,-0.084122 51.505307)))",The counting house,329,POINT(-0.084282 51.505284),listed-building-outline,471388,1971-05-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB717.pdf,,II,,,, +listed-building-outline,,42102104,2021-12-08,,"MULTIPOLYGON (((-0.083447 51.504583,-0.083632 51.504523,-0.083690 51.504547,-0.083573 51.504644,-0.083447 51.504583)))",Shipwrights Arms public house,329,POINT(-0.083576 51.504580),listed-building-outline,471389,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB718.pdf,,II,,,, +listed-building-outline,,42102105,2021-12-08,,"MULTIPOLYGON (((-0.081165 51.503954,-0.081397 51.504041,-0.081293 51.504172,-0.081011 51.504103,-0.081165 51.503954)))",Fire Station,329,POINT(-0.081211 51.504067),listed-building-outline,471390,1986-10-03,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB720.pdf,,II,,,, +listed-building-outline,,42102106,2021-12-08,,"MULTIPOLYGON (((-0.077623 51.502717,-0.077450 51.502671,-0.077540 51.502540,-0.077588 51.502529,-0.077726 51.502617,-0.077623 51.502717)))",Former London and county bank,329,POINT(-0.077587 51.502627),listed-building-outline,471392,1996-07-29,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB721.pdf,,II,,,, +listed-building-outline,,42102107,2021-12-08,,"MULTIPOLYGON (((-0.076348 51.502469,-0.076409 51.502357,-0.076553 51.502292,-0.076456 51.502253,-0.076511 51.502193,-0.076702 51.502098,-0.076635 51.502055,-0.076745 51.501990,-0.076850 51.502057,-0.076803 51.502086,-0.076914 51.502133,-0.076994 51.502214,-0.077043 51.502185,-0.077142 51.502252,-0.077090 51.502329,-0.077025 51.502340,-0.076964 51.502464,-0.076823 51.502426,-0.076881 51.502356,-0.076963 51.502344,-0.076857 51.502273,-0.076743 51.502303,-0.076790 51.502334,-0.076675 51.502400,-0.076628 51.502368,-0.076569 51.502403,-0.076526 51.502513,-0.076348 51.502469)))",Tower Bridge magistrates court and police Station and attached railings,329,POINT(-0.076739 51.502268),listed-building-outline,471393,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB723.pdf,,II,,,, +listed-building-outline,,42102108,2021-12-08,,"MULTIPOLYGON (((-0.078589 51.503480,-0.078385 51.503430,-0.078369 51.503456,-0.078472 51.503494,-0.078453 51.503525,-0.078249 51.503473,-0.078275 51.503433,-0.078334 51.503447,-0.078351 51.503420,-0.077844 51.503299,-0.077992 51.503071,-0.078119 51.503102,-0.078096 51.503138,-0.078423 51.503218,-0.078447 51.503185,-0.078575 51.503212,-0.078586 51.503239,-0.078504 51.503330,-0.078538 51.503379,-0.078611 51.503395,-0.078595 51.503422,-0.078621 51.503428,-0.078641 51.503393,-0.078767 51.503389,-0.078763 51.503423,-0.078835 51.503456,-0.078786 51.503477,-0.078702 51.503607,-0.078545 51.503549,-0.078589 51.503480)),((-0.078133 51.503441,-0.078153 51.503410,-0.078241 51.503432,-0.078220 51.503465,-0.078133 51.503441)))",South London college,329,POINT(-0.078318 51.503327),listed-building-outline,471395,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB725.pdf,,II,,,, +listed-building-outline,,42102109,2021-12-08,,"MULTIPOLYGON (((-0.079051 51.503371,-0.079048 51.503370,-0.079048 51.503367,-0.079054 51.503368,-0.079051 51.503371)),((-0.079068 51.503351,-0.079065 51.503350,-0.079066 51.503347,-0.079072 51.503348,-0.079068 51.503351)),((-0.079090 51.503327,-0.079086 51.503326,-0.079087 51.503324,-0.079093 51.503324,-0.079090 51.503327)))",Three bollards,329,POINT(-0.079068 51.503348),listed-building-outline,471204,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB558.pdf,,II,,,, +listed-building-outline,,42102110,2021-12-08,,"MULTIPOLYGON (((-0.105907 51.501929,-0.105904 51.501932,-0.105900 51.501930,-0.105903 51.501927,-0.105907 51.501929)))",Bollard,329,POINT(-0.105903 51.501929),listed-building-outline,491614,2004-02-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB555.pdf,,II,,,, +listed-building-outline,,42102111,2021-12-08,,"MULTIPOLYGON (((-0.092974 51.505053,-0.092859 51.505017,-0.092971 51.504865,-0.093131 51.504932,-0.093062 51.504952,-0.093114 51.504979,-0.093089 51.505014,-0.093021 51.505007,-0.093042 51.505047,-0.092974 51.505053)))",Cromwell building numbers 5-24 and attached railings,329,POINT(-0.092992 51.504967),listed-building-outline,471225,1994-03-11,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB579.pdf,,II,,,, +listed-building-outline,,42102112,2021-12-08,,"MULTIPOLYGON (((-0.094875 51.503145,-0.094895 51.503114,-0.094998 51.503142,-0.094899 51.503315,-0.094791 51.503289,-0.094875 51.503145)))",Redcross cottages,329,POINT(-0.094895 51.503215),listed-building-outline,471226,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB580.pdf,,II,,,, +listed-building-outline,,42102113,2021-12-08,,"MULTIPOLYGON (((-0.097089 51.502886,-0.097086 51.502888,-0.097082 51.502886,-0.097085 51.502884,-0.097089 51.502886)))",Bollard,329,POINT(-0.097086 51.502886),listed-building-outline,491615,2004-02-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB353.pdf,,II,,,, +listed-building-outline,,42102114,2021-12-08,,"MULTIPOLYGON (((-0.108321 51.497410,-0.108180 51.497486,-0.108099 51.497448,-0.108217 51.497386,-0.108301 51.497377,-0.108321 51.497410)))",The Elizabeth Baxter hostel and attached railings,329,POINT(-0.108215 51.497428),listed-building-outline,471043,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB426.pdf,,II,,,, +listed-building-outline,,42102115,2021-12-08,,"MULTIPOLYGON (((-0.092412 51.498802,-0.092325 51.498769,-0.092306 51.498789,-0.092278 51.498778,-0.092297 51.498759,-0.092210 51.498752,-0.092229 51.498733,-0.092080 51.498702,-0.092098 51.498683,-0.092037 51.498686,-0.091987 51.498641,-0.091969 51.498660,-0.091942 51.498650,-0.091960 51.498631,-0.091903 51.498635,-0.091877 51.498625,-0.091896 51.498606,-0.091745 51.498575,-0.091763 51.498555,-0.091726 51.498541,-0.091679 51.498551,-0.091698 51.498532,-0.091568 51.498482,-0.091653 51.498427,-0.092469 51.498743,-0.092412 51.498802)))",Numbers 25-47 and attached railings,329,POINT(-0.092020 51.498617),listed-building-outline,471423,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB750.pdf,,II,,,, +listed-building-outline,,42102116,2021-12-08,,"MULTIPOLYGON (((-0.091125 51.498035,-0.090906 51.497955,-0.090983 51.497880,-0.091383 51.498044,-0.091322 51.498108,-0.091125 51.498035)))",Numbers 32-42 and attached railings,329,POINT(-0.091142 51.497994),listed-building-outline,471424,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB751.pdf,,II,,,, +listed-building-outline,,42102117,2021-12-08,,"MULTIPOLYGON (((-0.093206 51.503556,-0.093264 51.503472,-0.093352 51.503493,-0.093429 51.503378,-0.093632 51.503409,-0.093597 51.503454,-0.093865 51.503527,-0.093817 51.503590,-0.093651 51.503547,-0.093579 51.503650,-0.093206 51.503556)))",,329,POINT(-0.093515 51.503518),listed-building-outline,471429,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB753.pdf,,II,,,, +listed-building-outline,,42102118,2021-12-08,,"MULTIPOLYGON (((-0.094518 51.503838,-0.094564 51.503759,-0.094696 51.503782,-0.094652 51.503865,-0.094518 51.503838)))",,329,POINT(-0.094608 51.503811),listed-building-outline,471430,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB754.pdf,,II,,,, +listed-building-outline,,42102119,2021-12-08,,"MULTIPOLYGON (((-0.094857 51.504148,-0.094878 51.504119,-0.094850 51.504111,-0.094895 51.504052,-0.095032 51.504091,-0.094988 51.504150,-0.094857 51.504148)))",,329,POINT(-0.094936 51.504107),listed-building-outline,471431,1994-11-22,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB755.pdf,,II,,,, +listed-building-outline,,42102120,2021-12-08,,"MULTIPOLYGON (((-0.106625 51.500377,-0.106287 51.500186,-0.106209 51.500150,-0.106303 51.500085,-0.106786 51.500356,-0.106692 51.500422,-0.106625 51.500377)))","Algar House, Webber Row London county council estate",329,POINT(-0.106501 51.500252),listed-building-outline,471450,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB772.pdf,,II,,,, +listed-building-outline,,42102121,2021-12-08,,"MULTIPOLYGON (((-0.106732 51.500165,-0.106504 51.500036,-0.106434 51.499995,-0.106526 51.499931,-0.107008 51.500204,-0.106915 51.500268,-0.106732 51.500165)))","Dauncey House, Webber Row London county council estate",329,POINT(-0.106720 51.500100),listed-building-outline,471451,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB773.pdf,,II,,,, +listed-building-outline,,42102122,2021-12-08,,"MULTIPOLYGON (((-0.106262 51.500489,-0.106124 51.500410,-0.105967 51.500319,-0.106057 51.500258,-0.106535 51.500530,-0.106445 51.500592,-0.106262 51.500489)))","Delarche House, Webber Row London county council estate",329,POINT(-0.106251 51.500425),listed-building-outline,471452,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB774.pdf,,II,,,, +listed-building-outline,,42102123,2021-12-08,,"MULTIPOLYGON (((-0.106672 51.499775,-0.106768 51.499708,-0.107211 51.500065,-0.107111 51.500131,-0.106672 51.499775)))","Mawdley House, Webber Row London county council estate",329,POINT(-0.106941 51.499920),listed-building-outline,471453,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB775.pdf,,II,,,, +listed-building-outline,,42102124,2021-12-08,,"MULTIPOLYGON (((-0.090356 51.506166,-0.090353 51.506168,-0.090349 51.506166,-0.090352 51.506164,-0.090356 51.506166)))",Bollard at the corner with Winchester walk,329,POINT(-0.090353 51.506166),listed-building-outline,470760,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB179.pdf,,II,,,, +listed-building-outline,,42102125,2021-12-08,,"MULTIPOLYGON (((-0.090262 51.506344,-0.090259 51.506346,-0.090255 51.506344,-0.090259 51.506342,-0.090262 51.506344)))",Post at north end where street divides on east side of left fork,329,POINT(-0.090259 51.506344),listed-building-outline,470762,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB182.pdf,,II,,,, +listed-building-outline,,42102126,2021-12-08,,"MULTIPOLYGON (((-0.092508 51.505365,-0.092504 51.505368,-0.092500 51.505366,-0.092503 51.505363,-0.092508 51.505365)),((-0.092493 51.505384,-0.092490 51.505387,-0.092486 51.505385,-0.092489 51.505383,-0.092493 51.505384)),((-0.092535 51.505343,-0.092531 51.505346,-0.092528 51.505344,-0.092531 51.505342,-0.092535 51.505343)),((-0.092489 51.505405,-0.092486 51.505408,-0.092482 51.505406,-0.092485 51.505403,-0.092489 51.505405)))",Posts in front of numbers 21 and 23,329,POINT(-0.092502 51.505376),listed-building-outline,471163,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB527.pdf,,II,,,, +listed-building-outline,,42102127,2021-12-08,,"MULTIPOLYGON (((-0.096145 51.507249,-0.096143 51.507251,-0.096141 51.507249,-0.096143 51.507248,-0.096145 51.507249)))",Post at west corner with Bear Gardens,329,POINT(-0.096143 51.507249),listed-building-outline,471166,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB530.pdf,,II,,,, +listed-building-outline,,42102128,2021-12-08,,"MULTIPOLYGON (((-0.087957 51.504690,-0.087957 51.504699,-0.087942 51.504698,-0.087943 51.504689,-0.087957 51.504690)))",K2 telephone kiosk outside numbers 17 and 19 (numbers 17 and 19 not included),329,POINT(-0.087950 51.504694),listed-building-outline,471295,1986-12-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB636.pdf,,II,,,, +listed-building-outline,,42102129,2021-12-08,,"MULTIPOLYGON (((-0.078654 51.500467,-0.078653 51.500476,-0.078639 51.500476,-0.078639 51.500467,-0.078654 51.500467)))",K2 telephone kiosk at junction with Roper Lane,329,POINT(-0.078646 51.500471),listed-building-outline,471399,1986-12-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB729.pdf,,II,,,, +listed-building-outline,,42102130,2021-12-08,,"MULTIPOLYGON (((-0.090955 51.498150,-0.090954 51.498159,-0.090940 51.498159,-0.090940 51.498150,-0.090955 51.498150)))",K2 telephone kiosk at junction with Great Dover Street,329,POINT(-0.090947 51.498154),listed-building-outline,471425,1986-12-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB748.pdf,,II,,,, +listed-building-outline,,42102131,2021-12-08,,"MULTIPOLYGON (((-0.098185 51.503649,-0.098181 51.503652,-0.098178 51.503650,-0.098181 51.503647,-0.098185 51.503649)))",Cannon bollard at north west corner of Pepper Street,329,POINT(-0.098181 51.503649),listed-building-outline,471432,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB755.pdf,,II,,,, +listed-building-outline,,42102132,2021-12-08,,"MULTIPOLYGON (((-0.098541 51.503767,-0.098538 51.503770,-0.098534 51.503768,-0.098537 51.503766,-0.098541 51.503767)),((-0.098647 51.503786,-0.098644 51.503789,-0.098639 51.503787,-0.098643 51.503784,-0.098647 51.503786)),((-0.098565 51.503764,-0.098563 51.503767,-0.098558 51.503764,-0.098561 51.503762,-0.098565 51.503764)),((-0.098655 51.503821,-0.098652 51.503824,-0.098648 51.503822,-0.098651 51.503820,-0.098655 51.503821)))",Two cannon bollards at east corner with Ewer Street,329,POINT(-0.098601 51.503784),listed-building-outline,471433,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB756.pdf,,II,,,, +listed-building-outline,,42102133,2021-12-08,,"MULTIPOLYGON (((-0.090884 51.506633,-0.090881 51.506636,-0.090877 51.506634,-0.090880 51.506631,-0.090884 51.506633)))",Bollard at the north east corner of Winchester Square,329,POINT(-0.090881 51.506633),listed-building-outline,471473,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB796.pdf,,II,,,, +listed-building-outline,,42102134,2021-12-08,,"MULTIPOLYGON (((-0.082712 51.498056,-0.082763 51.497983,-0.082898 51.497865,-0.082410 51.497681,-0.082256 51.497869,-0.082220 51.497880,-0.082181 51.497867,-0.082113 51.497959,-0.082174 51.497858,-0.082244 51.497866,-0.082406 51.497672,-0.082915 51.497863,-0.082712 51.498056)))",Wall of recreation ground,329,POINT(-0.082571 51.497840),listed-building-outline,471072,1977-09-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB455.pdf,,II,,,, +listed-building-outline,,42102135,2021-12-08,,"MULTIPOLYGON (((-0.086619 51.505458,-0.086729 51.505489,-0.086537 51.505768,-0.086288 51.505709,-0.086387 51.505597,-0.086416 51.505614,-0.086619 51.505458)))","Bridge over north end, London Bridge Station",329,POINT(-0.086521 51.505623),listed-building-outline,471033,1998-01-08,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB414.pdf,,II,,,, +listed-building-outline,,42102136,2021-12-08,,"MULTIPOLYGON (((-0.078786 51.500639,-0.078837 51.500406,-0.079198 51.500438,-0.079184 51.500506,-0.079221 51.500510,-0.079187 51.500673,-0.078786 51.500639)))","Bonded warehouse, sarsons vinegar factory",329,POINT(-0.079005 51.500542),listed-building-outline,471231,1993-02-03,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB584.pdf,,II,,,, +listed-building-outline,,42102137,2021-12-08,,"MULTIPOLYGON (((-0.079460 51.500763,-0.079451 51.500839,-0.079286 51.500834,-0.079293 51.500758,-0.079460 51.500763)))","Brewhouse, sarsons vinegar factory",329,POINT(-0.079373 51.500798),listed-building-outline,471232,1993-08-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB584.pdf,,II,,,, +listed-building-outline,,42102138,2021-12-08,,"MULTIPOLYGON (((-0.079477 51.500631,-0.079460 51.500763,-0.079293 51.500758,-0.079328 51.500622,-0.079477 51.500631)))","Engine House, boiler house and coal store, sarsons vinegar factory",329,POINT(-0.079389 51.500695),listed-building-outline,471233,1993-08-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB585.pdf,,II,,,, +listed-building-outline,,42102139,2021-12-08,,"MULTIPOLYGON (((-0.079430 51.501014,-0.079423 51.501163,-0.079146 51.501144,-0.079160 51.501004,-0.079430 51.501014)))","Fermentation vats, sarsons vinegar factory",329,POINT(-0.079291 51.501082),listed-building-outline,471234,1993-08-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB586.pdf,,II,,,, +listed-building-outline,,42102140,2021-12-08,,"MULTIPOLYGON (((-0.079494 51.500491,-0.079485 51.500575,-0.079348 51.500567,-0.079387 51.500474,-0.079494 51.500491)))","Former Still House, sarsons vinegar factory",329,POINT(-0.079427 51.500528),listed-building-outline,471235,1993-08-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB587.pdf,,II,,,, +listed-building-outline,,42102141,2021-12-08,,"MULTIPOLYGON (((-0.079451 51.500839,-0.079430 51.501014,-0.079270 51.501008,-0.079286 51.500834,-0.079451 51.500839)))","Malt Store, sarsons vinegar factory",329,POINT(-0.079359 51.500923),listed-building-outline,471236,1993-08-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB587.pdf,,II,,,, +listed-building-outline,,42102142,2021-12-08,,"MULTIPOLYGON (((-0.079485 51.500575,-0.079477 51.500631,-0.079328 51.500622,-0.079348 51.500567,-0.079485 51.500575)))","Plumbers office, Sarsons vinegar factory",329,POINT(-0.079409 51.500599),listed-building-outline,471237,1993-08-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB588.pdf,,II,,,, +listed-building-outline,,42102143,2021-12-08,,"MULTIPOLYGON (((-0.079187 51.500673,-0.079157 51.500814,-0.079190 51.500817,-0.079173 51.500894,-0.078717 51.500854,-0.078764 51.500637,-0.079187 51.500673)))","Warehouse, Sarsons vinegar factory",329,POINT(-0.078958 51.500766),listed-building-outline,471238,1993-08-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB588.pdf,,II,,,, +listed-building-outline,,42102144,2021-12-08,,"MULTIPOLYGON (((-0.106155 51.500705,-0.105818 51.500514,-0.105738 51.500477,-0.105832 51.500411,-0.106312 51.500684,-0.106220 51.500748,-0.106155 51.500705)))","Overy House, Webber Row London county council estate",329,POINT(-0.106027 51.500578),listed-building-outline,471454,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB776.pdf,,II,,,, +listed-building-outline,,42102145,2021-12-08,,"MULTIPOLYGON (((-0.106061 51.500832,-0.105925 51.500925,-0.105894 51.500908,-0.105878 51.500945,-0.105664 51.500822,-0.105589 51.500913,-0.105540 51.500889,-0.105679 51.500783,-0.105657 51.500761,-0.105691 51.500737,-0.105609 51.500715,-0.105500 51.500610,-0.105537 51.500583,-0.105592 51.500615,-0.105628 51.500590,-0.105571 51.500559,-0.105654 51.500500,-0.105727 51.500541,-0.105662 51.500604,-0.106061 51.500832)))",Centre for Literacy in Primary Education (former London County Council special school),329,POINT(-0.105764 51.500754),listed-building-outline,471455,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB778.pdf,,II,,,, +listed-building-outline,,42102146,2021-12-08,,"MULTIPOLYGON (((-0.084939 51.500488,-0.084764 51.500466,-0.084644 51.500453,-0.084707 51.500314,-0.084996 51.500363,-0.084939 51.500488)))","London leather, hide and wool exchange",329,POINT(-0.084819 51.500404),listed-building-outline,471468,1995-02-23,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB791.pdf,,II,,,, +listed-building-outline,,42102147,2021-12-08,,"MULTIPOLYGON (((-0.084496 51.499584,-0.084551 51.499456,-0.084699 51.499503,-0.084651 51.499610,-0.084496 51.499584)))",Leathermarket yard,329,POINT(-0.084597 51.499538),listed-building-outline,471469,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB792.pdf,,II,,,, +listed-building-outline,,42102148,2021-12-08,,"MULTIPOLYGON (((-0.084404 51.499840,-0.084458 51.499725,-0.084713 51.499771,-0.084501 51.500232,-0.084246 51.500186,-0.084404 51.499840)))","Warehouse block to east of Leathermarket yard, units 13-16",329,POINT(-0.084479 51.499978),listed-building-outline,471470,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB793.pdf,,II,,,, +listed-building-outline,,42102149,2021-12-08,,"MULTIPOLYGON (((-0.084897 51.499900,-0.084941 51.499806,-0.085228 51.499858,-0.084996 51.500363,-0.084707 51.500314,-0.084897 51.499900)))",Leather market,329,POINT(-0.084968 51.500085),listed-building-outline,471467,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB790.pdf,,II,,,, +listed-building-outline,,42102150,2021-12-08,,"MULTIPOLYGON (((-0.092701 51.507372,-0.092698 51.507375,-0.092694 51.507373,-0.092698 51.507370,-0.092701 51.507372)),((-0.092849 51.507097,-0.092846 51.507100,-0.092842 51.507097,-0.092846 51.507095,-0.092849 51.507097)),((-0.092803 51.507288,-0.092800 51.507290,-0.092796 51.507288,-0.092800 51.507285,-0.092803 51.507288)),((-0.092740 51.507367,-0.092737 51.507369,-0.092733 51.507368,-0.092736 51.507365,-0.092740 51.507367)),((-0.092812 51.507308,-0.092809 51.507311,-0.092805 51.507308,-0.092808 51.507306,-0.092812 51.507308)))",Five posts outside and opposite number 1 anchor public House,329,POINT(-0.092779 51.507284),listed-building-outline,470550,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB27.pdf,,II,,,, +listed-building-outline,,42102151,2021-12-08,,"MULTIPOLYGON (((-0.094958 51.508002,-0.094954 51.508004,-0.094950 51.508002,-0.094954 51.507999,-0.094958 51.508002)))",Four posts along bankside,329,POINT(-0.094954 51.508002),listed-building-outline,470553,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB29.pdf,,II,,,, +listed-building-outline,,42102152,2021-12-08,,"MULTIPOLYGON (((-0.089597 51.505264,-0.089594 51.505267,-0.089590 51.505264,-0.089594 51.505262,-0.089597 51.505264)))",Post at north corner of Bedale Street,329,POINT(-0.089594 51.505264),listed-building-outline,470666,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB89.pdf,,II,,,, +listed-building-outline,,42102153,2021-12-08,,"MULTIPOLYGON (((-0.088021 51.504539,-0.087840 51.504492,-0.087538 51.504375,-0.087845 51.504487,-0.088021 51.504539)))","Gates, gate piers and Street railings to Guys Hospital",329,POINT(-0.087798 51.504471),listed-building-outline,471297,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB639.pdf,,II,,,, +listed-building-outline,,42102154,2021-12-08,,"MULTIPOLYGON (((-0.087935 51.504268,-0.087967 51.504279,-0.087949 51.504300,-0.087917 51.504288,-0.087935 51.504268)))","Statue of Thomas Guy in courtyard of Guys Hospital, pedestal and railings",329,POINT(-0.087942 51.504284),listed-building-outline,471298,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB640.pdf,,II,,,, +listed-building-outline,,42102155,2021-12-08,,"MULTIPOLYGON (((-0.088016 51.503906,-0.088004 51.503879,-0.088037 51.503882,-0.088016 51.503906)))",Alcove from old London Bridge in inner quadrangle of Guys Hospital,329,POINT(-0.088019 51.503889),listed-building-outline,471299,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB640.pdf,,II,,,, +listed-building-outline,,42102156,2021-12-08,,"MULTIPOLYGON (((-0.104867 51.506944,-0.104866 51.506991,-0.104829 51.506991,-0.104828 51.507073,-0.104682 51.507085,-0.104649 51.507062,-0.104677 51.506944,-0.104867 51.506944)))",Number 1 and attached railings,329,POINT(-0.104752 51.507010),listed-building-outline,471353,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB688.pdf,,II,,,, +listed-building-outline,,42102157,2021-12-08,,"MULTIPOLYGON (((-0.104904 51.506944,-0.105055 51.506944,-0.105093 51.506815,-0.105196 51.506826,-0.105150 51.506980,-0.105088 51.506980,-0.105086 51.507074,-0.104828 51.507073,-0.104829 51.506991,-0.104904 51.506944)))",Number 3 and attached railings,329,POINT(-0.105017 51.506973),listed-building-outline,471354,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB689.pdf,,II,,,, +listed-building-outline,,42102158,2021-12-08,,"MULTIPOLYGON (((-0.097631 51.501115,-0.097667 51.501064,-0.097709 51.501076,-0.097841 51.500897,-0.097870 51.500904,-0.097843 51.500969,-0.097884 51.500995,-0.097811 51.501094,-0.097754 51.501089,-0.097733 51.501118,-0.097766 51.501128,-0.097721 51.501190,-0.097622 51.501162,-0.097706 51.501137,-0.097631 51.501115)),((-0.098076 51.500921,-0.098098 51.500890,-0.098201 51.500919,-0.098132 51.501013,-0.098030 51.500985,-0.098076 51.500921)),((-0.097900 51.501165,-0.097922 51.501134,-0.098020 51.501163,-0.097953 51.501254,-0.097855 51.501227,-0.097900 51.501165)),((-0.097886 51.500917,-0.097899 51.500881,-0.098053 51.500898,-0.098007 51.500957,-0.097886 51.500917)),((-0.097813 51.501127,-0.097876 51.501135,-0.097841 51.501184,-0.097783 51.501169,-0.097813 51.501127)))",Gable Cottages and garden railings,329,POINT(-0.097895 51.501048),listed-building-outline,471359,1973-10-08,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB692.pdf,,II,,,, +listed-building-outline,,42102159,2021-12-08,,"MULTIPOLYGON (((-0.079676 51.499757,-0.079721 51.499750,-0.079737 51.499762,-0.079689 51.499786,-0.079676 51.499757)))",Drinking fountain in south east corner of Ttanner Street recreation ground,329,POINT(-0.079704 51.499765),listed-building-outline,471379,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB709.pdf,,II,,,, +listed-building-outline,,42102160,2021-12-08,,"MULTIPOLYGON (((-0.094011 51.505109,-0.094037 51.505060,-0.093957 51.505117,-0.093978 51.505045,-0.093954 51.505040,-0.093915 51.505111,-0.093890 51.505106,-0.093927 51.504967,-0.094238 51.505043,-0.094195 51.505117,-0.094103 51.505125,-0.094108 51.505079,-0.094082 51.505073,-0.094046 51.505131,-0.094011 51.505109)))",,329,POINT(-0.094056 51.505053),listed-building-outline,471380,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB710.pdf,,II,,,, +listed-building-outline,,42102161,2021-12-08,,"MULTIPOLYGON (((-0.093917 51.508961,-0.094073 51.508696,-0.094012 51.508661,-0.094094 51.508658,-0.094293 51.508322,-0.094232 51.508290,-0.094313 51.508286,-0.094580 51.507834,-0.094806 51.507887,-0.094544 51.508338,-0.094607 51.508371,-0.094523 51.508373,-0.094324 51.508713,-0.094385 51.508747,-0.094304 51.508746,-0.094149 51.509013,-0.093917 51.508961)))",Southwark Bridge (that part in London Borough of Southwark),329,POINT(-0.094361 51.508427),listed-building-outline,471333,1995-08-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB664.pdf,,II,,,, +listed-building-outline,,42102162,2021-12-08,,"MULTIPOLYGON (((-0.091499 51.505079,-0.091497 51.505031,-0.091267 51.505041,-0.090960 51.504981,-0.090950 51.504896,-0.090893 51.504898,-0.090885 51.504833,-0.091121 51.504803,-0.092236 51.504791,-0.091499 51.505079)))",The Hop Exchange,329,POINT(-0.091466 51.504902),listed-building-outline,471343,1970-02-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB677.pdf,,II,,,, +listed-building-outline,,42102163,2021-12-08,,"MULTIPOLYGON (((-0.101791 51.506363,-0.101649 51.506362,-0.101660 51.506345,-0.101476 51.506294,-0.101399 51.506331,-0.101390 51.506274,-0.101358 51.506263,-0.101419 51.506182,-0.101873 51.506315,-0.101822 51.506379,-0.101791 51.506363)))",Numbers 124 and 126 and attached ironwork,329,POINT(-0.101599 51.506285),listed-building-outline,471349,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB683.pdf,,II,,,, +listed-building-outline,,42102164,2021-12-08,,"MULTIPOLYGON (((-0.088665 51.504740,-0.088690 51.504717,-0.089194 51.504928,-0.089119 51.505001,-0.088612 51.504791,-0.088665 51.504740)))",Numbers 4-8 and 12-16 and attached railings,329,POINT(-0.088903 51.504859),listed-building-outline,471290,1971-05-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB629.pdf,,II,,,, +listed-building-outline,,42102165,2021-12-08,,"MULTIPOLYGON (((-0.082382 51.504452,-0.082281 51.504625,-0.082018 51.504565,-0.082135 51.504380,-0.082382 51.504452)))",,329,POINT(-0.082202 51.504506),listed-building-outline,471391,1986-10-03,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB719.pdf,,II,,,, +listed-building-outline,,42102166,2021-12-08,,"MULTIPOLYGON (((-0.105787 51.488124,-0.105509 51.488029,-0.105573 51.487991,-0.105703 51.488060,-0.105751 51.488014,-0.105727 51.488004,-0.105790 51.487975,-0.105759 51.487963,-0.105778 51.487944,-0.105835 51.487931,-0.105797 51.487916,-0.105814 51.487898,-0.105854 51.487913,-0.105963 51.487804,-0.105879 51.487787,-0.105904 51.487761,-0.105995 51.487773,-0.106020 51.487746,-0.105971 51.487726,-0.105992 51.487704,-0.106065 51.487705,-0.106109 51.487666,-0.106080 51.487654,-0.106095 51.487639,-0.106156 51.487623,-0.106094 51.487598,-0.106164 51.487581,-0.106099 51.487544,-0.106188 51.487568,-0.106205 51.487516,-0.106173 51.487503,-0.106251 51.487462,-0.106207 51.487445,-0.106312 51.487441,-0.106242 51.487402,-0.106328 51.487423,-0.106354 51.487388,-0.106260 51.487343,-0.106362 51.487366,-0.106436 51.487281,-0.106348 51.487246,-0.106410 51.487184,-0.106462 51.487204,-0.106421 51.487244,-0.106471 51.487263,-0.106524 51.487228,-0.106647 51.487276,-0.105787 51.488124)))",Numbers 87-121 and attached railings,329,POINT(-0.106152 51.487656),listed-building-outline,471037,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB418.pdf,,II,,,, +listed-building-outline,,42102167,2021-12-08,,"MULTIPOLYGON (((-0.106582 51.487168,-0.106657 51.487148,-0.106619 51.487127,-0.106665 51.487097,-0.106581 51.487064,-0.106601 51.487044,-0.106715 51.487049,-0.106681 51.487035,-0.106729 51.487027,-0.106765 51.486952,-0.106795 51.486964,-0.106914 51.486845,-0.106844 51.486816,-0.106865 51.486796,-0.106945 51.486836,-0.107037 51.486746,-0.106984 51.486713,-0.107092 51.486703,-0.106933 51.486642,-0.106977 51.486600,-0.107062 51.486633,-0.107038 51.486657,-0.107130 51.486665,-0.107067 51.486635,-0.107172 51.486625,-0.107109 51.486594,-0.107217 51.486577,-0.107158 51.486547,-0.107262 51.486533,-0.107224 51.486513,-0.107310 51.486489,-0.107401 51.486394,-0.107384 51.486370,-0.107448 51.486349,-0.107398 51.486330,-0.107416 51.486313,-0.107482 51.486314,-0.107443 51.486287,-0.107538 51.486253,-0.107488 51.486234,-0.107518 51.486203,-0.107608 51.486181,-0.107477 51.486130,-0.107516 51.486092,-0.107623 51.486155,-0.107653 51.486124,-0.107765 51.486168,-0.106706 51.487217,-0.106582 51.487168)))",Numbers 125-165 and attached railings and blind boxes,329,POINT(-0.107165 51.486663),listed-building-outline,471038,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB420.pdf,,II,,,, +listed-building-outline,,42102168,2021-12-08,,"MULTIPOLYGON (((-0.105595 51.488315,-0.105493 51.488274,-0.105283 51.488189,-0.105366 51.488109,-0.105788 51.488249,-0.105807 51.488296,-0.105711 51.488362,-0.105595 51.488315)))",Kennington underground station,329,POINT(-0.105557 51.488235),listed-building-outline,471039,1974-08-21,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB421.pdf,,II,,,, +listed-building-outline,,42102169,2021-12-08,,"MULTIPOLYGON (((-0.095567 51.490512,-0.095599 51.490515,-0.095704 51.490666,-0.095623 51.490687,-0.095631 51.490718,-0.095578 51.490732,-0.095548 51.490707,-0.095259 51.490789,-0.095162 51.490671,-0.095225 51.490655,-0.095197 51.490625,-0.095265 51.490607,-0.095248 51.490581,-0.095567 51.490512)))",Church of St John the Evangelist,329,POINT(-0.095432 51.490647),listed-building-outline,471048,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB433.pdf,,II,,,, +listed-building-outline,,42102170,2021-12-08,,"MULTIPOLYGON (((-0.104282 51.498123,-0.103946 51.497858,-0.103845 51.497779,-0.103996 51.497751,-0.104114 51.497865,-0.104187 51.497843,-0.104138 51.497885,-0.104236 51.497882,-0.104202 51.497937,-0.104273 51.497967,-0.104330 51.498037,-0.104444 51.497980,-0.104492 51.498017,-0.104418 51.498054,-0.104441 51.498072,-0.104401 51.498092,-0.104429 51.498113,-0.104537 51.498053,-0.104664 51.498186,-0.104478 51.498275,-0.104282 51.498123)))",,329,POINT(-0.104286 51.498027),listed-building-outline,492292,2004-06-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB449.pdf,,II,,,, +listed-building-outline,,42102171,2021-12-08,,"MULTIPOLYGON (((-0.103926 51.498465,-0.103896 51.498441,-0.103861 51.498458,-0.103505 51.498173,-0.103780 51.498036,-0.103833 51.498077,-0.103797 51.498094,-0.104205 51.498421,-0.104130 51.498471,-0.104071 51.498425,-0.103990 51.498470,-0.103926 51.498465)))",,329,POINT(-0.103842 51.498276),listed-building-outline,488389,2000-06-14,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB450.pdf,,II,,,, +listed-building-outline,,42102172,2021-12-08,,"MULTIPOLYGON (((-0.104068 51.498495,-0.104007 51.498474,-0.104051 51.498451,-0.104116 51.498486,-0.104205 51.498421,-0.104301 51.498525,-0.104256 51.498595,-0.104167 51.498614,-0.104134 51.498535,-0.104068 51.498495)))",The duke of Clarence public house,329,POINT(-0.104187 51.498518),listed-building-outline,488387,2000-06-14,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB452.pdf,,II,,,, +listed-building-outline,,42102173,2021-12-08,,"MULTIPOLYGON (((-0.063305 51.489304,-0.063305 51.489373,-0.063276 51.489374,-0.063266 51.489419,-0.063162 51.489429,-0.063165 51.489287,-0.063305 51.489304)))",Former vicarage to church of St Augustine,329,POINT(-0.063226 51.489356),listed-building-outline,471092,1996-05-31,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB475.pdf,,II,,,, +listed-building-outline,,42102174,2021-12-08,,"MULTIPOLYGON (((-0.075748 51.497727,-0.075721 51.497606,-0.075951 51.497608,-0.076041 51.497596,-0.076034 51.497571,-0.076088 51.497592,-0.076115 51.497564,-0.076145 51.497692,-0.075748 51.497727)))",,329,POINT(-0.075932 51.497655),listed-building-outline,470520,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB1.pdf,,II,,,, +listed-building-outline,,42102175,2021-12-08,,"MULTIPOLYGON (((-0.074716 51.497818,-0.074684 51.497679,-0.074724 51.497744,-0.074807 51.497701,-0.074815 51.497736,-0.074850 51.497733,-0.074844 51.497698,-0.074926 51.497726,-0.074919 51.497692,-0.074957 51.497689,-0.074964 51.497723,-0.075005 51.497720,-0.075020 51.497792,-0.074716 51.497818)))",Numbers 142-148 including railings to number 144,329,POINT(-0.074855 51.497760),listed-building-outline,470521,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB2.pdf,,II,,,, +listed-building-outline,,42102176,2021-12-08,,"MULTIPOLYGON (((-0.054000 51.499189,-0.054155 51.499301,-0.053700 51.499546,-0.053543 51.499431,-0.054000 51.499189)))",St Olav’s Kirke,329,POINT(-0.053849 51.499367),listed-building-outline,470532,1949-12-06,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB12.pdf,,II,,,, +listed-building-outline,,42102177,2021-12-08,,"MULTIPOLYGON (((-0.052518 51.500151,-0.052334 51.500018,-0.052582 51.499886,-0.052733 51.499992,-0.052553 51.500092,-0.052586 51.500114,-0.052518 51.500151)))",The Finnish church including attached tower,329,POINT(-0.052534 51.500013),listed-building-outline,470614,1998-09-25,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB13.pdf,,II,,,, +listed-building-outline,,42102178,2021-12-08,,"MULTIPOLYGON (((-0.085620 51.490598,-0.085479 51.490692,-0.085263 51.490563,-0.085491 51.490400,-0.085686 51.490491,-0.085551 51.490590,-0.085620 51.490598)))","Number 80 and church of St Christopher, Walworth",329,POINT(-0.085477 51.490543),listed-building-outline,470554,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB30.pdf,,II,,,, +listed-building-outline,,42102179,2021-12-08,,"MULTIPOLYGON (((-0.089543 51.494384,-0.089566 51.494373,-0.089550 51.494475,-0.089296 51.494600,-0.088940 51.494772,-0.088866 51.494714,-0.089543 51.494384)))",Numbers 1-19 including handrail,329,POINT(-0.089231 51.494583),listed-building-outline,470555,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB31.pdf,,II,,,, +listed-building-outline,,42102180,2021-12-08,,"MULTIPOLYGON (((-0.081427 51.497261,-0.081287 51.497227,-0.081192 51.497204,-0.081270 51.497083,-0.081300 51.497109,-0.081277 51.497147,-0.081323 51.497158,-0.081380 51.497123,-0.081358 51.497168,-0.081400 51.497176,-0.081454 51.497141,-0.081434 51.497185,-0.081470 51.497194,-0.081427 51.497261)),((-0.081427 51.497261,-0.081554 51.497286,-0.081594 51.497293,-0.081581 51.497319,-0.081529 51.497310,-0.081533 51.497334,-0.081403 51.497309,-0.081427 51.497261)))",Numbers 2-5 and attached railings,329,POINT(-0.081371 51.497216),listed-building-outline,470559,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB35.pdf,,II,,,, +listed-building-outline,,42102181,2021-12-08,,"MULTIPOLYGON (((-0.060663 51.500585,-0.060667 51.500528,-0.060973 51.500539,-0.060968 51.500668,-0.060660 51.500663,-0.060663 51.500585)))",Corbetts Wharf,329,POINT(-0.060816 51.500600),listed-building-outline,470586,1982-01-20,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB49.pdf,,II,,,, +listed-building-outline,,42102182,2021-12-08,,"MULTIPOLYGON (((-0.059011 51.500696,-0.058983 51.500588,-0.059138 51.500581,-0.059164 51.500686,-0.059011 51.500696)))",Angel public House,329,POINT(-0.059074 51.500638),listed-building-outline,470587,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB50.pdf,,II,,,, +listed-building-outline,,42102183,2021-12-08,,"MULTIPOLYGON (((-0.067913 51.501468,-0.067895 51.501492,-0.067767 51.501450,-0.067931 51.501210,-0.068069 51.501239,-0.067913 51.501468)))",Chambers Wharf,329,POINT(-0.067916 51.501348),listed-building-outline,470588,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB51.pdf,,II,,,, +listed-building-outline,,42102184,2021-12-08,,"MULTIPOLYGON (((-0.067699 51.501157,-0.067621 51.501294,-0.067385 51.501228,-0.067450 51.501099,-0.067699 51.501157)))",,329,POINT(-0.067540 51.501195),listed-building-outline,470589,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB52.pdf,,II,,,, +listed-building-outline,,42102185,2021-12-08,,"MULTIPOLYGON (((-0.067388 51.501150,-0.067411 51.501098,-0.067447 51.501105,-0.067377 51.501241,-0.067345 51.501234,-0.067388 51.501150)))",East Lane Stairs,329,POINT(-0.067396 51.501169),listed-building-outline,470591,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB53.pdf,,II,,,, +listed-building-outline,,42102186,2021-12-08,,"MULTIPOLYGON (((-0.094066 51.490206,-0.094066 51.490215,-0.094051 51.490215,-0.094052 51.490206,-0.094066 51.490206)))",K2 telephone kiosk opposite number 43 (number 43 not included),329,POINT(-0.094059 51.490211),listed-building-outline,470691,1986-12-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB112.pdf,,II,,,, +listed-building-outline,,42102187,2021-12-08,,"MULTIPOLYGON (((-0.090559 51.492418,-0.090438 51.492395,-0.090423 51.492357,-0.090459 51.492305,-0.090878 51.492189,-0.090960 51.492309,-0.090559 51.492418)))",Lady Margaret church,329,POINT(-0.090690 51.492311),listed-building-outline,470776,1994-08-11,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB192.pdf,,II,,,, +listed-building-outline,,42102188,2021-12-08,,"MULTIPOLYGON (((-0.092739 51.499027,-0.092599 51.499097,-0.092392 51.498946,-0.092508 51.498886,-0.092739 51.499027)))",,329,POINT(-0.092563 51.498991),listed-building-outline,470794,1995-10-23,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB206.pdf,,II,,,, +listed-building-outline,,42102189,2021-12-08,,"MULTIPOLYGON (((-0.104318 51.497293,-0.104366 51.497294,-0.104390 51.497264,-0.104361 51.497254,-0.104411 51.497244,-0.104447 51.497154,-0.104479 51.497165,-0.104512 51.497127,-0.104484 51.497118,-0.104500 51.497098,-0.104545 51.497091,-0.104518 51.497081,-0.104525 51.497043,-0.104595 51.497032,-0.104557 51.497006,-0.104610 51.497015,-0.104644 51.496976,-0.104590 51.496952,-0.104616 51.496923,-0.104678 51.496938,-0.104712 51.496898,-0.104651 51.496877,-0.104667 51.496858,-0.104730 51.496879,-0.104751 51.496856,-0.104705 51.496841,-0.104733 51.496809,-0.104796 51.496803,-0.104737 51.496783,-0.104752 51.496766,-0.104812 51.496787,-0.104848 51.496746,-0.104794 51.496728,-0.104810 51.496710,-0.104878 51.496710,-0.104911 51.496670,-0.104840 51.496647,-0.104855 51.496630,-0.105020 51.496685,-0.104453 51.497338,-0.104318 51.497293)))",Numbers 2-18 and attached railings,329,POINT(-0.104682 51.496985),listed-building-outline,470827,1989-06-16,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB226.pdf,,II,,,, +listed-building-outline,,42102190,2021-12-08,,"MULTIPOLYGON (((-0.105158 51.496773,-0.105192 51.496785,-0.105236 51.496734,-0.105495 51.496795,-0.105371 51.496921,-0.105416 51.496937,-0.105402 51.496953,-0.105248 51.496901,-0.105164 51.496995,-0.105030 51.496948,-0.105158 51.496773)))",Colnbrook Street schools,329,POINT(-0.105254 51.496858),listed-building-outline,470828,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB227.pdf,,II,,,, +listed-building-outline,,42102191,2021-12-08,,"MULTIPOLYGON (((-0.076090 51.503520,-0.075976 51.503619,-0.075838 51.503568,-0.075925 51.503480,-0.076090 51.503520)))",The Anchor Tap public house,329,POINT(-0.075960 51.503547),listed-building-outline,491611,2004-02-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB405.pdf,,II,,,, +listed-building-outline,,42102192,2021-12-08,,"MULTIPOLYGON (((-0.091202 51.497845,-0.091098 51.497807,-0.091564 51.497540,-0.091656 51.497618,-0.091618 51.497600,-0.091415 51.497717,-0.091431 51.497745,-0.091402 51.497725,-0.091202 51.497845)))","Numbers 4, 10, 12 and 18 and attached railings",329,POINT(-0.091371 51.497697),listed-building-outline,470919,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB300.pdf,,II,,,, +listed-building-outline,,42102193,2021-12-08,,"MULTIPOLYGON (((-0.091728 51.497612,-0.091564 51.497540,-0.092139 51.497212,-0.092210 51.497253,-0.092182 51.497270,-0.092220 51.497295,-0.092213 51.497325,-0.092134 51.497298,-0.092170 51.497322,-0.092164 51.497358,-0.092104 51.497317,-0.092097 51.497376,-0.092032 51.497360,-0.092066 51.497382,-0.092044 51.497407,-0.091949 51.497406,-0.091996 51.497453,-0.091925 51.497420,-0.091897 51.497436,-0.091956 51.497475,-0.091867 51.497451,-0.091843 51.497465,-0.091903 51.497505,-0.091816 51.497480,-0.091790 51.497495,-0.091850 51.497536,-0.091736 51.497528,-0.091794 51.497568,-0.091686 51.497557,-0.091749 51.497600,-0.091728 51.497612)))",Numbers 20-40 and attached railings,329,POINT(-0.091906 51.497406),listed-building-outline,470920,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB301.pdf,,II,,,, +listed-building-outline,,42102194,2021-12-08,,"MULTIPOLYGON (((-0.090983 51.497880,-0.091098 51.497807,-0.091218 51.497851,-0.091168 51.497900,-0.091105 51.497877,-0.091069 51.497913,-0.090983 51.497880)))",Surrey dispensary,329,POINT(-0.091103 51.497861),listed-building-outline,470921,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB302.pdf,,II,,,, +listed-building-outline,,42102195,2021-12-08,,"MULTIPOLYGON (((-0.095006 51.495156,-0.094804 51.495098,-0.095067 51.494919,-0.095174 51.494967,-0.095006 51.495156)))",The Star and Cross church,329,POINT(-0.095003 51.495042),listed-building-outline,470922,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB303.pdf,,II,,,, +listed-building-outline,,42102196,2021-12-08,,"MULTIPOLYGON (((-0.063921 51.500296,-0.063860 51.500292,-0.063946 51.500215,-0.063990 51.500234,-0.063921 51.500296)))",,329,POINT(-0.063928 51.500259),listed-building-outline,470923,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB304.pdf,,II,,,, +listed-building-outline,,42102197,2021-12-08,,"MULTIPOLYGON (((-0.087993 51.490156,-0.087952 51.490048,-0.088214 51.489973,-0.088305 51.490044,-0.088414 51.490229,-0.088133 51.490313,-0.087993 51.490156)))",English Martyrs school (part),329,POINT(-0.088179 51.490141),listed-building-outline,470925,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB307.pdf,,II,,,, +listed-building-outline,,42102198,2021-12-08,,"MULTIPOLYGON (((-0.098599 51.488371,-0.098657 51.488414,-0.097946 51.488811,-0.097818 51.488638,-0.097847 51.488629,-0.097790 51.488552,-0.098370 51.488226,-0.098572 51.488384,-0.098599 51.488371)))","Manor place baths and attached wall, piers and railings",329,POINT(-0.098189 51.488508),listed-building-outline,471093,1996-05-31,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB476.pdf,,II,,,, +listed-building-outline,,42102199,2021-12-08,,"MULTIPOLYGON (((-0.108547 51.496311,-0.108471 51.496300,-0.108471 51.496262,-0.108320 51.496260,-0.108320 51.496215,-0.108198 51.496212,-0.108200 51.496117,-0.108229 51.496093,-0.108242 51.495285,-0.108430 51.495287,-0.108452 51.495353,-0.108552 51.495354,-0.108552 51.495385,-0.108831 51.495389,-0.108830 51.495425,-0.108923 51.495425,-0.108925 51.495382,-0.109039 51.495383,-0.109013 51.496103,-0.109049 51.496127,-0.109048 51.496223,-0.108918 51.496222,-0.108919 51.496268,-0.108766 51.496267,-0.108743 51.496312,-0.108547 51.496311)))",Imperial war museum,329,POINT(-0.108620 51.495817),listed-building-outline,471044,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB427.pdf,,II,,,, +listed-building-outline,,42102200,2021-12-08,,"MULTIPOLYGON (((-0.108497 51.497051,-0.108384 51.497048,-0.108336 51.497027,-0.108338 51.496989,-0.108501 51.496971,-0.108497 51.497051)))",Lodge to imperial war museum,329,POINT(-0.108425 51.497013),listed-building-outline,471045,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB428.pdf,,II,,,, +listed-building-outline,,42102201,2021-12-08,,"MULTIPOLYGON (((-0.108453 51.497989,-0.108467 51.498011,-0.108367 51.498072,-0.108261 51.498020,-0.108202 51.498067,-0.108116 51.498026,-0.108085 51.498050,-0.107570 51.497812,-0.107606 51.497782,-0.107454 51.497690,-0.107579 51.497577,-0.107611 51.497568,-0.107679 51.497625,-0.107776 51.497583,-0.108437 51.497905,-0.108366 51.497962,-0.108453 51.497989)))",Roman catholic cathedral of St George,329,POINT(-0.107956 51.497828),listed-building-outline,471047,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB431.pdf,,II,,,, +listed-building-outline,,42102202,2021-12-08,,"MULTIPOLYGON (((-0.109132 51.498246,-0.109132 51.498255,-0.109118 51.498255,-0.109118 51.498246,-0.109132 51.498246)))",K2 telephone kiosk at junction with St George’s road,329,POINT(-0.109125 51.498250),listed-building-outline,471466,1987-04-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB789.pdf,,II,,,, +listed-building-outline,,42102203,2021-12-08,,"MULTIPOLYGON (((-0.095805 51.507181,-0.095801 51.507183,-0.095798 51.507181,-0.095801 51.507179,-0.095805 51.507181)))",Post at west corner of Rose Alley,329,POINT(-0.095801 51.507181),listed-building-outline,471165,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB529.pdf,,II,,,, +listed-building-outline,,42102204,2021-12-08,,"MULTIPOLYGON (((-0.107864 51.506890,-0.107883 51.506920,-0.107656 51.506958,-0.107643 51.506925,-0.107864 51.506890)))",Portico of Unitarian chapel,329,POINT(-0.107760 51.506924),listed-building-outline,471355,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB689.pdf,,II,,,, +listed-building-outline,,42102205,2021-12-08,,"MULTIPOLYGON (((-0.088347 51.506860,-0.087890 51.506813,-0.088038 51.506363,-0.088508 51.506430,-0.088347 51.506860)))","Archway beneath southern end of London Bridge, crossing Tooley Street",329,POINT(-0.088195 51.506615),listed-building-outline,471394,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB724.pdf,,II,,,, +listed-building-outline,,42102206,2021-12-08,,"MULTIPOLYGON (((-0.090787 51.505006,-0.090783 51.505009,-0.090779 51.505007,-0.090783 51.505004,-0.090787 51.505006)))",Cannon bollard between numbers 1 and 2 (numbers 1 and 2 not included),329,POINT(-0.090783 51.505006),listed-building-outline,471356,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkSS1.pdf,,II,,,, +listed-building-outline,,42102207,2021-12-08,,"MULTIPOLYGON (((-0.091021 51.505039,-0.091081 51.505084,-0.090977 51.505143,-0.090917 51.505096,-0.091021 51.505039)))",,329,POINT(-0.090999 51.505091),listed-building-outline,471357,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkSS1.pdf,,II,,,, +listed-building-outline,,42102208,2021-12-08,,"MULTIPOLYGON (((-0.091081 51.505084,-0.091108 51.505068,-0.091185 51.505117,-0.091051 51.505200,-0.090977 51.505143,-0.091081 51.505084)))",The Wheatsheaf public House,329,POINT(-0.091080 51.505133),listed-building-outline,471358,1998-01-08,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkSS2.pdf,,II,,,, +listed-building-outline,,42102209,2021-12-08,,"MULTIPOLYGON (((-0.106948 51.485534,-0.106829 51.485648,-0.106747 51.485616,-0.106789 51.485576,-0.106755 51.485562,-0.106773 51.485543,-0.106657 51.485496,-0.106843 51.485315,-0.107077 51.485409,-0.106927 51.485525,-0.106948 51.485534)))",The Bishops House,329,POINT(-0.106857 51.485468),listed-building-outline,471035,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB416.pdf,,II,,,, +listed-building-outline,,42102210,2021-12-08,,"MULTIPOLYGON (((-0.081683 51.496556,-0.081599 51.496533,-0.081447 51.496503,-0.081499 51.496431,-0.081833 51.496497,-0.081776 51.496581,-0.081683 51.496556)))",Numbers 8-11 and attached railings to number 11,329,POINT(-0.081644 51.496503),listed-building-outline,470969,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB345.pdf,,II,,,, +listed-building-outline,,42102211,2021-12-08,,"MULTIPOLYGON (((-0.078519 51.495485,-0.078642 51.495541,-0.078580 51.495613,-0.078448 51.495571,-0.078519 51.495485)))",Number 45 and attached railings to steps,329,POINT(-0.078546 51.495552),listed-building-outline,470971,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB347.pdf,,II,,,, +listed-building-outline,,42102212,2021-12-08,,"MULTIPOLYGON (((-0.080500 51.496962,-0.080555 51.496884,-0.080574 51.496916,-0.080739 51.496950,-0.080682 51.497017,-0.080500 51.496962)))",,329,POINT(-0.080617 51.496958),listed-building-outline,470972,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB348.pdf,,II,,,, +listed-building-outline,,42102213,2021-12-08,,"MULTIPOLYGON (((-0.080472 51.496870,-0.080555 51.496884,-0.080500 51.496962,-0.080423 51.496939,-0.080472 51.496870)))",,329,POINT(-0.080488 51.496914),listed-building-outline,470973,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB349.pdf,,II,,,, +listed-building-outline,,42102214,2021-12-08,,"MULTIPOLYGON (((-0.080484 51.496852,-0.080423 51.496939,-0.080353 51.496918,-0.080413 51.496833,-0.080484 51.496852)))",,329,POINT(-0.080418 51.496886),listed-building-outline,470974,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB349.pdf,,II,,,, +listed-building-outline,,42102215,2021-12-08,,"MULTIPOLYGON (((-0.080217 51.496877,-0.080278 51.496792,-0.080413 51.496833,-0.080353 51.496918,-0.080217 51.496877)))",,329,POINT(-0.080315 51.496855),listed-building-outline,470975,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB350.pdf,,II,,,, +listed-building-outline,,42102216,2021-12-08,,"MULTIPOLYGON (((-0.079876 51.496713,-0.079982 51.496601,-0.080087 51.496639,-0.079975 51.496751,-0.079876 51.496713)))",,329,POINT(-0.079981 51.496676),listed-building-outline,470976,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB351.pdf,,II,,,, +listed-building-outline,,42102217,2021-12-08,,"MULTIPOLYGON (((-0.092578 51.495235,-0.092585 51.495467,-0.092184 51.495436,-0.092246 51.495397,-0.092244 51.495314,-0.092191 51.495315,-0.092165 51.495265,-0.092578 51.495235)))",Joseph Lancaster primary school,329,POINT(-0.092407 51.495349),listed-building-outline,470998,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB375.pdf,,II,,,, +listed-building-outline,,42102218,2021-12-08,,"MULTIPOLYGON (((-0.086197 51.495644,-0.086073 51.495917,-0.085617 51.495820,-0.085658 51.495724,-0.085963 51.495788,-0.086008 51.495689,-0.085962 51.495681,-0.085980 51.495641,-0.086027 51.495649,-0.086041 51.495616,-0.086197 51.495644)))",Tabard Street Centre (former Tabard Street School),329,POINT(-0.085949 51.495778),listed-building-outline,471124,1996-03-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB559.pdf,,II,,,, +listed-building-outline,,42102219,2021-12-08,,"MULTIPOLYGON (((-0.064778 51.497829,-0.064831 51.497917,-0.064447 51.497976,-0.064417 51.497900,-0.064778 51.497829)))",Numbers 124-130 and attached railings and overthrows,329,POINT(-0.064624 51.497905),listed-building-outline,471030,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB411.pdf,,II,,,, +listed-building-outline,,42102220,2021-12-08,,"MULTIPOLYGON (((-0.106409 51.485240,-0.106228 51.485180,-0.106283 51.485107,-0.106192 51.485174,-0.106161 51.485165,-0.106262 51.485071,-0.106486 51.485166,-0.106409 51.485240)))",,329,POINT(-0.106331 51.485158),listed-building-outline,478810,1999-11-05,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB415.pdf,,II,,,, +listed-building-outline,,42102221,2021-12-08,,"MULTIPOLYGON (((-0.106062 51.485113,-0.106103 51.485076,-0.106033 51.485048,-0.106111 51.485008,-0.106225 51.485057,-0.106191 51.485115,-0.106140 51.485093,-0.106101 51.485129,-0.106062 51.485113)))",,329,POINT(-0.106132 51.485066),listed-building-outline,471034,1984-10-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB416.pdf,,II,,,, +listed-building-outline,,42102222,2021-12-08,,"MULTIPOLYGON (((-0.072538 51.501252,-0.072712 51.501367,-0.072555 51.501473,-0.072339 51.501358,-0.072538 51.501252)))",St Andrews Wharf b warehouse,329,POINT(-0.072532 51.501362),listed-building-outline,471311,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB651.pdf,,II,,,, +listed-building-outline,,42102223,2021-12-08,,"MULTIPOLYGON (((-0.072183 51.501463,-0.072487 51.501531,-0.072443 51.501707,-0.072101 51.501648,-0.072183 51.501463)))",Java Wharf,329,POINT(-0.072301 51.501588),listed-building-outline,471313,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB653.pdf,,II,,,, +listed-building-outline,,42102224,2021-12-08,,"MULTIPOLYGON (((-0.072339 51.501358,-0.072555 51.501473,-0.072487 51.501531,-0.072187 51.501459,-0.072339 51.501358)))",Crown Wharf,329,POINT(-0.072378 51.501451),listed-building-outline,471316,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB656.pdf,,II,,,, +listed-building-outline,,42102225,2021-12-08,,"MULTIPOLYGON (((-0.075570 51.504282,-0.075609 51.504277,-0.075539 51.504481,-0.075489 51.504476,-0.075570 51.504282)))",Horseley down old Stairs and hard,329,POINT(-0.075550 51.504385),listed-building-outline,471325,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB658.pdf,,II,,,, +listed-building-outline,,42102226,2021-12-08,,"MULTIPOLYGON (((-0.054442 51.491895,-0.054366 51.491929,-0.054109 51.491724,-0.053896 51.491716,-0.053924 51.491670,-0.054184 51.491686,-0.054342 51.491816,-0.054402 51.491815,-0.054462 51.491876,-0.054442 51.491895)))",Former Clare College mission church,329,POINT(-0.054219 51.491782),listed-building-outline,471339,1996-06-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB671.pdf,,II,,,, +listed-building-outline,,42102227,2021-12-08,,"MULTIPOLYGON (((-0.060890 51.496956,-0.060550 51.496981,-0.060504 51.496935,-0.060465 51.496939,-0.060450 51.496866,-0.060493 51.496862,-0.060523 51.496809,-0.060720 51.496790,-0.060704 51.496707,-0.060883 51.496699,-0.060916 51.496866,-0.060871 51.496869,-0.060890 51.496956)))",St Crispin with Christchurch,329,POINT(-0.060711 51.496857),listed-building-outline,486898,2000-12-04,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB672.pdf,,II,,,, +listed-building-outline,,42102228,2021-12-08,,"MULTIPOLYGON (((-0.073469 51.496087,-0.073349 51.495834,-0.073660 51.495751,-0.073855 51.495731,-0.074033 51.495995,-0.073889 51.496025,-0.073924 51.496036,-0.073957 51.496106,-0.073934 51.496117,-0.073826 51.496138,-0.073786 51.496048,-0.073706 51.496065,-0.073743 51.496154,-0.073519 51.496196,-0.073469 51.496087),(-0.073842 51.495936,-0.073794 51.495847,-0.073719 51.495873,-0.073731 51.495934,-0.073658 51.495949,-0.073587 51.495892,-0.073527 51.495905,-0.073575 51.495993,-0.073842 51.495936)))",Bermondsey municipal offices and attached railing and brackets,329,POINT(-0.073683 51.495952),listed-building-outline,471350,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB684.pdf,,II,,,, +listed-building-outline,,42102229,2021-12-08,,"MULTIPOLYGON (((-0.074611 51.496045,-0.074585 51.495994,-0.074661 51.495977,-0.074584 51.495808,-0.074498 51.495716,-0.074441 51.495727,-0.074378 51.495617,-0.074689 51.495545,-0.074735 51.495628,-0.074670 51.495617,-0.074822 51.495845,-0.074766 51.495860,-0.074844 51.495995,-0.074611 51.496045)))",Bermondsey public library and attached railings and piers,329,POINT(-0.074640 51.495775),listed-building-outline,471351,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB686.pdf,,II,,,, +listed-building-outline,,42102230,2021-12-08,,"MULTIPOLYGON (((-0.033447 51.495477,-0.033272 51.495512,-0.033255 51.495481,-0.033431 51.495446,-0.033447 51.495477)))",Lock keepers cabin and Storeroom on south quay of Greenland Dock,329,POINT(-0.033351 51.495479),listed-building-outline,471364,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB695.pdf,,II,,,, +listed-building-outline,,42102231,2021-12-08,,"MULTIPOLYGON (((-0.090912 51.493907,-0.091623 51.493866,-0.091689 51.493880,-0.091699 51.493942,-0.090903 51.493985,-0.090912 51.493907)))",,329,POINT(-0.091299 51.493925),listed-building-outline,471122,1970-02-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB496.pdf,,II,,,, +listed-building-outline,,42102232,2021-12-08,,"MULTIPOLYGON (((-0.095885 51.494255,-0.095885 51.494264,-0.095870 51.494264,-0.095871 51.494255,-0.095885 51.494255)))",K2 telephone kiosk opposite junction with Falmouth Road,329,POINT(-0.095878 51.494260),listed-building-outline,471123,1986-12-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB496.pdf,,II,,,, +listed-building-outline,,42102233,2021-12-08,,"MULTIPOLYGON (((-0.090423 51.494010,-0.090392 51.493993,-0.090356 51.493692,-0.090567 51.493685,-0.090561 51.493631,-0.090619 51.493628,-0.090613 51.493585,-0.090691 51.493569,-0.090710 51.493815,-0.090745 51.493813,-0.090750 51.493856,-0.090716 51.493857,-0.090741 51.493982,-0.090423 51.494010),(-0.090592 51.493879,-0.090583 51.493817,-0.090505 51.493821,-0.090513 51.493882,-0.090592 51.493879)))",Driscoll House,329,POINT(-0.090556 51.493821),listed-building-outline,494938,2006-04-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB500.pdf,,II,,,, +listed-building-outline,,42102234,2021-12-08,,"MULTIPOLYGON (((-0.101020 51.494202,-0.101017 51.494157,-0.100907 51.494160,-0.100899 51.494008,-0.101008 51.494005,-0.101003 51.493929,-0.101098 51.493927,-0.101100 51.493959,-0.101872 51.493919,-0.101875 51.493969,-0.101836 51.493970,-0.101849 51.494159,-0.101716 51.494163,-0.101720 51.494211,-0.101598 51.494213,-0.101596 51.494184,-0.101117 51.494198,-0.101120 51.494235,-0.101022 51.494238,-0.101020 51.494202)))",Metropolitan Tabernacle,329,POINT(-0.101391 51.494067),listed-building-outline,471140,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB508.pdf,,II,,,, +listed-building-outline,,42102235,2021-12-08,,"MULTIPOLYGON (((-0.097085 51.498058,-0.097107 51.498082,-0.097029 51.498124,-0.097141 51.498176,-0.097119 51.498188,-0.097178 51.498229,-0.096574 51.498558,-0.096630 51.498607,-0.096669 51.498583,-0.096714 51.498611,-0.096522 51.498725,-0.096421 51.498657,-0.096477 51.498625,-0.096268 51.498483,-0.096216 51.498512,-0.096115 51.498445,-0.096237 51.498374,-0.096147 51.498315,-0.096263 51.498269,-0.096043 51.498117,-0.096586 51.497813,-0.096815 51.497972,-0.096888 51.497928,-0.096973 51.497984,-0.096899 51.498028,-0.096927 51.498047,-0.097001 51.498003,-0.097085 51.498058),(-0.096617 51.498392,-0.096454 51.498483,-0.096509 51.498521,-0.096672 51.498431,-0.096617 51.498392),(-0.096314 51.498387,-0.096376 51.498429,-0.096440 51.498394,-0.096377 51.498351,-0.096314 51.498387),(-0.096994 51.498171,-0.096950 51.498197,-0.096994 51.498227,-0.097038 51.498201,-0.096994 51.498171),(-0.096512 51.498067,-0.096548 51.498091,-0.096575 51.498075,-0.096538 51.498051,-0.096512 51.498067),(-0.096696 51.498005,-0.096661 51.497982,-0.096634 51.497998,-0.096669 51.498021,-0.096696 51.498005),(-0.096427 51.498115,-0.096463 51.498138,-0.096488 51.498123,-0.096453 51.498099,-0.096427 51.498115),(-0.096370 51.498190,-0.096335 51.498167,-0.096308 51.498182,-0.096344 51.498205,-0.096370 51.498190)))",Inner London sessions court,329,POINT(-0.096586 51.498222),listed-building-outline,471142,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB510.pdf,,II,,,, +listed-building-outline,,42102236,2021-12-08,,"MULTIPOLYGON (((-0.081722 51.491808,-0.081618 51.491753,-0.081773 51.491649,-0.081850 51.491628,-0.081955 51.491716,-0.081722 51.491808)))",The White House,329,POINT(-0.081787 51.491719),listed-building-outline,471146,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB513.pdf,,II,,,, +listed-building-outline,,42102237,2021-12-08,,"MULTIPOLYGON (((-0.077188 51.488328,-0.076996 51.488225,-0.077194 51.488103,-0.077235 51.488126,-0.077211 51.488193,-0.077253 51.488216,-0.077312 51.488141,-0.077383 51.488179,-0.077188 51.488328)))",Former fire station,329,POINT(-0.077183 51.488216),listed-building-outline,471148,1989-04-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB515.pdf,,II,,,, +listed-building-outline,,42102238,2021-12-08,,"MULTIPOLYGON (((-0.062565 51.481958,-0.062459 51.482028,-0.062399 51.481994,-0.062318 51.482008,-0.062271 51.481960,-0.062408 51.481869,-0.062565 51.481958)))",Camberwell public library and Livesey museum,329,POINT(-0.062416 51.481953),listed-building-outline,471149,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB516.pdf,,II,,,, +listed-building-outline,,42102239,2021-12-08,,"MULTIPOLYGON (((-0.060675 51.480910,-0.060849 51.480731,-0.060982 51.480786,-0.060925 51.480781,-0.060876 51.480829,-0.060902 51.480839,-0.060886 51.480855,-0.060846 51.480856,-0.060892 51.480872,-0.060973 51.480813,-0.061043 51.480840,-0.060880 51.480973,-0.060675 51.480910)))",The Kentish Drovers public House,329,POINT(-0.060853 51.480863),listed-building-outline,471150,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB517.pdf,,II,,,, +listed-building-outline,,42102240,2021-12-08,,"MULTIPOLYGON (((-0.053986 51.478281,-0.054047 51.478220,-0.054088 51.478237,-0.054143 51.478204,-0.054136 51.478254,-0.054233 51.478293,-0.054092 51.478434,-0.053905 51.478362,-0.053986 51.478281)))",,329,POINT(-0.054071 51.478324),listed-building-outline,471152,1975-05-14,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB519.pdf,,II,,,, +listed-building-outline,,42102241,2021-12-08,,"MULTIPOLYGON (((-0.062718 51.481782,-0.062736 51.481792,-0.062719 51.481803,-0.062702 51.481793,-0.062718 51.481782)))",Statue of George Livesey in the forecourt of the gas works offices,329,POINT(-0.062719 51.481792),listed-building-outline,471153,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB520.pdf,,II,,,, +listed-building-outline,,42102242,2021-12-08,,"MULTIPOLYGON (((-0.105244 51.494689,-0.105111 51.494668,-0.105098 51.494665,-0.105114 51.494625,-0.105264 51.494647,-0.105244 51.494689)))",Number 1 and attached railings,329,POINT(-0.105180 51.494657),listed-building-outline,471155,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB521.pdf,,II,,,, +listed-building-outline,,42102243,2021-12-08,,"MULTIPOLYGON (((-0.105264 51.494647,-0.105176 51.494635,-0.105227 51.494509,-0.105319 51.494525,-0.105264 51.494647)))","Numbers 3, 5 and 7 and attached railings",329,POINT(-0.105247 51.494578),listed-building-outline,471156,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB522.pdf,,II,,,, +listed-building-outline,,42102244,2021-12-08,,"MULTIPOLYGON (((-0.059195 51.499600,-0.059054 51.499625,-0.059065 51.499662,-0.058989 51.499672,-0.059005 51.499723,-0.058886 51.499738,-0.058850 51.499622,-0.059174 51.499554,-0.059195 51.499600)))","Sir William Gaitskell House, railings, handrail and lamp holder",329,POINT(-0.058992 51.499642),listed-building-outline,471157,1970-04-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB523.pdf,,II,,,, +listed-building-outline,,42102245,2021-12-08,,"MULTIPOLYGON (((-0.088746 51.490978,-0.088705 51.491065,-0.088591 51.491044,-0.088620 51.490981,-0.088746 51.490978)))",Presbytery to the roman catholic church of the English Martyrs,329,POINT(-0.088669 51.491017),listed-building-outline,471229,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB582.pdf,,II,,,, +listed-building-outline,,42102246,2021-12-08,,"MULTIPOLYGON (((-0.088367 51.491020,-0.088293 51.490933,-0.088853 51.490769,-0.088926 51.490862,-0.088800 51.490923,-0.088756 51.491013,-0.088732 51.491009,-0.088768 51.490936,-0.088591 51.490967,-0.088622 51.490982,-0.088582 51.491064,-0.088367 51.491020)))",Roman catholic church of the English Martyrs,329,POINT(-0.088611 51.490918),listed-building-outline,471230,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB583.pdf,,II,,,, +listed-building-outline,,42102247,2021-12-08,,"MULTIPOLYGON (((-0.055628 51.501234,-0.055485 51.501282,-0.055371 51.501116,-0.055493 51.501076,-0.055628 51.501234)))",,329,POINT(-0.055496 51.501179),listed-building-outline,471239,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB589.pdf,,II,,,, +listed-building-outline,,42102248,2021-12-08,,"MULTIPOLYGON (((-0.055485 51.501282,-0.055418 51.501305,-0.055294 51.501142,-0.055371 51.501116,-0.055485 51.501282)))",,329,POINT(-0.055391 51.501209),listed-building-outline,471240,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB591.pdf,,II,,,, +listed-building-outline,,42102249,2021-12-08,,"MULTIPOLYGON (((-0.055254 51.501157,-0.055294 51.501142,-0.055418 51.501305,-0.055311 51.501343,-0.055185 51.501182,-0.055254 51.501157)))",,329,POINT(-0.055302 51.501243),listed-building-outline,471241,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB591.pdf,,II,,,, +listed-building-outline,,42102250,2021-12-08,,"MULTIPOLYGON (((-0.054938 51.501283,-0.054959 51.501273,-0.055050 51.501357,-0.054960 51.501399,-0.054873 51.501315,-0.054938 51.501283)))",,329,POINT(-0.054961 51.501336),listed-building-outline,471242,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB592.pdf,,II,,,, +listed-building-outline,,42102251,2021-12-08,,"MULTIPOLYGON (((-0.053398 51.501770,-0.053511 51.501752,-0.053599 51.501905,-0.053435 51.501945,-0.053334 51.501787,-0.053398 51.501770)))",Grices Wharf,329,POINT(-0.053468 51.501846),listed-building-outline,471244,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB594.pdf,,II,,,, +listed-building-outline,,42102252,2021-12-08,,"MULTIPOLYGON (((-0.052215 51.502158,-0.052165 51.502100,-0.052579 51.501985,-0.052711 51.502148,-0.052306 51.502271,-0.052215 51.502158),(-0.052361 51.502096,-0.052480 51.502061,-0.052487 51.502049,-0.052451 51.502031,-0.052343 51.502063,-0.052361 51.502096),(-0.052340 51.502099,-0.052311 51.502071,-0.052204 51.502115,-0.052237 51.502136,-0.052340 51.502099)))",Brandrams Wharf,329,POINT(-0.052449 51.502131),listed-building-outline,471245,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB595.pdf,,II,,,, +listed-building-outline,,42102253,2021-12-08,,"MULTIPOLYGON (((-0.052037 51.502360,-0.052008 51.502358,-0.051878 51.502202,-0.052025 51.502142,-0.052161 51.502304,-0.052037 51.502360)))",,329,POINT(-0.052020 51.502254),listed-building-outline,471246,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB596.pdf,,II,,,, +listed-building-outline,,42102254,2021-12-08,,"MULTIPOLYGON (((-0.067227 51.487523,-0.066947 51.487430,-0.066998 51.487333,-0.066820 51.487270,-0.066931 51.487147,-0.067080 51.487199,-0.067133 51.487139,-0.067240 51.487175,-0.067169 51.487252,-0.067122 51.487236,-0.067062 51.487302,-0.067247 51.487377,-0.067365 51.487247,-0.067410 51.487263,-0.067552 51.487108,-0.067362 51.487051,-0.067443 51.486962,-0.067625 51.487027,-0.067693 51.486949,-0.067474 51.486846,-0.067569 51.486740,-0.067735 51.486799,-0.067684 51.486858,-0.067815 51.486904,-0.067696 51.487009,-0.067760 51.487033,-0.067681 51.487121,-0.067639 51.487107,-0.067612 51.487136,-0.067654 51.487151,-0.067500 51.487323,-0.067435 51.487300,-0.067384 51.487355,-0.067478 51.487388,-0.067408 51.487467,-0.067321 51.487437,-0.067280 51.487484,-0.067367 51.487514,-0.067326 51.487560,-0.067227 51.487523)))",Eveline Lowe school,329,POINT(-0.067345 51.487197),listed-building-outline,494384,2006-07-03,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB478.pdf,,II,,,, +listed-building-outline,,42102255,2021-12-08,,"MULTIPOLYGON (((-0.091583 51.498134,-0.091611 51.498106,-0.091676 51.498130,-0.091814 51.497986,-0.091763 51.497966,-0.091818 51.497933,-0.091818 51.497895,-0.092158 51.497561,-0.092266 51.497601,-0.091664 51.498219,-0.091608 51.498199,-0.091629 51.498151,-0.091583 51.498134)))",Numbers 1-13 and attached railings,329,POINT(-0.091944 51.497860),listed-building-outline,471094,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB480.pdf,,II,,,, +listed-building-outline,,42102256,2021-12-08,,"MULTIPOLYGON (((-0.092332 51.497625,-0.092266 51.497601,-0.092319 51.497547,-0.092533 51.497609,-0.092471 51.497676,-0.092332 51.497625)))","Numbers 14, 15 and 16 and attached railings",329,POINT(-0.092401 51.497609),listed-building-outline,471095,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB481.pdf,,II,,,, +listed-building-outline,,42102257,2021-12-08,,"MULTIPOLYGON (((-0.092707 51.497767,-0.092574 51.497714,-0.092645 51.497641,-0.092874 51.497753,-0.092770 51.497793,-0.092707 51.497767)))","Numbers 17, 18 and 19 and attached railings",329,POINT(-0.092714 51.497723),listed-building-outline,471096,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB482.pdf,,II,,,, +listed-building-outline,,42102258,2021-12-08,,"MULTIPOLYGON (((-0.092310 51.498269,-0.092797 51.497764,-0.092845 51.497783,-0.092826 51.497803,-0.092860 51.497826,-0.092851 51.497862,-0.092758 51.497931,-0.092789 51.497942,-0.092739 51.497949,-0.092566 51.498160,-0.092480 51.498216,-0.092488 51.498239,-0.092434 51.498219,-0.092238 51.498425,-0.092180 51.498405,-0.092310 51.498269)))",Numbers 20-32 and attached railings,329,POINT(-0.092560 51.498073),listed-building-outline,471097,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB483.pdf,,II,,,, +listed-building-outline,,42102259,2021-12-08,,"MULTIPOLYGON (((-0.071805 51.501501,-0.071870 51.501539,-0.071500 51.501770,-0.071070 51.501529,-0.071357 51.501268,-0.071486 51.501328,-0.071454 51.501358,-0.071543 51.501355,-0.071805 51.501501)))",St Saviours Wharf,329,POINT(-0.071457 51.501523),listed-building-outline,471113,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB487.pdf,,II,,,, +listed-building-outline,,42102260,2021-12-08,,"MULTIPOLYGON (((-0.072380 51.501146,-0.072226 51.501209,-0.071702 51.500936,-0.071814 51.500851,-0.072380 51.501146)))",Unity Wharf,329,POINT(-0.072031 51.501035),listed-building-outline,471117,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB491.pdf,,II,,,, +listed-building-outline,,42102261,2021-12-08,,"MULTIPOLYGON (((-0.088679 51.490534,-0.088755 51.490632,-0.088369 51.490749,-0.088276 51.490629,-0.088679 51.490534)))",English Martyrs primary school,329,POINT(-0.088513 51.490638),listed-building-outline,470926,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB308.pdf,,II,,,, +listed-building-outline,,42102262,2021-12-08,,"MULTIPOLYGON (((-0.068887 51.501020,-0.068829 51.501103,-0.068769 51.501080,-0.068896 51.500892,-0.068978 51.500887,-0.068887 51.501020)))",,329,POINT(-0.068869 51.500990),listed-building-outline,470949,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB324.pdf,,II,,,, +listed-building-outline,,42102263,2021-12-08,,"MULTIPOLYGON (((-0.104116 51.497328,-0.104128 51.497293,-0.104152 51.497322,-0.104184 51.497316,-0.104181 51.497282,-0.104219 51.497309,-0.104260 51.497279,-0.104453 51.497338,-0.104049 51.497411,-0.104020 51.497347,-0.104116 51.497328)))",Numbers 3-11 and attached railings,329,POINT(-0.104210 51.497345),listed-building-outline,470950,1989-06-16,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB325.pdf,,II,,,, +listed-building-outline,,42102264,2021-12-08,,"MULTIPOLYGON (((-0.104017 51.497652,-0.104001 51.497619,-0.103954 51.497648,-0.103905 51.497565,-0.105462 51.497287,-0.105493 51.497353,-0.105375 51.497374,-0.105392 51.497442,-0.105357 51.497448,-0.105326 51.497382,-0.105198 51.497428,-0.105189 51.497407,-0.105058 51.497453,-0.104985 51.497444,-0.104994 51.497464,-0.104951 51.497449,-0.104857 51.497489,-0.104847 51.497468,-0.104654 51.497524,-0.104645 51.497505,-0.104552 51.497543,-0.104543 51.497523,-0.104448 51.497561,-0.104304 51.497566,-0.104313 51.497588,-0.104267 51.497608,-0.104231 51.497578,-0.104169 51.497589,-0.104166 51.497626,-0.104104 51.497601,-0.104104 51.497647,-0.104042 51.497612,-0.104052 51.497636,-0.104017 51.497652)))",Albert terrace and railings,329,POINT(-0.104697 51.497467),listed-building-outline,470951,1989-06-16,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB326.pdf,,II,,,, +listed-building-outline,,42102265,2021-12-08,,"MULTIPOLYGON (((-0.104773 51.497232,-0.104837 51.497159,-0.104895 51.497179,-0.104886 51.497214,-0.104998 51.497150,-0.105009 51.497172,-0.105094 51.497157,-0.105104 51.497131,-0.105116 51.497155,-0.105294 51.497121,-0.105326 51.497089,-0.105364 51.497108,-0.105354 51.497086,-0.105409 51.497105,-0.105427 51.497060,-0.105497 51.497061,-0.105462 51.497021,-0.105531 51.497022,-0.105495 51.497009,-0.105499 51.496981,-0.105646 51.497032,-0.105539 51.497148,-0.104776 51.497284,-0.104746 51.497262,-0.104773 51.497232)))",Numbers 13-35 and attached railings,329,POINT(-0.105223 51.497154),listed-building-outline,470952,1989-06-16,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB327.pdf,,II,,,, +listed-building-outline,,42102266,2021-12-08,,"MULTIPOLYGON (((-0.042083 51.507282,-0.041964 51.506927,-0.042382 51.506865,-0.042817 51.506755,-0.042996 51.507236,-0.042118 51.507357,-0.042083 51.507282),(-0.042389 51.507169,-0.042351 51.507061,-0.042257 51.507086,-0.042291 51.507183,-0.042389 51.507169),(-0.042594 51.507087,-0.042574 51.507030,-0.042479 51.507056,-0.042513 51.507152,-0.042612 51.507139,-0.042594 51.507087),(-0.042787 51.507001,-0.042693 51.507028,-0.042728 51.507123,-0.042825 51.507109,-0.042787 51.507001),(-0.042662 51.506944,-0.042682 51.507000,-0.042782 51.506986,-0.042762 51.506930,-0.042662 51.506944),(-0.042450 51.506973,-0.042470 51.507029,-0.042569 51.507016,-0.042549 51.506960,-0.042450 51.506973),(-0.042248 51.507060,-0.042346 51.507046,-0.042326 51.506990,-0.042228 51.507004,-0.042248 51.507060)))",Globe Wharf,329,POINT(-0.042476 51.507075),listed-building-outline,471247,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB597.pdf,,II,,,, +listed-building-outline,,42102267,2021-12-08,,"MULTIPOLYGON (((-0.033960 51.504600,-0.033966 51.504526,-0.034098 51.504523,-0.034089 51.504661,-0.033956 51.504663,-0.033960 51.504600)))",,329,POINT(-0.034027 51.504593),listed-building-outline,471248,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB598.pdf,,II,,,, +listed-building-outline,,42102268,2021-12-08,,"MULTIPOLYGON (((-0.048865 51.504270,-0.048764 51.504280,-0.048727 51.504224,-0.048838 51.504190,-0.048885 51.504229,-0.048865 51.504270)))",Air shaft to the Rotherhithe Tunnel,329,POINT(-0.048810 51.504238),listed-building-outline,471251,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB600.pdf,,II,,,, +listed-building-outline,,42102269,2021-12-08,,"MULTIPOLYGON (((-0.053712 51.501789,-0.053721 51.501831,-0.053696 51.501836,-0.053685 51.501793,-0.053712 51.501789)))",Church Stairs,329,POINT(-0.053703 51.501812),listed-building-outline,471261,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB602.pdf,,II,,,, +listed-building-outline,,42102270,2021-12-08,,"MULTIPOLYGON (((-0.055123 51.500872,-0.055355 51.501028,-0.055392 51.501075,-0.055098 51.501185,-0.054888 51.500958,-0.055123 51.500872)))",East India Wharf,329,POINT(-0.055135 51.501026),listed-building-outline,471262,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB603.pdf,,II,,,, +listed-building-outline,,42102271,2021-12-08,,"MULTIPOLYGON (((-0.072538 51.501252,-0.072704 51.501162,-0.072873 51.501272,-0.072712 51.501367,-0.072538 51.501252)))",St Andrews Wharf a warehouse,329,POINT(-0.072706 51.501264),listed-building-outline,471310,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB650.pdf,,II,,,, +listed-building-outline,,42102272,2021-12-08,,"MULTIPOLYGON (((-0.043684 51.454105,-0.043616 51.454024,-0.043689 51.454003,-0.043668 51.453975,-0.043518 51.454017,-0.043499 51.453988,-0.043888 51.453877,-0.043988 51.454075,-0.043878 51.454106,-0.043845 51.454059,-0.043684 51.454105)))","Crematorium, Camberwell New Cemetery",329,POINT(-0.043787 51.454000),listed-building-outline,470678,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB104.pdf,,II,,,, +listed-building-outline,,42102273,2021-12-08,,"MULTIPOLYGON (((-0.047689 51.453971,-0.047864 51.453874,-0.047918 51.453909,-0.047840 51.453974,-0.047863 51.453990,-0.047763 51.454051,-0.047663 51.453986,-0.047689 51.453971)))","Lodge, Camberwell New Cemetery",329,POINT(-0.047794 51.453964),listed-building-outline,470688,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB108.pdf,,II,,,, +listed-building-outline,,42102274,2021-12-08,,"MULTIPOLYGON (((-0.046416 51.453624,-0.046354 51.453585,-0.046362 51.453561,-0.046502 51.453461,-0.046529 51.453478,-0.046574 51.453450,-0.046548 51.453434,-0.046602 51.453400,-0.046622 51.453413,-0.046714 51.453349,-0.046816 51.453386,-0.046458 51.453624,-0.046416 51.453624)))","Mortuary chapels, Camberwell New Cemetery",329,POINT(-0.046569 51.453490),listed-building-outline,470689,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB109.pdf,,II,,,, +listed-building-outline,,42102275,2021-12-08,,"MULTIPOLYGON (((-0.047291 51.454266,-0.047248 51.454238,-0.047342 51.454181,-0.047442 51.454246,-0.047348 51.454303,-0.047291 51.454266)))","Waiting room, Camberwell New Cemetery",329,POINT(-0.047345 51.454242),listed-building-outline,470690,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB111.pdf,,II,,,, +listed-building-outline,,42102276,2021-12-08,,"MULTIPOLYGON (((-0.084815 51.474921,-0.084730 51.474911,-0.084721 51.474814,-0.084958 51.474804,-0.084968 51.474901,-0.084815 51.474921)))",Numbers 1 and 2 and attached railings,329,POINT(-0.084844 51.474861),listed-building-outline,470693,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB114.pdf,,II,,,, +listed-building-outline,,42102277,2021-12-08,,"MULTIPOLYGON (((-0.085090 51.474909,-0.085000 51.474899,-0.084990 51.474804,-0.085233 51.474794,-0.085243 51.474889,-0.085090 51.474909)))",Numbers 3 and 4 and attached railings,329,POINT(-0.085116 51.474850),listed-building-outline,470694,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB115.pdf,,II,,,, +listed-building-outline,,42102278,2021-12-08,,"MULTIPOLYGON (((-0.087922 51.482168,-0.087956 51.482123,-0.088030 51.482146,-0.087991 51.482190,-0.087922 51.482168)))","Lime kiln, south south west of junction of Albany Road and Wells Way",329,POINT(-0.087975 51.482157),listed-building-outline,470695,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB116.pdf,,II,,,, +listed-building-outline,,42102279,2021-12-08,,"MULTIPOLYGON (((-0.091851 51.473962,-0.091872 51.473951,-0.091853 51.473923,-0.091807 51.473898,-0.091923 51.473869,-0.092044 51.474043,-0.091928 51.474073,-0.091851 51.473962)))",,329,POINT(-0.091930 51.473973),listed-building-outline,470696,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB117.pdf,,II,,,, +listed-building-outline,,42102280,2021-12-08,,"MULTIPOLYGON (((-0.087397 51.473315,-0.087382 51.473406,-0.087303 51.473399,-0.087309 51.473363,-0.087282 51.473361,-0.087324 51.473295,-0.087397 51.473315)))",,329,POINT(-0.087345 51.473352),listed-building-outline,470697,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB118.pdf,,II,,,, +listed-building-outline,,42102281,2021-12-08,,"MULTIPOLYGON (((-0.093394 51.474382,-0.093493 51.474388,-0.093499 51.474426,-0.093268 51.474441,-0.093256 51.474390,-0.093394 51.474382)))",Number 15 and attached railings,329,POINT(-0.093374 51.474410),listed-building-outline,470700,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB121.pdf,,II,,,, +listed-building-outline,,42102282,2021-12-08,,"MULTIPOLYGON (((-0.093350 51.474229,-0.093380 51.474230,-0.093506 51.474255,-0.093481 51.474311,-0.093248 51.474341,-0.093245 51.474215,-0.093350 51.474229)))",Former London County bank,329,POINT(-0.093355 51.474278),listed-building-outline,470701,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB122.pdf,,II,,,, +listed-building-outline,,42102283,2021-12-08,,"MULTIPOLYGON (((-0.088372 51.473082,-0.088472 51.473053,-0.088508 51.473097,-0.088387 51.473129,-0.088372 51.473082)))",Number 21 and attached railings,329,POINT(-0.088436 51.473091),listed-building-outline,470702,1979-10-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB123.pdf,,II,,,, +listed-building-outline,,42102284,2021-12-08,,"MULTIPOLYGON (((-0.088146 51.473054,-0.088144 51.473017,-0.088274 51.472976,-0.088227 51.472914,-0.088322 51.472886,-0.088460 51.473057,-0.088360 51.473085,-0.088337 51.473054,-0.088220 51.473104,-0.088146 51.473054)))",Numbers 23-29 and attached railings,329,POINT(-0.088298 51.473008),listed-building-outline,470703,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB124.pdf,,II,,,, +listed-building-outline,,42102285,2021-12-08,,"MULTIPOLYGON (((-0.088153 51.472887,-0.088132 51.472861,-0.088060 51.472865,-0.088244 51.472810,-0.088308 51.472891,-0.088184 51.472927,-0.088153 51.472887)))",Numbers 31 and 33 and attached railings,329,POINT(-0.088210 51.472868),listed-building-outline,470704,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB125.pdf,,II,,,, +listed-building-outline,,42102286,2021-12-08,,"MULTIPOLYGON (((-0.087808 51.471770,-0.087972 51.471738,-0.088002 51.471825,-0.087854 51.471853,-0.087808 51.471770)))",Number 34 and attached railings,329,POINT(-0.087909 51.471796),listed-building-outline,470705,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB126.pdf,,II,,,, +listed-building-outline,,42102287,2021-12-08,,"MULTIPOLYGON (((-0.088090 51.472844,-0.088065 51.472814,-0.088001 51.472821,-0.088060 51.472803,-0.087963 51.472680,-0.087912 51.472694,-0.087952 51.472665,-0.087827 51.472509,-0.087943 51.472475,-0.088141 51.472690,-0.088215 51.472818,-0.088046 51.472858,-0.088090 51.472844)))",Numbers 35-45 and attached railings,329,POINT(-0.088027 51.472664),listed-building-outline,470706,1971-05-03,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB127.pdf,,II,,,, +listed-building-outline,,42102288,2021-12-08,,"MULTIPOLYGON (((-0.087755 51.471667,-0.087948 51.471628,-0.087963 51.471655,-0.087856 51.471695,-0.087874 51.471730,-0.087794 51.471746,-0.087755 51.471667)))",,329,POINT(-0.087847 51.471683),listed-building-outline,470707,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB128.pdf,,II,,,, +listed-building-outline,,42102289,2021-12-08,,"MULTIPOLYGON (((-0.087711 51.471610,-0.087277 51.471063,-0.087217 51.470962,-0.087338 51.470926,-0.087409 51.471019,-0.087457 51.471025,-0.087422 51.471035,-0.087552 51.471208,-0.087619 51.471225,-0.087587 51.471253,-0.087830 51.471573,-0.087711 51.471610)))",Numbers 38-60 and attached area railings,329,POINT(-0.087518 51.471263),listed-building-outline,470708,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB129.pdf,,II,,,, +listed-building-outline,,42102290,2021-12-08,,"MULTIPOLYGON (((-0.087785 51.472219,-0.087799 51.472215,-0.087867 51.472315,-0.087750 51.472337,-0.087687 51.472242,-0.087785 51.472219)))",Numbers 53 and 55 including railings and handrails,329,POINT(-0.087776 51.472277),listed-building-outline,470709,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB130.pdf,,II,,,, +listed-building-outline,,42102291,2021-12-08,,"MULTIPOLYGON (((-0.094607 51.498526,-0.094629 51.498503,-0.094545 51.498502,-0.094567 51.498478,-0.094521 51.498461,-0.094499 51.498484,-0.094480 51.498477,-0.094502 51.498454,-0.094462 51.498438,-0.094439 51.498461,-0.094419 51.498453,-0.094441 51.498430,-0.094392 51.498411,-0.094368 51.498434,-0.094373 51.498404,-0.094312 51.498412,-0.094314 51.498382,-0.094269 51.498364,-0.094229 51.498381,-0.094330 51.498278,-0.094364 51.498292,-0.094347 51.498310,-0.094754 51.498464,-0.094693 51.498528,-0.094607 51.498526)))",Numbers 16-22 and attached railings,329,POINT(-0.094499 51.498415),listed-building-outline,471414,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB742.pdf,,II,,,, +listed-building-outline,,42102292,2021-12-08,,"MULTIPOLYGON (((-0.094082 51.498292,-0.094035 51.498274,-0.094014 51.498297,-0.094016 51.498268,-0.093975 51.498252,-0.093953 51.498274,-0.093957 51.498245,-0.093911 51.498228,-0.093890 51.498251,-0.093890 51.498220,-0.093846 51.498203,-0.093825 51.498226,-0.093829 51.498197,-0.093784 51.498180,-0.093743 51.498195,-0.093764 51.498173,-0.093723 51.498157,-0.093683 51.498173,-0.093702 51.498149,-0.093552 51.498092,-0.093594 51.498049,-0.093574 51.498041,-0.093604 51.498009,-0.093726 51.498055,-0.093753 51.498027,-0.093822 51.498053,-0.093782 51.498096,-0.093981 51.498148,-0.093960 51.498163,-0.094058 51.498200,-0.094067 51.498181,-0.094156 51.498237,-0.094060 51.498315,-0.094082 51.498292)))",Numbers 23-29 and attached railings,329,POINT(-0.093842 51.498152),listed-building-outline,471415,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB743.pdf,,II,,,, +listed-building-outline,,42102293,2021-12-08,,"MULTIPOLYGON (((-0.092990 51.498742,-0.092878 51.498700,-0.092924 51.498701,-0.092964 51.498657,-0.092999 51.498670,-0.093023 51.498642,-0.092994 51.498631,-0.093047 51.498619,-0.093054 51.498576,-0.093107 51.498559,-0.093079 51.498549,-0.093095 51.498533,-0.093147 51.498516,-0.093104 51.498499,-0.093119 51.498483,-0.093165 51.498500,-0.093189 51.498475,-0.093153 51.498461,-0.093192 51.498420,-0.093229 51.498433,-0.093555 51.498093,-0.093656 51.498132,-0.093626 51.498161,-0.093651 51.498185,-0.093616 51.498172,-0.093587 51.498203,-0.093612 51.498225,-0.093577 51.498213,-0.093548 51.498242,-0.093573 51.498265,-0.093537 51.498254,-0.093506 51.498287,-0.093529 51.498310,-0.093495 51.498299,-0.093463 51.498331,-0.093489 51.498353,-0.093453 51.498341,-0.093423 51.498372,-0.093446 51.498396,-0.093412 51.498384,-0.093381 51.498415,-0.093416 51.498428,-0.093370 51.498427,-0.093337 51.498461,-0.093363 51.498483,-0.093329 51.498470,-0.093300 51.498500,-0.093335 51.498511,-0.093259 51.498542,-0.093282 51.498566,-0.093248 51.498553,-0.093217 51.498586,-0.093241 51.498609,-0.093207 51.498596,-0.093176 51.498627,-0.093199 51.498653,-0.093165 51.498639,-0.093135 51.498670,-0.093160 51.498693,-0.093125 51.498680,-0.093096 51.498710,-0.093119 51.498735,-0.093085 51.498722,-0.093046 51.498762,-0.092990 51.498742)))",Numbers 30-44 and attached railings,329,POINT(-0.093283 51.498442),listed-building-outline,471416,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB744.pdf,,II,,,, +listed-building-outline,,42102294,2021-12-08,,"MULTIPOLYGON (((-0.094008 51.499419,-0.093952 51.499424,-0.093922 51.499412,-0.093940 51.499393,-0.093830 51.499351,-0.093811 51.499370,-0.092874 51.498984,-0.092845 51.499014,-0.092819 51.499004,-0.092847 51.498974,-0.092706 51.498950,-0.092731 51.498926,-0.092573 51.498863,-0.092543 51.498910,-0.092508 51.498886,-0.092601 51.498792,-0.094222 51.499415,-0.094146 51.499472,-0.094008 51.499419)))",Numbers 45-68 and attached railings,329,POINT(-0.093374 51.499139),listed-building-outline,471417,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB745.pdf,,II,,,, +listed-building-outline,,42102295,2021-12-08,,"MULTIPOLYGON (((-0.093649 51.498871,-0.093660 51.498874,-0.093654 51.498882,-0.093643 51.498878,-0.093649 51.498871)))",Statue in centre of Trinity Church Square,329,POINT(-0.093652 51.498876),listed-building-outline,471418,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB746.pdf,,II,,,, +listed-building-outline,,42102296,2021-12-08,,"MULTIPOLYGON (((-0.093921 51.498768,-0.093678 51.498677,-0.093731 51.498615,-0.093653 51.498586,-0.093725 51.498511,-0.093694 51.498483,-0.093737 51.498499,-0.093806 51.498427,-0.094070 51.498495,-0.094048 51.498518,-0.094212 51.498581,-0.094061 51.498738,-0.093979 51.498707,-0.093921 51.498768)))","The Henry wood hall, including gate piers and railings",329,POINT(-0.093915 51.498599),listed-building-outline,471419,1950-03-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB747.pdf,,II,,,, +listed-building-outline,,42102297,2021-12-08,,"MULTIPOLYGON (((-0.093345 51.498845,-0.093345 51.498854,-0.093330 51.498854,-0.093331 51.498845,-0.093345 51.498845)))",K2 telephone kiosk to north east of the Henry Wood Hall,329,POINT(-0.093338 51.498850),listed-building-outline,471420,1986-12-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB748.pdf,,II,,,, +listed-building-outline,,42102298,2021-12-08,,"MULTIPOLYGON (((-0.052974 51.501529,-0.053069 51.501627,-0.053011 51.501645,-0.053031 51.501670,-0.053000 51.501679,-0.052897 51.501553,-0.052974 51.501529)))",Engine House and chimney,329,POINT(-0.052983 51.501598),listed-building-outline,471428,1974-01-31,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB752.pdf,,II,,,, +listed-building-outline,,42102299,2021-12-08,,"MULTIPOLYGON (((-0.092077 51.492804,-0.092104 51.492884,-0.091966 51.492902,-0.091944 51.492840,-0.092077 51.492804)))",Elephant House,329,POINT(-0.092026 51.492857),listed-building-outline,471444,1974-08-21,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB763.pdf,,II,,,, +listed-building-outline,,42102300,2021-12-08,,"MULTIPOLYGON (((-0.097708 51.490946,-0.097646 51.490886,-0.097667 51.490881,-0.097652 51.490848,-0.097518 51.490635,-0.097633 51.490607,-0.097836 51.490893,-0.097906 51.490896,-0.097708 51.490946)))",,329,POINT(-0.097683 51.490784),listed-building-outline,471447,1974-01-31,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB765.pdf,,II,,,, +listed-building-outline,,42102301,2021-12-08,,"MULTIPOLYGON (((-0.095002 51.487042,-0.095028 51.487081,-0.094548 51.487191,-0.094520 51.487151,-0.095002 51.487042)))",Kennedys Sausages,329,POINT(-0.094773 51.487117),listed-building-outline,504805,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB766.pdf,,II,,,, +listed-building-outline,,42102302,2021-12-08,,"MULTIPOLYGON (((-0.097035 51.490677,-0.097143 51.490805,-0.096828 51.490878,-0.096850 51.490903,-0.096721 51.490952,-0.096570 51.490788,-0.096664 51.490755,-0.096705 51.490797,-0.097035 51.490677)))",Southwark central library and Cuming museum,329,POINT(-0.096855 51.490810),listed-building-outline,471448,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB768.pdf,,II,,,, +listed-building-outline,,42102303,2021-12-08,,"MULTIPOLYGON (((-0.096564 51.491215,-0.096420 51.491011,-0.096622 51.490955,-0.096676 51.491031,-0.096674 51.491002,-0.096777 51.490992,-0.096729 51.490950,-0.096793 51.490925,-0.096809 51.490983,-0.096849 51.490972,-0.096812 51.490917,-0.097034 51.490843,-0.097171 51.491029,-0.096564 51.491215)))",Southwark municipal offices and attached railings,329,POINT(-0.096797 51.491033),listed-building-outline,471449,1996-05-31,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB770.pdf,,II,,,, +listed-building-outline,,42102304,2021-12-08,,"MULTIPOLYGON (((-0.106021 51.495403,-0.106274 51.495001,-0.106449 51.495045,-0.106218 51.495405,-0.106168 51.495393,-0.106112 51.495480,-0.106162 51.495492,-0.106046 51.495671,-0.105879 51.495631,-0.106021 51.495403)))",Numbers 6-19 and attached railings,329,POINT(-0.106164 51.495330),listed-building-outline,471461,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB784.pdf,,II,,,, +listed-building-outline,,42102305,2021-12-08,,"MULTIPOLYGON (((-0.106253 51.494948,-0.106125 51.494915,-0.105870 51.494850,-0.105939 51.494741,-0.105991 51.494767,-0.105984 51.494803,-0.106099 51.494772,-0.106066 51.494823,-0.106100 51.494831,-0.106121 51.494797,-0.106159 51.494806,-0.106158 51.494845,-0.106258 51.494791,-0.106312 51.494813,-0.106295 51.494840,-0.106322 51.494866,-0.106298 51.494888,-0.106356 51.494903,-0.106331 51.494941,-0.106253 51.494948)))",Numbers 20-24 and attached railings,329,POINT(-0.106121 51.494855),listed-building-outline,471462,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB785.pdf,,II,,,, +listed-building-outline,,42102306,2021-12-08,,"MULTIPOLYGON (((-0.105343 51.494716,-0.105415 51.494601,-0.105464 51.494611,-0.105437 51.494646,-0.105550 51.494632,-0.105525 51.494667,-0.105621 51.494693,-0.105664 51.494629,-0.105710 51.494632,-0.105664 51.494703,-0.105774 51.494691,-0.105702 51.494806,-0.105343 51.494716)))",Numbers 25-28 and attached railings,329,POINT(-0.105557 51.494708),listed-building-outline,471463,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB786.pdf,,II,,,, +listed-building-outline,,42102307,2021-12-08,,"MULTIPOLYGON (((-0.104576 51.495379,-0.104588 51.495332,-0.104676 51.495379,-0.104732 51.495287,-0.104647 51.495267,-0.104661 51.495245,-0.104746 51.495267,-0.104760 51.495245,-0.104724 51.495237,-0.104816 51.495157,-0.104785 51.495150,-0.104819 51.495067,-0.104873 51.495068,-0.104894 51.495037,-0.104845 51.494994,-0.104882 51.495004,-0.105111 51.494668,-0.105244 51.494689,-0.104763 51.495451,-0.104576 51.495379)))",Numbers 29-45 and attached railings,329,POINT(-0.104928 51.495061),listed-building-outline,471464,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB787.pdf,,II,,,, +listed-building-outline,,42102308,2021-12-08,,"MULTIPOLYGON (((-0.087525 51.472104,-0.087356 51.471933,-0.087381 51.471906,-0.087487 51.471875,-0.087687 51.472141,-0.087568 51.472163,-0.087525 51.472104)))",,329,POINT(-0.087519 51.472018),listed-building-outline,470710,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB131.pdf,,II,,,, +listed-building-outline,,42102309,2021-12-08,,"MULTIPOLYGON (((-0.036514 51.495744,-0.036758 51.495693,-0.036768 51.495705,-0.036419 51.495763,-0.036514 51.495744)))",Swing Bridge over cutting between Greenland dock and Norway Dock,329,POINT(-0.036652 51.495720),listed-building-outline,471365,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB696.pdf,,II,,,, +listed-building-outline,,42102310,2021-12-08,,"MULTIPOLYGON (((-0.036547 51.494513,-0.036573 51.494521,-0.036213 51.494580,-0.036336 51.494554,-0.036547 51.494513)))",Swing footbridge over steelyard cut,329,POINT(-0.036437 51.494539),listed-building-outline,471366,1992-05-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB696.pdf,,II,,,, +listed-building-outline,,42102311,2021-12-08,,"MULTIPOLYGON (((-0.032605 51.495601,-0.032611 51.495570,-0.032649 51.495573,-0.032643 51.495604,-0.032605 51.495601)))",Tide gauge House on south quay of Greenland Dock,329,POINT(-0.032627 51.495587),listed-building-outline,471367,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB697.pdf,,II,,,, +listed-building-outline,,42102312,2021-12-08,,"MULTIPOLYGON (((-0.081516 51.489489,-0.081477 51.489456,-0.081437 51.489473,-0.081359 51.489407,-0.082580 51.488851,-0.082652 51.488912,-0.082578 51.488972,-0.082557 51.488954,-0.082457 51.488999,-0.082485 51.489023,-0.082303 51.489088,-0.082341 51.489120,-0.082206 51.489112,-0.082029 51.489194,-0.082056 51.489217,-0.082029 51.489229,-0.081989 51.489212,-0.081789 51.489304,-0.081799 51.489345,-0.081763 51.489315,-0.081569 51.489404,-0.081604 51.489435,-0.081579 51.489446,-0.081545 51.489415,-0.081502 51.489434,-0.081550 51.489474,-0.081516 51.489489)))",Numbers 20-54 and attached railings,329,POINT(-0.082017 51.489161),listed-building-outline,471368,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB698.pdf,,II,,,, +listed-building-outline,,42102313,2021-12-08,,"MULTIPOLYGON (((-0.094612 51.499160,-0.094415 51.499290,-0.094325 51.499256,-0.094526 51.499110,-0.094612 51.499160)))",Trinity arms public house,329,POINT(-0.094471 51.499202),listed-building-outline,471377,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB707.pdf,,II,,,, +listed-building-outline,,42102314,2021-12-08,,"MULTIPOLYGON (((-0.094256 51.499160,-0.094209 51.499182,-0.094249 51.499196,-0.094247 51.499169,-0.094308 51.499136,-0.094348 51.499151,-0.094266 51.499232,-0.094052 51.499150,-0.094101 51.499152,-0.094125 51.499124,-0.094089 51.499112,-0.094135 51.499113,-0.094163 51.499082,-0.094139 51.499059,-0.094173 51.499072,-0.094201 51.499042,-0.094168 51.499029,-0.094245 51.498996,-0.094211 51.498983,-0.094256 51.498984,-0.094282 51.498958,-0.094250 51.498947,-0.094265 51.498930,-0.094298 51.498942,-0.094327 51.498913,-0.094292 51.498901,-0.094367 51.498871,-0.094344 51.498847,-0.094378 51.498860,-0.094406 51.498830,-0.094372 51.498817,-0.094417 51.498818,-0.094448 51.498785,-0.094424 51.498762,-0.094459 51.498775,-0.094489 51.498742,-0.094467 51.498718,-0.094500 51.498730,-0.094529 51.498699,-0.094496 51.498687,-0.094569 51.498657,-0.094547 51.498634,-0.094581 51.498645,-0.094610 51.498614,-0.094588 51.498591,-0.094621 51.498603,-0.094649 51.498574,-0.094627 51.498549,-0.094661 51.498562,-0.094693 51.498528,-0.094792 51.498566,-0.094769 51.498592,-0.094798 51.498603,-0.094749 51.498611,-0.094237 51.499154,-0.094256 51.499160)))",Numbers 1-15 and attached railings,329,POINT(-0.094423 51.498887),listed-building-outline,471413,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB741.pdf,,II,,,, +listed-building-outline,,42102315,2021-12-08,,"MULTIPOLYGON (((-0.053244 51.501390,-0.053508 51.501375,-0.053552 51.501637,-0.053296 51.501723,-0.053107 51.501444,-0.053103 51.501401,-0.053244 51.501390)))",Grices granary film Studios,329,POINT(-0.053347 51.501526),listed-building-outline,471263,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB604.pdf,,II,,,, +listed-building-outline,,42102316,2021-12-08,,"MULTIPOLYGON (((-0.054338 51.499336,-0.054251 51.499272,-0.054226 51.499266,-0.054260 51.499250,-0.054373 51.499335,-0.054338 51.499336)))",Archway to Rotherhithe tunnel approach,329,POINT(-0.054300 51.499294),listed-building-outline,471267,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB606.pdf,,II,,,, +listed-building-outline,,42102317,2021-12-08,,"MULTIPOLYGON (((-0.051647 51.500778,-0.051633 51.500786,-0.051524 51.500707,-0.051540 51.500699,-0.051647 51.500778)))",Surrey portal of the Rotherhithe tunnel,329,POINT(-0.051585 51.500742),listed-building-outline,471268,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB607.pdf,,II,,,, +listed-building-outline,,42102318,2021-12-08,,"MULTIPOLYGON (((-0.054115 51.500972,-0.054166 51.501024,-0.054095 51.501050,-0.054012 51.500966,-0.054083 51.500940,-0.054115 51.500972)))",,329,POINT(-0.054089 51.500995),listed-building-outline,471283,1949-12-06,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB623.pdf,,II,,,, +listed-building-outline,,42102319,2021-12-08,,"MULTIPOLYGON (((-0.054166 51.501024,-0.054115 51.500972,-0.054160 51.500957,-0.054209 51.501009,-0.054166 51.501024)))","Watch House in recreation ground, adjoining number 70",329,POINT(-0.054162 51.500990),listed-building-outline,471285,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB625.pdf,,II,,,, +listed-building-outline,,42102320,2021-12-08,,"MULTIPOLYGON (((-0.054515 51.500856,-0.054530 51.500876,-0.054470 51.500875,-0.054515 51.500856)))",Former engine house in recreation ground,329,POINT(-0.054505 51.500869),listed-building-outline,471284,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB624.pdf,,II,,,, +listed-building-outline,,42102321,2021-12-08,,"MULTIPOLYGON (((-0.054405 51.501031,-0.054750 51.501309,-0.054757 51.501339,-0.054641 51.501395,-0.054299 51.501072,-0.054405 51.501031)))",Hope sufferance Wharf,329,POINT(-0.054538 51.501215),listed-building-outline,471288,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB628.pdf,,II,,,, +listed-building-outline,,42102322,2021-12-08,,"MULTIPOLYGON (((-0.073751 51.500536,-0.073805 51.500570,-0.073705 51.500721,-0.073546 51.500658,-0.073751 51.500536)))",Jamaica Wharf,329,POINT(-0.073690 51.500631),listed-building-outline,471304,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB644.pdf,,II,,,, +listed-building-outline,,42102323,2021-12-08,,"MULTIPOLYGON (((-0.073308 51.500813,-0.073503 51.500956,-0.073375 51.501027,-0.073183 51.500885,-0.073308 51.500813)))",Shuters Wharf,329,POINT(-0.073342 51.500920),listed-building-outline,471326,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB658.pdf,,II,,,, +listed-building-outline,,42102324,2021-12-08,,"MULTIPOLYGON (((-0.073544 51.500660,-0.073705 51.500721,-0.073602 51.500840,-0.073410 51.500753,-0.073544 51.500660)))",Dockhead Wharf (block to south),329,POINT(-0.073564 51.500746),listed-building-outline,471306,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB646.pdf,,II,,,, +listed-building-outline,,42102325,2021-12-08,,"MULTIPOLYGON (((-0.073410 51.500753,-0.073602 51.500840,-0.073503 51.500956,-0.073308 51.500813,-0.073410 51.500753)))",Dockhead Wharf (block to north),329,POINT(-0.073460 51.500846),listed-building-outline,471305,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB645.pdf,,II,,,, +listed-building-outline,,42102326,2021-12-08,,"MULTIPOLYGON (((-0.072982 51.501001,-0.073183 51.500885,-0.073375 51.501027,-0.073143 51.501116,-0.072982 51.501001)))",St George’s Wharf Christians,329,POINT(-0.073174 51.501005),listed-building-outline,471307,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB647.pdf,,II,,,, +listed-building-outline,,42102327,2021-12-08,,"MULTIPOLYGON (((-0.072704 51.501162,-0.072982 51.501001,-0.073143 51.501116,-0.072873 51.501272,-0.072704 51.501162)))",St Saviours warehouse,329,POINT(-0.072925 51.501137),listed-building-outline,471308,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB648.pdf,,II,,,, +listed-building-outline,,42102328,2021-12-08,,"MULTIPOLYGON (((-0.092715 51.481193,-0.092688 51.481008,-0.092831 51.480995,-0.093024 51.480991,-0.093029 51.481120,-0.093101 51.481132,-0.093110 51.481171,-0.092715 51.481193),(-0.092969 51.481139,-0.092941 51.481038,-0.092855 51.481041,-0.092821 51.481076,-0.092867 51.481145,-0.092969 51.481139)))",Numbers 47 and 48 and attached railings,329,POINT(-0.092870 51.481093),listed-building-outline,470530,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB10.pdf,,II,,,, +listed-building-outline,,42102329,2021-12-08,,"MULTIPOLYGON (((-0.091064 51.474934,-0.091143 51.475171,-0.090784 51.475255,-0.090724 51.475085,-0.090585 51.475103,-0.090518 51.474895,-0.090556 51.474888,-0.090547 51.474860,-0.090508 51.474864,-0.090331 51.474352,-0.090489 51.474344,-0.090504 51.474399,-0.090797 51.474367,-0.090801 51.474435,-0.091064 51.474934)))",Camberwell public baths,329,POINT(-0.090737 51.474793),listed-building-outline,470538,1993-07-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB15.pdf,,II,,,, +listed-building-outline,,42102330,2021-12-08,,"MULTIPOLYGON (((-0.059526 51.478638,-0.059812 51.478584,-0.059902 51.478784,-0.059706 51.478821,-0.059638 51.478690,-0.059559 51.478705,-0.059526 51.478638),(-0.059692 51.478663,-0.059700 51.478678,-0.059741 51.478669,-0.059733 51.478654,-0.059692 51.478663)))","Office, licensed victuallers almshouses",329,POINT(-0.059736 51.478698),listed-building-outline,470539,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB16.pdf,,II,,,, +listed-building-outline,,42102331,2021-12-08,,"MULTIPOLYGON (((-0.059526 51.478638,-0.059460 51.478502,-0.059497 51.478495,-0.059482 51.478462,-0.059623 51.478462,-0.059642 51.478492,-0.059600 51.478500,-0.059633 51.478570,-0.059675 51.478562,-0.059697 51.478607,-0.059526 51.478638)))",,329,POINT(-0.059567 51.478548),listed-building-outline,470540,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB17.pdf,,II,,,, +listed-building-outline,,42102332,2021-12-08,,"MULTIPOLYGON (((-0.060294 51.480020,-0.060213 51.479859,-0.060910 51.479733,-0.060729 51.479365,-0.060671 51.479376,-0.060620 51.479270,-0.060678 51.479258,-0.060662 51.479224,-0.060500 51.478895,-0.059807 51.479029,-0.059729 51.478868,-0.060677 51.478687,-0.061241 51.479842,-0.060294 51.480020),(-0.060866 51.479222,-0.060851 51.479188,-0.060801 51.479197,-0.060601 51.478786,-0.060607 51.478745,-0.060559 51.478754,-0.060575 51.478786,-0.060498 51.478801,-0.060442 51.478776,-0.060413 51.478782,-0.060427 51.478814,-0.059858 51.478919,-0.059816 51.478895,-0.059845 51.478955,-0.060437 51.478831,-0.060451 51.478862,-0.060539 51.478850,-0.060466 51.478823,-0.060577 51.478802,-0.060747 51.479196,-0.060774 51.479203,-0.060730 51.479211,-0.060747 51.479245,-0.060866 51.479222),(-0.060369 51.479962,-0.060352 51.479932,-0.060922 51.479822,-0.060967 51.479849,-0.060991 51.479811,-0.061065 51.479796,-0.061080 51.479827,-0.061130 51.479817,-0.061088 51.479784,-0.060888 51.479374,-0.060939 51.479365,-0.060922 51.479329,-0.060797 51.479352,-0.060814 51.479388,-0.060858 51.479379,-0.061054 51.479780,-0.060943 51.479801,-0.060932 51.479778,-0.060979 51.479755,-0.060898 51.479775,-0.060914 51.479807,-0.060314 51.479921,-0.060337 51.479968,-0.060369 51.479962)))",Licensed Victuallers Benevolent Institution (Caroline Gardens),329,POINT(-0.060628 51.479335),listed-building-outline,470541,1962-02-28,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB18.pdf,,II,,,, +listed-building-outline,,42102333,2021-12-08,,"MULTIPOLYGON (((-0.060578 51.480115,-0.060549 51.480056,-0.061144 51.479945,-0.061168 51.479994,-0.060578 51.480115)))",Licensed Victuallers Benevolent Institution (Caroline Gardens),329,POINT(-0.060851 51.480029),listed-building-outline,470542,1962-02-28,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB19.pdf,,II,,,, +listed-building-outline,,42102334,2021-12-08,,"MULTIPOLYGON (((-0.061483 51.478364,-0.061513 51.478330,-0.061477 51.478304,-0.061553 51.478291,-0.061595 51.478346,-0.061626 51.478471,-0.061712 51.478578,-0.061682 51.478591,-0.061696 51.478619,-0.061780 51.478695,-0.061740 51.478734,-0.061803 51.478743,-0.061782 51.478763,-0.061963 51.479098,-0.061943 51.479102,-0.061989 51.479199,-0.061957 51.479204,-0.062021 51.479233,-0.061389 51.479771,-0.061311 51.479736,-0.061901 51.479214,-0.061483 51.478364)),((-0.061483 51.478364,-0.059854 51.478670,-0.059812 51.478584,-0.060041 51.478582,-0.060353 51.478501,-0.060544 51.478490,-0.060578 51.478460,-0.060611 51.478490,-0.060673 51.478447,-0.061404 51.478306,-0.061459 51.478315,-0.061483 51.478364)))",Licensed Victuallers Benevolent Institution (Caroline Gardens),329,POINT(-0.061289 51.478832),listed-building-outline,470543,1962-02-28,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB20.pdf,,II,,,, +listed-building-outline,,42102335,2021-12-08,,"MULTIPOLYGON (((-0.060173 51.480065,-0.060284 51.480044,-0.060311 51.480096,-0.060190 51.480103,-0.060173 51.480065)))",North lodge to Licensed Victuallers Benevolent Institution (Caroline Gardens),329,POINT(-0.060243 51.480077),listed-building-outline,470544,1962-02-28,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB21.pdf,,II,,,, +listed-building-outline,,42102336,2021-12-08,,"MULTIPOLYGON (((-0.059680 51.478817,-0.059569 51.478838,-0.059552 51.478802,-0.059642 51.478768,-0.059680 51.478817)))",South lodge to Licensed Victuallers Benevolent Institution (Caroline Gardens),329,POINT(-0.059614 51.478806),listed-building-outline,470545,1962-02-28,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB22.pdf,,II,,,, +listed-building-outline,,42102337,2021-12-08,,"MULTIPOLYGON (((-0.087092 51.474347,-0.087073 51.474360,-0.087043 51.474343,-0.087064 51.474329,-0.087092 51.474347)))",Porch from former church of St Gile’s (re erected),329,POINT(-0.087068 51.474345),listed-building-outline,470558,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB35.pdf,,II,,,, +listed-building-outline,,42102338,2021-12-08,,"MULTIPOLYGON (((-0.066475 51.479875,-0.066510 51.480248,-0.066387 51.480264,-0.066379 51.480243,-0.066467 51.480229,-0.066428 51.479935,-0.066344 51.479946,-0.066335 51.479920,-0.066164 51.479967,-0.066118 51.479946,-0.066171 51.480099,-0.066204 51.480095,-0.066225 51.480158,-0.066028 51.480184,-0.065893 51.479819,-0.065894 51.479752,-0.066411 51.479685,-0.066435 51.479827,-0.066475 51.479875)))",Church of our Lady of Seven Colours,329,POINT(-0.066186 51.479910),listed-building-outline,470593,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB56.pdf,,II,,,, +listed-building-outline,,42102339,2021-12-08,,"MULTIPOLYGON (((-0.069962 51.469317,-0.069823 51.469348,-0.069737 51.469234,-0.069836 51.469211,-0.069877 51.469276,-0.069930 51.469263,-0.069962 51.469317)))",,329,POINT(-0.069845 51.469283),listed-building-outline,470637,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB64.pdf,,II,,,, +listed-building-outline,,42102340,2021-12-08,,"MULTIPOLYGON (((-0.069957 51.469307,-0.069907 51.469223,-0.070094 51.469205,-0.070131 51.469266,-0.069957 51.469307)))",,329,POINT(-0.070018 51.469251),listed-building-outline,470638,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB64.pdf,,II,,,, +listed-building-outline,,42102341,2021-12-08,,"MULTIPOLYGON (((-0.103433 51.487158,-0.103493 51.487099,-0.103787 51.487221,-0.103726 51.487280,-0.103433 51.487158)))",,329,POINT(-0.103610 51.487190),listed-building-outline,470677,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB103.pdf,,II,,,, +listed-building-outline,,42102342,2021-12-08,,"MULTIPOLYGON (((-0.094068 51.476398,-0.094025 51.476391,-0.093999 51.476296,-0.094907 51.476207,-0.094926 51.476273,-0.094890 51.476277,-0.094944 51.476406,-0.094880 51.476413,-0.094891 51.476453,-0.094336 51.476513,-0.094293 51.476390,-0.094235 51.476396,-0.094291 51.476570,-0.094134 51.476595,-0.094068 51.476398)))",Regal cinema,329,POINT(-0.094477 51.476374),listed-building-outline,470754,1996-03-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB174.pdf,,II,,,, +listed-building-outline,,42102343,2021-12-08,,"MULTIPOLYGON (((-0.064125 51.484085,-0.064015 51.483984,-0.064124 51.484029,-0.064222 51.483987,-0.064187 51.483930,-0.064213 51.483919,-0.064328 51.484021,-0.064125 51.484085)))",,329,POINT(-0.064195 51.484016),listed-building-outline,470755,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB177.pdf,,II,,,, +listed-building-outline,,42102344,2021-12-08,,"MULTIPOLYGON (((-0.064003 51.484181,-0.063872 51.484081,-0.063974 51.484068,-0.063961 51.484033,-0.064006 51.484052,-0.064026 51.484044,-0.064003 51.484020,-0.064039 51.484006,-0.064144 51.484121,-0.064003 51.484181)))",,329,POINT(-0.064019 51.484100),listed-building-outline,470756,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB177.pdf,,II,,,, +listed-building-outline,,42102345,2021-12-08,,"MULTIPOLYGON (((-0.063796 51.484243,-0.063725 51.484176,-0.063900 51.484106,-0.063969 51.484169,-0.063796 51.484243)))",,329,POINT(-0.063847 51.484174),listed-building-outline,470757,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB178.pdf,,II,,,, +listed-building-outline,,42102346,2021-12-08,,"MULTIPOLYGON (((-0.086784 51.470384,-0.086527 51.470074,-0.086525 51.470058,-0.086670 51.470025,-0.086693 51.470084,-0.086767 51.470136,-0.086747 51.470142,-0.086781 51.470196,-0.086852 51.470179,-0.086867 51.470200,-0.086811 51.470234,-0.086910 51.470313,-0.086888 51.470320,-0.086950 51.470413,-0.086804 51.470446,-0.086784 51.470384)))",Numbers 78-92 and attached area railings,329,POINT(-0.086742 51.470232),listed-building-outline,470714,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB135.pdf,,II,,,, +listed-building-outline,,42102347,2021-12-08,,"MULTIPOLYGON (((-0.086992 51.471417,-0.086939 51.471371,-0.087070 51.471332,-0.087231 51.471540,-0.087093 51.471567,-0.086992 51.471417)))",Numbers 79-85 and attached railings,329,POINT(-0.087088 51.471452),listed-building-outline,470715,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB136.pdf,,II,,,, +listed-building-outline,,42102348,2021-12-08,,"MULTIPOLYGON (((-0.086865 51.471292,-0.087007 51.471249,-0.087070 51.471332,-0.086928 51.471374,-0.086865 51.471292)))",,329,POINT(-0.086968 51.471312),listed-building-outline,470716,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB137.pdf,,II,,,, +listed-building-outline,,42102349,2021-12-08,,"MULTIPOLYGON (((-0.086668 51.471108,-0.086615 51.471068,-0.086577 51.471080,-0.086555 51.471054,-0.086604 51.471025,-0.086536 51.471026,-0.086514 51.470997,-0.086559 51.470972,-0.086519 51.470964,-0.086676 51.470915,-0.086804 51.471080,-0.086668 51.471108)))",,329,POINT(-0.086656 51.471017),listed-building-outline,470717,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB137.pdf,,II,,,, +listed-building-outline,,42102350,2021-12-08,,"MULTIPOLYGON (((-0.086445 51.470988,-0.086421 51.470958,-0.086518 51.470930,-0.086479 51.470869,-0.086406 51.470867,-0.086462 51.470849,-0.086434 51.470809,-0.086397 51.470813,-0.086422 51.470795,-0.086362 51.470748,-0.086509 51.470703,-0.086676 51.470915,-0.086445 51.470988)))",Numbers 97-103 and attached railings,329,POINT(-0.086520 51.470841),listed-building-outline,470718,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB138.pdf,,II,,,, +listed-building-outline,,42102351,2021-12-08,,"MULTIPOLYGON (((-0.086381 51.470742,-0.086283 51.470706,-0.086340 51.470689,-0.086315 51.470652,-0.086239 51.470686,-0.086219 51.470659,-0.086299 51.470634,-0.086235 51.470554,-0.086109 51.470562,-0.086087 51.470534,-0.086182 51.470493,-0.086115 51.470492,-0.086093 51.470463,-0.086136 51.470434,-0.086072 51.470436,-0.086051 51.470408,-0.086096 51.470394,-0.086080 51.470362,-0.086212 51.470322,-0.086509 51.470703,-0.086381 51.470742)))",Numbers 105-117 and attached railings,329,POINT(-0.086272 51.470533),listed-building-outline,470719,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB139.pdf,,II,,,, +listed-building-outline,,42102352,2021-12-08,,"MULTIPOLYGON (((-0.085266 51.468422,-0.085164 51.468279,-0.085011 51.468098,-0.085162 51.468052,-0.085174 51.468121,-0.085198 51.468118,-0.085235 51.468194,-0.085272 51.468183,-0.085297 51.468215,-0.085259 51.468227,-0.085314 51.468236,-0.085327 51.468252,-0.085290 51.468263,-0.085376 51.468373,-0.085414 51.468375,-0.085266 51.468422)))",Numbers 144-156 and attached railings,329,POINT(-0.085204 51.468235),listed-building-outline,470720,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB140.pdf,,II,,,, +listed-building-outline,,42102353,2021-12-08,,"MULTIPOLYGON (((-0.085035 51.467933,-0.085098 51.467912,-0.085126 51.467944,-0.085049 51.467964,-0.085129 51.468062,-0.085016 51.468098,-0.084915 51.467969,-0.085035 51.467933)))",Number 158 and 158a and attached area railings,329,POINT(-0.085029 51.468006),listed-building-outline,470721,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB141.pdf,,II,,,, +listed-building-outline,,42102354,2021-12-08,,"MULTIPOLYGON (((-0.084889 51.467969,-0.084838 51.467872,-0.084805 51.467865,-0.084963 51.467810,-0.085035 51.467933,-0.084889 51.467969)))",,329,POINT(-0.084929 51.467892),listed-building-outline,470722,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB142.pdf,,II,,,, +listed-building-outline,,42102355,2021-12-08,,"MULTIPOLYGON (((-0.084897 51.468752,-0.084828 51.468693,-0.084979 51.468666,-0.085055 51.468763,-0.084933 51.468819,-0.084897 51.468752)))",,329,POINT(-0.084950 51.468735),listed-building-outline,470723,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB143.pdf,,II,,,, +listed-building-outline,,42102356,2021-12-08,,"MULTIPOLYGON (((-0.084830 51.467850,-0.084714 51.467713,-0.084689 51.467666,-0.084838 51.467637,-0.084945 51.467751,-0.084958 51.467789,-0.084830 51.467850)))",,329,POINT(-0.084828 51.467736),listed-building-outline,470724,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB144.pdf,,II,,,, +listed-building-outline,,42102357,2021-12-08,,"MULTIPOLYGON (((-0.084689 51.467666,-0.084544 51.467506,-0.084512 51.467441,-0.084629 51.467405,-0.084669 51.467454,-0.084696 51.467435,-0.084726 51.467475,-0.084692 51.467485,-0.084708 51.467506,-0.084760 51.467504,-0.084747 51.467555,-0.084787 51.467537,-0.084771 51.467586,-0.084838 51.467566,-0.084862 51.467596,-0.084689 51.467666)))",Number 168-174 and attached railings,329,POINT(-0.084670 51.467535),listed-building-outline,470726,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB146.pdf,,II,,,, +listed-building-outline,,42102358,2021-12-08,,"MULTIPOLYGON (((-0.084593 51.468533,-0.084506 51.468573,-0.084489 51.468558,-0.084513 51.468545,-0.084453 51.468491,-0.084410 51.468487,-0.084437 51.468475,-0.084366 51.468446,-0.084331 51.468411,-0.084354 51.468401,-0.084209 51.468273,-0.084195 51.468253,-0.084222 51.468245,-0.084139 51.468125,-0.084108 51.468133,-0.084064 51.467981,-0.084015 51.467965,-0.084201 51.467910,-0.084375 51.468223,-0.084658 51.468506,-0.084593 51.468533)))",Grove crescent (terrace) and attached railings,329,POINT(-0.084323 51.468241),listed-building-outline,470727,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB147.pdf,,II,,,, +listed-building-outline,,42102359,2021-12-08,,"MULTIPOLYGON (((-0.084255 51.467146,-0.084396 51.467100,-0.084492 51.467216,-0.084354 51.467261,-0.084255 51.467146)))",,329,POINT(-0.084374 51.467181),listed-building-outline,470728,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB148.pdf,,II,,,, +listed-building-outline,,42102360,2021-12-08,,"MULTIPOLYGON (((-0.084165 51.467031,-0.084068 51.466903,-0.083868 51.466646,-0.084023 51.466599,-0.084345 51.467017,-0.084407 51.467035,-0.084182 51.467095,-0.084165 51.467031)))","Numbers 184-196 and attached hand railings, iron lampholder and plaque",329,POINT(-0.084120 51.466848),listed-building-outline,470729,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB149.pdf,,II,,,, +listed-building-outline,,42102361,2021-12-08,,"MULTIPOLYGON (((-0.083739 51.467300,-0.083651 51.467308,-0.083556 51.467170,-0.083711 51.467120,-0.083866 51.467317,-0.083765 51.467334,-0.083739 51.467300)))",Numbers 187 and 189 and attached railings,329,POINT(-0.083706 51.467231),listed-building-outline,470730,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB150.pdf,,II,,,, +listed-building-outline,,42102362,2021-12-08,,"MULTIPOLYGON (((-0.083532 51.467140,-0.083404 51.467007,-0.083561 51.466941,-0.083686 51.467089,-0.083532 51.467140)))",Numbers 191 and 193 and attached railings,329,POINT(-0.083546 51.467043),listed-building-outline,470731,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB151.pdf,,II,,,, +listed-building-outline,,42102363,2021-12-08,,"MULTIPOLYGON (((-0.083127 51.466686,-0.082984 51.466488,-0.082814 51.466326,-0.082537 51.465925,-0.082654 51.465887,-0.082712 51.465901,-0.082787 51.466032,-0.082824 51.466043,-0.082790 51.466059,-0.082826 51.466103,-0.082869 51.466097,-0.082941 51.466227,-0.082983 51.466241,-0.082967 51.466278,-0.083100 51.466422,-0.083122 51.466414,-0.083124 51.466476,-0.083182 51.466491,-0.083259 51.466623,-0.083299 51.466637,-0.083267 51.466647,-0.083284 51.466668,-0.083130 51.466718,-0.083127 51.466686)))","Numbers 197-211 and attached railings to numbers 197, 198 and 201",329,POINT(-0.082908 51.466295),listed-building-outline,470732,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB152.pdf,,II,,,, +listed-building-outline,,42102364,2021-12-08,,"MULTIPOLYGON (((-0.083816 51.466559,-0.083341 51.465977,-0.083262 51.465854,-0.083359 51.465825,-0.083448 51.465941,-0.083419 51.465950,-0.083449 51.465990,-0.083482 51.465981,-0.083560 51.466083,-0.083528 51.466092,-0.083547 51.466116,-0.083579 51.466107,-0.083855 51.466460,-0.083898 51.466459,-0.083875 51.466489,-0.083912 51.466494,-0.083889 51.466506,-0.083942 51.466514,-0.083816 51.466559)))",,329,POINT(-0.083584 51.466195),listed-building-outline,470733,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB153.pdf,,II,,,, +listed-building-outline,,42102365,2021-12-08,,"MULTIPOLYGON (((-0.083170 51.465871,-0.083035 51.465743,-0.083044 51.465723,-0.083132 51.465694,-0.083229 51.465736,-0.083207 51.465766,-0.083256 51.465801,-0.083212 51.465816,-0.083275 51.465831,-0.083170 51.465871)))",The Hermitage,329,POINT(-0.083152 51.465777),listed-building-outline,470734,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB153.pdf,,II,,,, +listed-building-outline,,42102366,2021-12-08,,"MULTIPOLYGON (((-0.063725 51.484176,-0.063796 51.484243,-0.063802 51.484249,-0.063749 51.484271,-0.063634 51.484203,-0.063725 51.484176)))",,329,POINT(-0.063724 51.484222),listed-building-outline,470758,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB178.pdf,,II,,,, +listed-building-outline,,42102367,2021-12-08,,"MULTIPOLYGON (((-0.064232 51.484210,-0.064235 51.484207,-0.064239 51.484209,-0.064236 51.484212,-0.064232 51.484210)))",Gas standard adapted to electric light,329,POINT(-0.064236 51.484209),listed-building-outline,470759,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB179.pdf,,II,,,, +listed-building-outline,,42102368,2021-12-08,,"MULTIPOLYGON (((-0.086528 51.465937,-0.086600 51.465905,-0.086734 51.466025,-0.086625 51.466075,-0.086489 51.465954,-0.086528 51.465937)))",,329,POINT(-0.086612 51.465990),listed-building-outline,470765,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB184.pdf,,II,,,, +listed-building-outline,,42102369,2021-12-08,,"MULTIPOLYGON (((-0.087331 51.466747,-0.087186 51.466641,-0.087211 51.466614,-0.087268 51.466590,-0.087429 51.466742,-0.087359 51.466773,-0.087331 51.466747)))",,329,POINT(-0.087305 51.466680),listed-building-outline,470766,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB185.pdf,,II,,,, +listed-building-outline,,42102370,2021-12-08,,"MULTIPOLYGON (((-0.088918 51.465232,-0.088882 51.465206,-0.088949 51.465187,-0.089015 51.465234,-0.089175 51.465194,-0.089210 51.465289,-0.089041 51.465322,-0.088918 51.465232)))",Redholm,329,POINT(-0.089066 51.465254),listed-building-outline,470767,1988-02-25,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB186.pdf,,II,,,, +listed-building-outline,,42102371,2021-12-08,,"MULTIPOLYGON (((-0.087345 51.464701,-0.087209 51.464599,-0.087151 51.464521,-0.087291 51.464478,-0.087445 51.464586,-0.087421 51.464597,-0.087476 51.464647,-0.087345 51.464701)))",Number 23 and attached handrails,329,POINT(-0.087314 51.464587),listed-building-outline,470768,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB187.pdf,,II,,,, +listed-building-outline,,42102372,2021-12-08,,"MULTIPOLYGON (((-0.087204 51.470966,-0.087124 51.470863,-0.087001 51.470704,-0.087166 51.470667,-0.087162 51.470715,-0.087221 51.470712,-0.087239 51.470736,-0.087191 51.470749,-0.087249 51.470783,-0.087222 51.470791,-0.087236 51.470809,-0.087285 51.470816,-0.087326 51.470868,-0.087290 51.470878,-0.087344 51.470924,-0.087204 51.470966)))",Numbers 62-70 and attached railings to numbers 62-66,329,POINT(-0.087176 51.470814),listed-building-outline,470711,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB132.pdf,,II,,,, +listed-building-outline,,42102373,2021-12-08,,"MULTIPOLYGON (((-0.087381 51.471906,-0.087297 51.471800,-0.087186 51.471821,-0.087173 51.471794,-0.087390 51.471749,-0.087487 51.471875,-0.087381 51.471906)))",Numbers 69 and 71 and attached handrail and railings,329,POINT(-0.087359 51.471821),listed-building-outline,470712,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB133.pdf,,II,,,, +listed-building-outline,,42102374,2021-12-08,,"MULTIPOLYGON (((-0.087169 51.471650,-0.087150 51.471625,-0.087087 51.471644,-0.087074 51.471615,-0.087131 51.471599,-0.087080 51.471582,-0.087231 51.471540,-0.087300 51.471630,-0.087169 51.471650)))",Numbers 75 and 77 and attached handrail and railings,329,POINT(-0.087189 51.471601),listed-building-outline,470713,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB134.pdf,,II,,,, +listed-building-outline,,42102375,2021-12-08,,"MULTIPOLYGON (((-0.106128 51.495836,-0.105810 51.496260,-0.105754 51.496243,-0.105795 51.496190,-0.105599 51.496133,-0.105658 51.496054,-0.105624 51.496044,-0.105702 51.495994,-0.105661 51.495982,-0.105691 51.495945,-0.105730 51.495956,-0.105809 51.495852,-0.105667 51.495810,-0.105748 51.495701,-0.106128 51.495836)))","Charlotte Sharman school, block fronting Geraldine Street",329,POINT(-0.105848 51.495961),listed-building-outline,471465,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB788.pdf,,II,,,, +listed-building-outline,,42102376,2021-12-08,,"MULTIPOLYGON (((-0.092664 51.480854,-0.092647 51.480736,-0.092911 51.480705,-0.092916 51.480741,-0.092791 51.480765,-0.092844 51.480821,-0.092664 51.480854)))",Numbers 7 and 8 and attached railings,329,POINT(-0.092758 51.480774),listed-building-outline,470523,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB3.pdf,,II,,,, +listed-building-outline,,42102377,2021-12-08,,"MULTIPOLYGON (((-0.092623 51.480605,-0.092746 51.480596,-0.092764 51.480702,-0.092641 51.480709,-0.092623 51.480605)))",,329,POINT(-0.092694 51.480653),listed-building-outline,470524,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB4.pdf,,II,,,, +listed-building-outline,,42102378,2021-12-08,,"MULTIPOLYGON (((-0.092642 51.480590,-0.092623 51.480493,-0.092722 51.480485,-0.092741 51.480584,-0.092642 51.480590)))",,329,POINT(-0.092682 51.480538),listed-building-outline,470525,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB5.pdf,,II,,,, +listed-building-outline,,42102379,2021-12-08,,"MULTIPOLYGON (((-0.092209 51.480559,-0.092188 51.480441,-0.092235 51.480438,-0.092246 51.480493,-0.092327 51.480486,-0.092315 51.480432,-0.092410 51.480425,-0.092420 51.480480,-0.092498 51.480476,-0.092488 51.480419,-0.092537 51.480415,-0.092555 51.480521,-0.092528 51.480536,-0.092209 51.480559)))",Numbers 13-16 and attached railings,329,POINT(-0.092374 51.480496),listed-building-outline,470526,1979-10-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB6.pdf,,II,,,, +listed-building-outline,,42102380,2021-12-08,,"MULTIPOLYGON (((-0.091866 51.480582,-0.091845 51.480476,-0.091956 51.480505,-0.091950 51.480467,-0.091998 51.480412,-0.092031 51.480466,-0.092107 51.480498,-0.092122 51.480438,-0.092188 51.480433,-0.092209 51.480559,-0.091866 51.480582)))",Numbers 17-20 and attached railings,329,POINT(-0.092033 51.480514),listed-building-outline,470527,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB7.pdf,,II,,,, +listed-building-outline,,42102381,2021-12-08,,"MULTIPOLYGON (((-0.091729 51.481008,-0.091718 51.480955,-0.091667 51.480935,-0.091713 51.480932,-0.091675 51.480840,-0.091702 51.480837,-0.091693 51.480779,-0.091817 51.480771,-0.091864 51.481058,-0.091740 51.481066,-0.091729 51.481008)))",Numbers 33-37 and attached railings,329,POINT(-0.091774 51.480917),listed-building-outline,470528,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB8.pdf,,II,,,, +listed-building-outline,,42102382,2021-12-08,,"MULTIPOLYGON (((-0.091780 51.481315,-0.091769 51.481235,-0.091678 51.481240,-0.091674 51.481214,-0.091734 51.481210,-0.091730 51.481184,-0.091675 51.481175,-0.091755 51.481149,-0.091740 51.481066,-0.091864 51.481058,-0.091909 51.481319,-0.091747 51.481330,-0.091780 51.481315)))",,329,POINT(-0.091812 51.481195),listed-building-outline,470529,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB9.pdf,,II,,,, +listed-building-outline,,42102383,2021-12-08,,"MULTIPOLYGON (((-0.086245 51.469625,-0.086124 51.469464,-0.086369 51.469420,-0.086330 51.469413,-0.086324 51.469382,-0.086510 51.469327,-0.086635 51.469512,-0.086453 51.469567,-0.086413 51.469554,-0.086245 51.469625)))",Grove Chapel,329,POINT(-0.086389 51.469479),listed-building-outline,470735,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB155.pdf,,II,,,, +listed-building-outline,,42102384,2021-12-08,,"MULTIPOLYGON (((-0.102605 51.478199,-0.102648 51.478174,-0.102558 51.478161,-0.102643 51.478097,-0.102793 51.478161,-0.102737 51.478212,-0.102605 51.478199)))",,329,POINT(-0.102679 51.478160),listed-building-outline,470736,1974-06-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB157.pdf,,II,,,, +listed-building-outline,,42102385,2021-12-08,,"MULTIPOLYGON (((-0.102586 51.478135,-0.102547 51.478138,-0.102489 51.478093,-0.102551 51.478035,-0.102661 51.478081,-0.102588 51.478150,-0.102545 51.478150,-0.102586 51.478135)))",Clifton Cottage,329,POINT(-0.102572 51.478093),listed-building-outline,470737,1974-06-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB158.pdf,,II,,,, +listed-building-outline,,42102386,2021-12-08,,"MULTIPOLYGON (((-0.102450 51.478083,-0.102364 51.478085,-0.102382 51.478054,-0.102305 51.478055,-0.102314 51.478027,-0.102278 51.478011,-0.102344 51.477948,-0.102551 51.478035,-0.102489 51.478093,-0.102418 51.478100,-0.102450 51.478083)))","Numbers 191, 193 and 195 and attached railings",329,POINT(-0.102410 51.478028),listed-building-outline,470738,1974-06-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB159.pdf,,II,,,, +listed-building-outline,,42102387,2021-12-08,,"MULTIPOLYGON (((-0.102209 51.477989,-0.102178 51.477977,-0.102071 51.478029,-0.102043 51.478012,-0.102222 51.477891,-0.102356 51.477936,-0.102269 51.478019,-0.102146 51.478071,-0.102120 51.478049,-0.102235 51.477999,-0.102209 51.477989)))","Numbers 197, 197a and 199 and attached railings to front garden",329,POINT(-0.102212 51.477973),listed-building-outline,470739,1974-06-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB160.pdf,,II,,,, +listed-building-outline,,42102388,2021-12-08,,"MULTIPOLYGON (((-0.102102 51.477921,-0.101925 51.477977,-0.102038 51.477896,-0.101872 51.477925,-0.102035 51.477814,-0.102222 51.477891,-0.102142 51.477963,-0.102027 51.478006,-0.102123 51.477931,-0.102102 51.477921)))","Numbers 201, 203 and 205 and attached railings to front garden",329,POINT(-0.102064 51.477898),listed-building-outline,470740,1974-06-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB161.pdf,,II,,,, +listed-building-outline,,42102389,2021-12-08,,"MULTIPOLYGON (((-0.101759 51.477916,-0.101892 51.477849,-0.101747 51.477905,-0.101720 51.477887,-0.101906 51.477761,-0.102035 51.477814,-0.101959 51.477879,-0.101931 51.477852,-0.101812 51.477920,-0.101759 51.477916)))",,329,POINT(-0.101881 51.477841),listed-building-outline,470741,1974-06-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB162.pdf,,II,,,, +listed-building-outline,,42102390,2021-12-08,,"MULTIPOLYGON (((-0.101702 51.477872,-0.101823 51.477808,-0.101744 51.477776,-0.101699 51.477801,-0.101682 51.477791,-0.101723 51.477768,-0.101648 51.477754,-0.101722 51.477685,-0.101906 51.477761,-0.101837 51.477826,-0.101702 51.477872)))","Numbers 211, 213 and 215 and attached balconies and railings",329,POINT(-0.101778 51.477761),listed-building-outline,470742,1974-06-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB163.pdf,,II,,,, +listed-building-outline,,42102391,2021-12-08,,"MULTIPOLYGON (((-0.093716 51.474334,-0.093695 51.474416,-0.093614 51.474421,-0.093652 51.474308,-0.093716 51.474334)))",,329,POINT(-0.093667 51.474370),listed-building-outline,470747,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB168.pdf,,II,,,, +listed-building-outline,,42102392,2021-12-08,,"MULTIPOLYGON (((-0.094897 51.482362,-0.095057 51.482355,-0.095071 51.482472,-0.094913 51.482502,-0.094897 51.482362)))",,329,POINT(-0.094982 51.482423),listed-building-outline,470748,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB168.pdf,,II,,,, +listed-building-outline,,42102393,2021-12-08,,"MULTIPOLYGON (((-0.095035 51.482212,-0.094882 51.482235,-0.094814 51.481662,-0.095153 51.481648,-0.095158 51.481693,-0.094951 51.481724,-0.095061 51.481766,-0.095067 51.481824,-0.094990 51.481827,-0.094979 51.481875,-0.095003 51.481927,-0.094980 51.481941,-0.095021 51.481940,-0.094984 51.481984,-0.095010 51.481998,-0.095035 51.482212)))",Numbers 66-84 including railings,329,POINT(-0.094943 51.481907),listed-building-outline,470749,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB169.pdf,,II,,,, +listed-building-outline,,42102394,2021-12-08,,"MULTIPOLYGON (((-0.095147 51.481588,-0.095153 51.481648,-0.094814 51.481662,-0.094796 51.481509,-0.095078 51.481494,-0.095030 51.481507,-0.095036 51.481552,-0.094892 51.481554,-0.094899 51.481600,-0.095147 51.481588)))",,329,POINT(-0.094946 51.481587),listed-building-outline,470750,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB170.pdf,,II,,,, +listed-building-outline,,42102395,2021-12-08,,"MULTIPOLYGON (((-0.094794 51.481491,-0.094770 51.481273,-0.094909 51.481268,-0.094933 51.481485,-0.094960 51.481500,-0.094794 51.481491)))",,329,POINT(-0.094853 51.481383),listed-building-outline,470751,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB171.pdf,,II,,,, +listed-building-outline,,42102396,2021-12-08,,"MULTIPOLYGON (((-0.094065 51.481360,-0.094061 51.481323,-0.094007 51.481304,-0.094002 51.481252,-0.094059 51.481233,-0.094057 51.481205,-0.093998 51.481207,-0.093994 51.481153,-0.094053 51.481151,-0.094042 51.481001,-0.093898 51.481006,-0.093894 51.480968,-0.094162 51.480959,-0.094199 51.481355,-0.094065 51.481360),(-0.094052 51.481174,-0.094053 51.481166,-0.094033 51.481166,-0.094033 51.481174,-0.094052 51.481174)))",Numbers 117-129 and attached railings,329,POINT(-0.094094 51.481155),listed-building-outline,470752,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB172.pdf,,II,,,, +listed-building-outline,,42102397,2021-12-08,,"MULTIPOLYGON (((-0.087783 51.441383,-0.088030 51.441329,-0.088073 51.441387,-0.088119 51.441375,-0.088157 51.441442,-0.088088 51.441460,-0.088021 51.441421,-0.087840 51.441470,-0.087783 51.441383)))",Elm lawn,329,POINT(-0.087966 51.441402),listed-building-outline,470866,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB261.pdf,,II,,,, +listed-building-outline,,42102398,2021-12-08,,"MULTIPOLYGON (((-0.082522 51.442396,-0.082532 51.442347,-0.082472 51.442330,-0.082187 51.442357,-0.082170 51.442280,-0.082346 51.442229,-0.082377 51.442261,-0.082536 51.442248,-0.082544 51.442216,-0.082570 51.442339,-0.082558 51.442398,-0.082522 51.442396)))",Glenlea,329,POINT(-0.082377 51.442301),listed-building-outline,470870,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB262.pdf,,II,,,, +listed-building-outline,,42102399,2021-12-08,,"MULTIPOLYGON (((-0.087105 51.441626,-0.086902 51.441659,-0.086852 51.441547,-0.087059 51.441520,-0.087105 51.441626)))",Old blew House,329,POINT(-0.086979 51.441588),listed-building-outline,470871,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB262.pdf,,II,,,, +listed-building-outline,,42102400,2021-12-08,,"MULTIPOLYGON (((-0.073745 51.443868,-0.073715 51.443860,-0.073667 51.443798,-0.073766 51.443766,-0.073792 51.443853,-0.073745 51.443868)))","Park lodge next to Roseberry Gate, Dulwich park",329,POINT(-0.073737 51.443819),listed-building-outline,470874,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB264.pdf,,II,,,, +listed-building-outline,,42102401,2021-12-08,,"MULTIPOLYGON (((-0.085422 51.441921,-0.085352 51.441853,-0.085390 51.441846,-0.085378 51.441817,-0.085564 51.441787,-0.085632 51.441851,-0.085596 51.441856,-0.085611 51.441890,-0.085422 51.441921)))",The Willows,329,POINT(-0.085493 51.441854),listed-building-outline,470875,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB265.pdf,,II,,,, +listed-building-outline,,42102402,2021-12-08,,"MULTIPOLYGON (((-0.085740 51.450149,-0.085653 51.450034,-0.085839 51.449979,-0.085867 51.450017,-0.085772 51.450045,-0.085800 51.450079,-0.085978 51.450061,-0.085998 51.450088,-0.085740 51.450149)))",,329,POINT(-0.085798 51.450070),listed-building-outline,470876,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB265.pdf,,II,,,, +listed-building-outline,,42102403,2021-12-08,,"MULTIPOLYGON (((-0.084791 51.450106,-0.084763 51.450084,-0.084784 51.450071,-0.084748 51.450012,-0.084778 51.450004,-0.084761 51.449978,-0.084855 51.449953,-0.084913 51.450046,-0.084791 51.450106)))",Court Mount and attached handrails,329,POINT(-0.084826 51.450027),listed-building-outline,470877,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB266.pdf,,II,,,, +listed-building-outline,,42102404,2021-12-08,,"MULTIPOLYGON (((-0.084920 51.450122,-0.084952 51.450106,-0.084999 51.450144,-0.084876 51.450204,-0.084833 51.450163,-0.084920 51.450122)))",Former coach house to north of number 57 (Court Mount),329,POINT(-0.084915 51.450155),listed-building-outline,470878,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB267.pdf,,II,,,, +listed-building-outline,,42102405,2021-12-08,,"MULTIPOLYGON (((-0.084768 51.449801,-0.084838 51.449940,-0.084676 51.449981,-0.084635 51.449866,-0.084698 51.449853,-0.084681 51.449817,-0.084768 51.449801)))",Lonsdale Lodge,329,POINT(-0.084733 51.449895),listed-building-outline,470879,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB268.pdf,,II,,,, +listed-building-outline,,42102406,2021-12-08,,"MULTIPOLYGON (((-0.085614 51.449866,-0.085557 51.449814,-0.085603 51.449785,-0.085591 51.449766,-0.085752 51.449758,-0.085787 51.449809,-0.085732 51.449825,-0.085752 51.449852,-0.085614 51.449866)))",The Laurels,329,POINT(-0.085672 51.449810),listed-building-outline,470880,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB269.pdf,,II,,,, +listed-building-outline,,42102407,2021-12-08,,"MULTIPOLYGON (((-0.085324 51.449582,-0.085397 51.449381,-0.085517 51.449399,-0.085506 51.449429,-0.085577 51.449444,-0.085499 51.449448,-0.085491 51.449470,-0.085555 51.449480,-0.085547 51.449501,-0.085471 51.449490,-0.085457 51.449527,-0.085492 51.449548,-0.085450 51.449545,-0.085440 51.449571,-0.085510 51.449581,-0.085500 51.449608,-0.085324 51.449582)))",,329,POINT(-0.085430 51.449494),listed-building-outline,470881,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB270.pdf,,II,,,, +listed-building-outline,,42102408,2021-12-08,,"MULTIPOLYGON (((-0.085357 51.449361,-0.085411 51.449216,-0.085457 51.449210,-0.085573 51.449273,-0.085564 51.449297,-0.085507 51.449289,-0.085493 51.449326,-0.085550 51.449335,-0.085512 51.449372,-0.085656 51.449395,-0.085629 51.449415,-0.085357 51.449361)))",,329,POINT(-0.085471 51.449312),listed-building-outline,470882,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB271.pdf,,II,,,, +listed-building-outline,,42102409,2021-12-08,,"MULTIPOLYGON (((-0.085406 51.449147,-0.085423 51.449105,-0.085653 51.449144,-0.085631 51.449193,-0.085406 51.449147)))",,329,POINT(-0.085531 51.449148),listed-building-outline,470883,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB271.pdf,,II,,,, +listed-building-outline,,42102410,2021-12-08,,"MULTIPOLYGON (((-0.088564 51.467912,-0.088576 51.467931,-0.088544 51.467939,-0.088532 51.467920,-0.088564 51.467912)))",Statue of general booth in forecourt of William Booth memorial training college,329,POINT(-0.088554 51.467925),listed-building-outline,470774,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB191.pdf,,II,,,, +listed-building-outline,,42102411,2021-12-08,,"MULTIPOLYGON (((-0.088834 51.467844,-0.088848 51.467864,-0.088814 51.467872,-0.088802 51.467853,-0.088834 51.467844)))",Statue of Mrs. booth in forecourt of William Booth memorial training college,329,POINT(-0.088825 51.467858),listed-building-outline,470775,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB191.pdf,,II,,,, +listed-building-outline,,42102412,2021-12-08,,"MULTIPOLYGON (((-0.053365 51.456485,-0.053273 51.456337,-0.053628 51.456241,-0.053671 51.456310,-0.053817 51.456275,-0.053877 51.456314,-0.053706 51.456368,-0.053749 51.456438,-0.053606 51.456473,-0.053681 51.456590,-0.053521 51.456628,-0.053485 51.456569,-0.053426 51.456584,-0.053365 51.456485)))",Honor oak pumping station,329,POINT(-0.053540 51.456416),listed-building-outline,470777,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB193.pdf,,II,,,, +listed-building-outline,,42102413,2021-12-08,,"MULTIPOLYGON (((-0.052314 51.454377,-0.052273 51.454385,-0.052196 51.454335,-0.052197 51.454252,-0.052273 51.454235,-0.052340 51.454283,-0.052345 51.454370,-0.052314 51.454377)))",Valve House to honor oak pumping Station,329,POINT(-0.052270 51.454310),listed-building-outline,470778,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB194.pdf,,II,,,, +listed-building-outline,,42102414,2021-12-08,,"MULTIPOLYGON (((-0.084311 51.483585,-0.084248 51.483428,-0.084206 51.483263,-0.084276 51.483255,-0.084405 51.483659,-0.084336 51.483668,-0.084311 51.483585)))","Almshouses, centre range",329,POINT(-0.084303 51.483458),listed-building-outline,470781,1996-03-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB196.pdf,,II,,,, +listed-building-outline,,42102415,2021-12-08,,"MULTIPOLYGON (((-0.084107 51.483632,-0.084194 51.483621,-0.084207 51.483663,-0.083865 51.483703,-0.083852 51.483663,-0.084107 51.483632)))","Almshouses, north range",329,POINT(-0.084031 51.483662),listed-building-outline,470782,1996-03-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB196.pdf,,II,,,, +listed-building-outline,,42102416,2021-12-08,,"MULTIPOLYGON (((-0.084060 51.483305,-0.084095 51.483300,-0.084108 51.483343,-0.083768 51.483383,-0.083754 51.483340,-0.084060 51.483305)))","Almshouses, south range",329,POINT(-0.083931 51.483342),listed-building-outline,470783,1996-03-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB197.pdf,,II,,,, +listed-building-outline,,42102417,2021-12-08,,"MULTIPOLYGON (((-0.056732 51.478199,-0.055954 51.478162,-0.055965 51.478097,-0.057089 51.478127,-0.058337 51.478045,-0.058356 51.478110,-0.057399 51.478190,-0.056732 51.478199)))",Numbers 1-50 and attached railings,329,POINT(-0.057156 51.478136),listed-building-outline,470784,1974-01-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB198.pdf,,II,,,, +listed-building-outline,,42102418,2021-12-08,,"MULTIPOLYGON (((-0.075986 51.486403,-0.076017 51.486393,-0.076039 51.486293,-0.076011 51.486282,-0.076167 51.486295,-0.076141 51.486417,-0.075986 51.486403)))",,329,POINT(-0.076089 51.486351),listed-building-outline,470786,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB201.pdf,,II,,,, +listed-building-outline,,42102419,2021-12-08,,"MULTIPOLYGON (((-0.076238 51.485955,-0.075988 51.485918,-0.075973 51.485879,-0.076248 51.485902,-0.076238 51.485955)))",,329,POINT(-0.076120 51.485914),listed-building-outline,470787,1986-01-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB201.pdf,,II,,,, +listed-building-outline,,42102420,2021-12-08,,"MULTIPOLYGON (((-0.076146 51.485810,-0.076170 51.485696,-0.076288 51.485720,-0.076270 51.485807,-0.076146 51.485810)))",,329,POINT(-0.076216 51.485758),listed-building-outline,470789,1986-01-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB202.pdf,,II,,,, +listed-building-outline,,42102421,2021-12-08,,"MULTIPOLYGON (((-0.076251 51.485703,-0.076170 51.485696,-0.076182 51.485643,-0.076142 51.485619,-0.076314 51.485651,-0.076291 51.485706,-0.076251 51.485703)))",Number 55 and attached handrail,329,POINT(-0.076235 51.485668),listed-building-outline,470790,1986-01-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB203.pdf,,II,,,, +listed-building-outline,,42102422,2021-12-08,,"MULTIPOLYGON (((-0.076193 51.485624,-0.076211 51.485603,-0.076160 51.485598,-0.076173 51.485543,-0.076224 51.485548,-0.076219 51.485512,-0.076327 51.485533,-0.076306 51.485626,-0.076193 51.485624)))",Rosetta place,329,POINT(-0.076249 51.485574),listed-building-outline,470791,1986-01-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB204.pdf,,II,,,, +listed-building-outline,,42102423,2021-12-08,,"MULTIPOLYGON (((-0.076178 51.485508,-0.076208 51.485401,-0.076163 51.485367,-0.076326 51.485381,-0.076273 51.485402,-0.076356 51.485408,-0.076338 51.485495,-0.076178 51.485508)))",,329,POINT(-0.076263 51.485441),listed-building-outline,470792,1986-01-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB204.pdf,,II,,,, +listed-building-outline,,42102424,2021-12-08,,"MULTIPOLYGON (((-0.075958 51.485878,-0.075966 51.485844,-0.076128 51.485848,-0.076137 51.485809,-0.076266 51.485820,-0.076257 51.485869,-0.076167 51.485895,-0.075958 51.485878)))",Hanover House,329,POINT(-0.076132 51.485857),listed-building-outline,470788,1986-01-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB202.pdf,,II,,,, +listed-building-outline,,42102425,2021-12-08,,"MULTIPOLYGON (((-0.076417 51.484369,-0.076473 51.484388,-0.076461 51.484437,-0.076504 51.484436,-0.076484 51.484520,-0.076444 51.484509,-0.076429 51.484571,-0.075932 51.484533,-0.075946 51.484467,-0.075866 51.484459,-0.075926 51.484323,-0.076417 51.484369)))",New Peckham mosque (former church of St Mark),329,POINT(-0.076186 51.484448),listed-building-outline,470793,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB205.pdf,,II,,,, +listed-building-outline,,42102426,2021-12-08,,"MULTIPOLYGON (((-0.085036 51.445999,-0.085035 51.445939,-0.084946 51.445927,-0.084945 51.445843,-0.085149 51.445813,-0.085167 51.445994,-0.085036 51.445999)))",Stella House,329,POINT(-0.085067 51.445903),listed-building-outline,470795,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB207.pdf,,II,,,, +listed-building-outline,,42102427,2021-12-08,,"MULTIPOLYGON (((-0.085016 51.445686,-0.084945 51.445512,-0.085097 51.445498,-0.085148 51.445713,-0.084942 51.445732,-0.084946 51.445693,-0.085016 51.445686)))",Numbers 13 and 15 and attached hand railings,329,POINT(-0.085047 51.445617),listed-building-outline,470796,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB208.pdf,,II,,,, +listed-building-outline,,42102428,2021-12-08,,"MULTIPOLYGON (((-0.084712 51.444954,-0.084702 51.444901,-0.084901 51.444865,-0.084948 51.444870,-0.084964 51.444952,-0.084712 51.444954)))",Bell cottage,329,POINT(-0.084841 51.444916),listed-building-outline,470797,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB208.pdf,,II,,,, +listed-building-outline,,42102429,2021-12-08,,"MULTIPOLYGON (((-0.084065 51.442461,-0.084058 51.442357,-0.084292 51.442341,-0.084309 51.442430,-0.084376 51.442427,-0.084391 51.442467,-0.084132 51.442472,-0.084153 51.442606,-0.084111 51.442622,-0.084085 51.442609,-0.084065 51.442461)))",Oakfield,329,POINT(-0.084179 51.442443),listed-building-outline,470798,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB209.pdf,,II,,,, +listed-building-outline,,42102430,2021-12-08,,"MULTIPOLYGON (((-0.084405 51.442512,-0.084453 51.442669,-0.084368 51.442660,-0.084325 51.442521,-0.084405 51.442512)))",Outbuilding north west of number 41 (Oakfield),329,POINT(-0.084389 51.442590),listed-building-outline,470799,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB209.pdf,,II,,,, +listed-building-outline,,42102431,2021-12-08,,"MULTIPOLYGON (((-0.084860 51.442574,-0.084857 51.442469,-0.085013 51.442439,-0.085058 51.442457,-0.085029 51.442484,-0.085042 51.442528,-0.085078 51.442532,-0.085077 51.442615,-0.085135 51.442628,-0.085154 51.442688,-0.085003 51.442708,-0.084978 51.442612,-0.084928 51.442618,-0.084893 51.442570,-0.084860 51.442574)))",Howlettes mead,329,POINT(-0.084995 51.442569),listed-building-outline,470800,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB210.pdf,,II,,,, +listed-building-outline,,42102432,2021-12-08,,"MULTIPOLYGON (((-0.078474 51.431937,-0.078402 51.431901,-0.078325 51.431755,-0.078501 51.431708,-0.078528 51.431733,-0.078580 51.431830,-0.078477 51.431852,-0.078514 51.431915,-0.078474 51.431937)))",St John’s wood House,329,POINT(-0.078452 51.431811),listed-building-outline,470801,1990-10-03,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB211.pdf,,II,,,, +listed-building-outline,,42102433,2021-12-08,,"MULTIPOLYGON (((-0.084701 51.444764,-0.084695 51.444744,-0.084910 51.444722,-0.084932 51.444793,-0.084679 51.444847,-0.084658 51.444769,-0.084701 51.444764)))",Stable block to bell House and attached walling,329,POINT(-0.084791 51.444780),listed-building-outline,470813,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB213.pdf,,II,,,, +listed-building-outline,,42102434,2021-12-08,,"MULTIPOLYGON (((-0.078536 51.432378,-0.078561 51.432365,-0.078356 51.432193,-0.078424 51.432162,-0.078385 51.432142,-0.078391 51.432105,-0.078480 51.432088,-0.078505 51.432125,-0.078554 51.432102,-0.078561 51.432051,-0.078620 51.432040,-0.078701 51.432073,-0.078906 51.432243,-0.078747 51.432292,-0.078827 51.432360,-0.078707 51.432415,-0.078664 51.432379,-0.078581 51.432417,-0.078536 51.432378)))",Church of St Stephen,329,POINT(-0.078626 51.432226),listed-building-outline,470814,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB214.pdf,,II,,,, +listed-building-outline,,42102435,2021-12-08,,"MULTIPOLYGON (((-0.085611 51.449092,-0.085601 51.449110,-0.085663 51.449121,-0.085653 51.449144,-0.085438 51.449105,-0.085457 51.449063,-0.085611 51.449092)))",,329,POINT(-0.085542 51.449103),listed-building-outline,470884,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB272.pdf,,II,,,, +listed-building-outline,,42102436,2021-12-08,,"MULTIPOLYGON (((-0.085651 51.448964,-0.085482 51.448949,-0.085525 51.448859,-0.085509 51.448836,-0.085533 51.448841,-0.085568 51.448772,-0.085734 51.448808,-0.085653 51.448899,-0.085604 51.448903,-0.085712 51.448924,-0.085684 51.448981,-0.085651 51.448964)))",,329,POINT(-0.085606 51.448877),listed-building-outline,470885,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB273.pdf,,II,,,, +listed-building-outline,,42102437,2021-12-08,,"MULTIPOLYGON (((-0.084774 51.448575,-0.084806 51.448488,-0.084852 51.448490,-0.084861 51.448450,-0.085008 51.448469,-0.084972 51.448591,-0.084774 51.448575)))",Number 97 and handrails,329,POINT(-0.084897 51.448524),listed-building-outline,470886,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB274.pdf,,II,,,, +listed-building-outline,,42102438,2021-12-08,,"MULTIPOLYGON (((-0.084720 51.448229,-0.084966 51.448248,-0.084968 51.448340,-0.084759 51.448363,-0.084773 51.448290,-0.084836 51.448295,-0.084842 51.448267,-0.084715 51.448259,-0.084720 51.448229)))",Number 101 and handrails,329,POINT(-0.084858 51.448294),listed-building-outline,470887,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB275.pdf,,II,,,, +listed-building-outline,,42102439,2021-12-08,,"MULTIPOLYGON (((-0.084760 51.448233,-0.084771 51.448171,-0.084821 51.448176,-0.084795 51.448120,-0.084842 51.447999,-0.084817 51.447968,-0.085019 51.447960,-0.085017 51.448049,-0.084978 51.448054,-0.084954 51.448185,-0.084978 51.448186,-0.084966 51.448248,-0.084760 51.448233)))",,329,POINT(-0.084896 51.448104),listed-building-outline,470888,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB276.pdf,,II,,,, +listed-building-outline,,42102440,2021-12-08,,"MULTIPOLYGON (((-0.085634 51.447547,-0.085667 51.447561,-0.085665 51.447574,-0.085612 51.447570,-0.085634 51.447547)))",Drinking fountain outside entrance gates to Dulwich Old College,329,POINT(-0.085642 51.447563),listed-building-outline,470890,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB278.pdf,,II,,,, +listed-building-outline,,42102441,2021-12-08,,"MULTIPOLYGON (((-0.085231 51.449046,-0.085230 51.449055,-0.085216 51.449055,-0.085217 51.449046,-0.085231 51.449046)))",K6 telephone kiosk outside number 87 (number 87 not included),329,POINT(-0.085223 51.449050),listed-building-outline,470891,1987-06-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB278.pdf,,II,,,, +listed-building-outline,,42102442,2021-12-08,,"MULTIPOLYGON (((-0.084592 51.449307,-0.084961 51.449316,-0.084945 51.449511,-0.084723 51.449505,-0.084725 51.449476,-0.084781 51.449478,-0.084784 51.449433,-0.084713 51.449431,-0.084716 51.449386,-0.084588 51.449383,-0.084592 51.449307)))",The crown and greyhound public house and attached lamp brackets,329,POINT(-0.084807 51.449395),listed-building-outline,470905,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB287.pdf,,II,,,, +listed-building-outline,,42102443,2021-12-08,,"MULTIPOLYGON (((-0.086903 51.463820,-0.086815 51.463744,-0.086970 51.463678,-0.087046 51.463741,-0.086903 51.463820)))",Champion Lodge,329,POINT(-0.086931 51.463747),listed-building-outline,470769,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB188.pdf,,II,,,, +listed-building-outline,,42102444,2021-12-08,,"MULTIPOLYGON (((-0.085348 51.464491,-0.085330 51.464477,-0.085488 51.464403,-0.085472 51.464424,-0.085539 51.464480,-0.085408 51.464541,-0.085348 51.464491)))",Champion Cottage,329,POINT(-0.085435 51.464477),listed-building-outline,470771,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB189.pdf,,II,,,, +listed-building-outline,,42102445,2021-12-08,,"MULTIPOLYGON (((-0.101006 51.477495,-0.100897 51.477484,-0.100921 51.477460,-0.100825 51.477422,-0.100784 51.477439,-0.100809 51.477415,-0.100766 51.477398,-0.100741 51.477423,-0.100721 51.477414,-0.100743 51.477391,-0.100678 51.477363,-0.100642 51.477383,-0.100657 51.477355,-0.100611 51.477336,-0.100470 51.477475,-0.100275 51.477396,-0.100357 51.477318,-0.100292 51.477291,-0.100329 51.477223,-0.100286 51.477207,-0.100263 51.477230,-0.100243 51.477222,-0.100266 51.477199,-0.100183 51.477197,-0.100205 51.477174,-0.100159 51.477156,-0.100113 51.477199,-0.100042 51.477170,-0.100160 51.477066,-0.101070 51.477432,-0.101006 51.477495),(-0.100591 51.477328,-0.100550 51.477312,-0.100526 51.477335,-0.100566 51.477352,-0.100591 51.477328),(-0.100501 51.477325,-0.100524 51.477301,-0.100482 51.477316,-0.100501 51.477325)))",,329,POINT(-0.100516 51.477302),listed-building-outline,470743,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB164.pdf,,II,,,, +listed-building-outline,,42102446,2021-12-08,,"MULTIPOLYGON (((-0.099704 51.476598,-0.099175 51.476382,-0.099165 51.476329,-0.099209 51.476285,-0.100076 51.476661,-0.100019 51.476726,-0.099704 51.476598)))",Numbers 230-252 and attached railings,329,POINT(-0.099597 51.476504),listed-building-outline,470744,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB165.pdf,,II,,,, +listed-building-outline,,42102447,2021-12-08,,"MULTIPOLYGON (((-0.098853 51.476287,-0.098813 51.476275,-0.097918 51.475858,-0.098072 51.475730,-0.098109 51.475747,-0.098026 51.475816,-0.098051 51.475828,-0.098133 51.475758,-0.098160 51.475770,-0.098082 51.475842,-0.098108 51.475853,-0.098200 51.475775,-0.098234 51.475792,-0.098143 51.475868,-0.098213 51.475900,-0.098257 51.475886,-0.098232 51.475908,-0.098317 51.475914,-0.098317 51.475948,-0.098384 51.475980,-0.098411 51.475957,-0.098432 51.475968,-0.098407 51.475990,-0.098447 51.476009,-0.098474 51.475987,-0.098493 51.475996,-0.098467 51.476017,-0.098506 51.476036,-0.098531 51.476014,-0.098523 51.476044,-0.098563 51.476062,-0.098589 51.476041,-0.098609 51.476050,-0.098583 51.476071,-0.098628 51.476091,-0.098733 51.476024,-0.098753 51.476052,-0.098685 51.476116,-0.098812 51.476079,-0.098737 51.476148,-0.098762 51.476160,-0.098835 51.476099,-0.098867 51.476114,-0.098791 51.476176,-0.098937 51.476214,-0.098853 51.476287)))",Numbers 254-282 and attached railings,329,POINT(-0.098424 51.476025),listed-building-outline,470745,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB166.pdf,,II,,,, +listed-building-outline,,42102448,2021-12-08,,"MULTIPOLYGON (((-0.099010 51.476703,-0.098946 51.476676,-0.098922 51.476698,-0.098930 51.476669,-0.098826 51.476658,-0.098850 51.476635,-0.098806 51.476616,-0.098780 51.476640,-0.098790 51.476610,-0.098657 51.476588,-0.098663 51.476558,-0.098615 51.476539,-0.098592 51.476561,-0.098601 51.476532,-0.098517 51.476526,-0.098539 51.476505,-0.098496 51.476487,-0.098473 51.476509,-0.098480 51.476480,-0.098434 51.476461,-0.098410 51.476483,-0.098390 51.476474,-0.098414 51.476452,-0.098369 51.476434,-0.098346 51.476456,-0.098352 51.476426,-0.098309 51.476409,-0.098267 51.476423,-0.098290 51.476401,-0.098250 51.476384,-0.098209 51.476399,-0.098233 51.476377,-0.098187 51.476357,-0.098254 51.476294,-0.099089 51.476639,-0.099010 51.476703)))",Numbers 257-281 and attached railings,329,POINT(-0.098639 51.476504),listed-building-outline,470746,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB167.pdf,,II,,,, +listed-building-outline,,42102449,2021-12-08,,"MULTIPOLYGON (((-0.061424 51.480408,-0.061337 51.480377,-0.061442 51.480266,-0.061523 51.480305,-0.061424 51.480408)))",Doddington cottages,329,POINT(-0.061431 51.480339),listed-building-outline,470831,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB229.pdf,,II,,,, +listed-building-outline,,42102450,2021-12-08,,"MULTIPOLYGON (((-0.061264 51.480560,-0.061181 51.480524,-0.061263 51.480419,-0.061310 51.480399,-0.061395 51.480431,-0.061264 51.480560)))",Doddington place,329,POINT(-0.061284 51.480476),listed-building-outline,470832,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB230.pdf,,II,,,, +listed-building-outline,,42102451,2021-12-08,,"MULTIPOLYGON (((-0.063607 51.472973,-0.063611 51.472941,-0.063785 51.472947,-0.063775 51.473045,-0.063760 51.473066,-0.063591 51.473051,-0.063628 51.473025,-0.063607 51.472973)))",,329,POINT(-0.063696 51.473001),listed-building-outline,470833,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB230.pdf,,II,,,, +listed-building-outline,,42102452,2021-12-08,,"MULTIPOLYGON (((-0.063799 51.472695,-0.063796 51.472793,-0.063613 51.472799,-0.063647 51.472771,-0.063657 51.472689,-0.063799 51.472695)))",Number 5 and attached wall,329,POINT(-0.063720 51.472745),listed-building-outline,470834,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB231.pdf,,II,,,, +listed-building-outline,,42102453,2021-12-08,,"MULTIPOLYGON (((-0.063624 51.472658,-0.063661 51.472647,-0.063656 51.472570,-0.063820 51.472570,-0.063799 51.472695,-0.063624 51.472658)))",Number 7 and attached wall,329,POINT(-0.063736 51.472625),listed-building-outline,470835,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB232.pdf,,II,,,, +listed-building-outline,,42102454,2021-12-08,,"MULTIPOLYGON (((-0.063632 51.472549,-0.063673 51.472522,-0.063664 51.472445,-0.063830 51.472443,-0.063820 51.472539,-0.063632 51.472549)))",Number 9 and attached wall,329,POINT(-0.063744 51.472494),listed-building-outline,470836,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB233.pdf,,II,,,, +listed-building-outline,,42102455,2021-12-08,,"MULTIPOLYGON (((-0.063646 51.472422,-0.063684 51.472394,-0.063676 51.472318,-0.063840 51.472317,-0.063831 51.472414,-0.063646 51.472422)))",Number 11 and attached wall,329,POINT(-0.063755 51.472368),listed-building-outline,470837,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB234.pdf,,II,,,, +listed-building-outline,,42102456,2021-12-08,,"MULTIPOLYGON (((-0.063805 51.472192,-0.063854 51.472193,-0.063845 51.472288,-0.063692 51.472299,-0.063703 51.472189,-0.063805 51.472192)))",Number 13 and attached wall,329,POINT(-0.063772 51.472242),listed-building-outline,470838,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB235.pdf,,II,,,, +listed-building-outline,,42102457,2021-12-08,,"MULTIPOLYGON (((-0.063668 51.472171,-0.063709 51.472142,-0.063700 51.472069,-0.063865 51.472067,-0.063849 51.472193,-0.063668 51.472171)))",,329,POINT(-0.063780 51.472126),listed-building-outline,470839,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB236.pdf,,II,,,, +listed-building-outline,,42102458,2021-12-08,,"MULTIPOLYGON (((-0.063875 51.471908,-0.063877 51.471887,-0.064064 51.471865,-0.064055 51.471973,-0.063936 51.471984,-0.063940 51.471931,-0.063875 51.471908)))",,329,POINT(-0.063986 51.471921),listed-building-outline,470840,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB236.pdf,,II,,,, +listed-building-outline,,42102459,2021-12-08,,"MULTIPOLYGON (((-0.061438 51.465230,-0.061532 51.465214,-0.061650 51.465475,-0.061541 51.465496,-0.061438 51.465230)))",Beestons gift almshouses,329,POINT(-0.061542 51.465357),listed-building-outline,470841,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB237.pdf,,II,,,, +listed-building-outline,,42102460,2021-12-08,,"MULTIPOLYGON (((-0.061957 51.467801,-0.061956 51.467810,-0.061942 51.467809,-0.061942 51.467801,-0.061957 51.467801)))",K2 telephone kiosk outside Shergar public house (Shergar public house not included),329,POINT(-0.061949 51.467805),listed-building-outline,470844,1986-12-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB238.pdf,,II,,,, +listed-building-outline,,42102461,2021-12-08,,"MULTIPOLYGON (((-0.104387 51.482721,-0.104383 51.482743,-0.104352 51.482742,-0.104355 51.482719,-0.104387 51.482721)))","Two piece reclining figure number 3 sculpture outside sub station, Brandon Estate",329,POINT(-0.104369 51.482731),listed-building-outline,470845,1998-04-15,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB239.pdf,,II,,,, +listed-building-outline,,42102462,2021-12-08,,"MULTIPOLYGON (((-0.086342 51.479205,-0.086299 51.479157,-0.086461 51.479081,-0.086524 51.479076,-0.086568 51.479126,-0.086342 51.479205)))",Collingwood House,329,POINT(-0.086433 51.479136),listed-building-outline,470846,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB239.pdf,,II,,,, +listed-building-outline,,42102463,2021-12-08,,"MULTIPOLYGON (((-0.099143 51.475951,-0.099125 51.475895,-0.099263 51.475899,-0.099304 51.476031,-0.099174 51.476047,-0.099143 51.475951)))",,329,POINT(-0.099215 51.475968),listed-building-outline,470848,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB241.pdf,,II,,,, +listed-building-outline,,42102464,2021-12-08,,"MULTIPOLYGON (((-0.072065 51.433413,-0.071983 51.433326,-0.072108 51.433294,-0.072179 51.433378,-0.072065 51.433413)))",Number 2 and attached railings,329,POINT(-0.072083 51.433353),listed-building-outline,470851,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB243.pdf,,II,,,, +listed-building-outline,,42102465,2021-12-08,,"MULTIPOLYGON (((-0.071655 51.433439,-0.071767 51.433408,-0.071823 51.433498,-0.071702 51.433532,-0.071655 51.433439)))",Number 4 and attached railings and walls,329,POINT(-0.071737 51.433470),listed-building-outline,470852,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB244.pdf,,II,,,, +listed-building-outline,,42102466,2021-12-08,,"MULTIPOLYGON (((-0.092471 51.470267,-0.092510 51.470370,-0.092342 51.470394,-0.092304 51.470297,-0.092471 51.470267)))",,329,POINT(-0.092408 51.470332),listed-building-outline,470856,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB250.pdf,,II,,,, +listed-building-outline,,42102467,2021-12-08,,"MULTIPOLYGON (((-0.092406 51.470094,-0.092475 51.470243,-0.092347 51.470266,-0.092253 51.470236,-0.092240 51.470147,-0.092406 51.470094)))",,329,POINT(-0.092353 51.470188),listed-building-outline,470857,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB251.pdf,,II,,,, +listed-building-outline,,42102468,2021-12-08,,"MULTIPOLYGON (((-0.092404 51.470075,-0.092239 51.470107,-0.092187 51.470001,-0.092352 51.469970,-0.092404 51.470075)))",,329,POINT(-0.092295 51.470038),listed-building-outline,470858,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB251.pdf,,II,,,, +listed-building-outline,,42102469,2021-12-08,,"MULTIPOLYGON (((-0.092156 51.469830,-0.092083 51.469712,-0.092220 51.469681,-0.092292 51.469799,-0.092156 51.469830)))",Maudsley Hospital,329,POINT(-0.092188 51.469755),listed-building-outline,470859,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB252.pdf,,II,,,, +listed-building-outline,,42102470,2021-12-08,,"MULTIPOLYGON (((-0.092066 51.469439,-0.091933 51.469470,-0.091864 51.469357,-0.091999 51.469325,-0.092066 51.469439)))",Maudsley Hospital (part),329,POINT(-0.091965 51.469398),listed-building-outline,470860,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB253.pdf,,II,,,, +listed-building-outline,,42102471,2021-12-08,,"MULTIPOLYGON (((-0.091224 51.468222,-0.091289 51.468271,-0.091267 51.468278,-0.091306 51.468331,-0.091184 51.468364,-0.091137 51.468341,-0.091106 51.468256,-0.091224 51.468222)))",,329,POINT(-0.091202 51.468294),listed-building-outline,470861,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB254.pdf,,II,,,, +listed-building-outline,,42102472,2021-12-08,,"MULTIPOLYGON (((-0.091421 51.468882,-0.091284 51.468719,-0.091324 51.468708,-0.091258 51.468604,-0.091202 51.468619,-0.091179 51.468583,-0.091233 51.468569,-0.091211 51.468539,-0.091420 51.468480,-0.091469 51.468546,-0.091441 51.468552,-0.091750 51.468949,-0.091596 51.468989,-0.091507 51.468858,-0.091421 51.468882)))",Maudsley hospital administration block,329,POINT(-0.091460 51.468731),listed-building-outline,470862,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB255.pdf,,II,,,, +listed-building-outline,,42102473,2021-12-08,,"MULTIPOLYGON (((-0.098027 51.452299,-0.098268 51.452283,-0.098274 51.452322,-0.098300 51.452320,-0.098350 51.452590,-0.098228 51.452649,-0.098073 51.452642,-0.098027 51.452299)))",Herne Hill Baptist church,329,POINT(-0.098184 51.452466),listed-building-outline,470996,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB373.pdf,,II,,,, +listed-building-outline,,42102474,2021-12-08,,"MULTIPOLYGON (((-0.077105 51.459407,-0.077089 51.459363,-0.076920 51.459386,-0.076879 51.459279,-0.077075 51.459257,-0.077050 51.459194,-0.077384 51.459142,-0.077461 51.459352,-0.077237 51.459387,-0.077190 51.459347,-0.077131 51.459357,-0.077147 51.459401,-0.077105 51.459407)))",,329,POINT(-0.077198 51.459281),listed-building-outline,470906,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB288.pdf,,II,,,, +listed-building-outline,,42102475,2021-12-08,,"MULTIPOLYGON (((-0.078567 51.459103,-0.078531 51.459099,-0.078463 51.458921,-0.078531 51.458932,-0.078518 51.458899,-0.078594 51.458875,-0.078455 51.458895,-0.078420 51.458802,-0.078561 51.458781,-0.078587 51.458848,-0.078633 51.458841,-0.078606 51.458774,-0.078628 51.458760,-0.078851 51.458743,-0.078949 51.459026,-0.078567 51.459103)))",Dulwich Grove United Reformed church and church hall,329,POINT(-0.078692 51.458921),listed-building-outline,470907,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB289.pdf,,II,,,, +listed-building-outline,,42102476,2021-12-08,,"MULTIPOLYGON (((-0.072190 51.461108,-0.071922 51.460689,-0.071838 51.460691,-0.071854 51.460647,-0.071715 51.460653,-0.071650 51.460522,-0.071756 51.460474,-0.071678 51.460498,-0.071653 51.460473,-0.071510 51.460479,-0.071501 51.460404,-0.071658 51.460397,-0.071656 51.460365,-0.072023 51.460352,-0.072519 51.461075,-0.072458 51.461095,-0.072539 51.461105,-0.072190 51.461108),(-0.071932 51.460561,-0.071884 51.460487,-0.071864 51.460492,-0.071921 51.460563,-0.071932 51.460561),(-0.071853 51.460445,-0.071833 51.460414,-0.071793 51.460407,-0.071828 51.460450,-0.071853 51.460445)))",Dulwich Leisure Centre,329,POINT(-0.072051 51.460701),listed-building-outline,470908,1993-07-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB290.pdf,,II,,,, +listed-building-outline,,42102477,2021-12-08,,"MULTIPOLYGON (((-0.072468 51.462484,-0.072418 51.462412,-0.072287 51.462449,-0.072315 51.462491,-0.072234 51.462512,-0.072248 51.462534,-0.072044 51.462590,-0.072001 51.462527,-0.072119 51.462494,-0.072011 51.462471,-0.071976 51.462423,-0.072082 51.462368,-0.072059 51.462292,-0.072143 51.462269,-0.072176 51.462322,-0.072311 51.462288,-0.072291 51.462260,-0.072499 51.462266,-0.072529 51.462258,-0.072511 51.462231,-0.072582 51.462212,-0.072726 51.462415,-0.072468 51.462484)))",Church of St John the Evangelist,329,POINT(-0.072333 51.462390),listed-building-outline,470909,1994-12-23,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB291.pdf,,II,,,, +listed-building-outline,,42102478,2021-12-08,,"MULTIPOLYGON (((-0.070987 51.470637,-0.070897 51.470609,-0.070911 51.470649,-0.070851 51.470658,-0.070833 51.470614,-0.070867 51.470591,-0.070793 51.470602,-0.070789 51.470633,-0.070749 51.470545,-0.070943 51.470518,-0.070987 51.470637)))",,329,POINT(-0.070874 51.470581),listed-building-outline,470911,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB293.pdf,,II,,,, +listed-building-outline,,42102479,2021-12-08,,"MULTIPOLYGON (((-0.071134 51.470501,-0.071150 51.470562,-0.071001 51.470595,-0.070978 51.470520,-0.071134 51.470501)))",,329,POINT(-0.071063 51.470545),listed-building-outline,470912,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB293.pdf,,II,,,, +listed-building-outline,,42102480,2021-12-08,,"MULTIPOLYGON (((-0.071150 51.470562,-0.071134 51.470501,-0.071352 51.470474,-0.071369 51.470535,-0.071215 51.470570,-0.071228 51.470620,-0.071191 51.470624,-0.071150 51.470562)))",,329,POINT(-0.071242 51.470533),listed-building-outline,470913,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB294.pdf,,II,,,, +listed-building-outline,,42102481,2021-12-08,,"MULTIPOLYGON (((-0.071469 51.470546,-0.071398 51.470531,-0.071386 51.470470,-0.071582 51.470461,-0.071593 51.470533,-0.071469 51.470546)))",,329,POINT(-0.071492 51.470502),listed-building-outline,470914,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB294.pdf,,II,,,, +listed-building-outline,,42102482,2021-12-08,,"MULTIPOLYGON (((-0.071804 51.470570,-0.071751 51.470594,-0.071746 51.470530,-0.071612 51.470511,-0.071601 51.470444,-0.071762 51.470434,-0.071792 51.470461,-0.071804 51.470570)))",,329,POINT(-0.071715 51.470493),listed-building-outline,470915,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB295.pdf,,II,,,, +listed-building-outline,,42102483,2021-12-08,,"MULTIPOLYGON (((-0.072144 51.470203,-0.072036 51.470186,-0.072054 51.470093,-0.072088 51.470098,-0.072107 51.470041,-0.072198 51.470050,-0.072195 51.470152,-0.072163 51.470148,-0.072144 51.470203)))",St James’s House,329,POINT(-0.072122 51.470123),listed-building-outline,470916,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB296.pdf,,II,,,, +listed-building-outline,,42102484,2021-12-08,,"MULTIPOLYGON (((-0.058567 51.450596,-0.058434 51.450645,-0.058294 51.450537,-0.058329 51.450517,-0.058401 51.450578,-0.058430 51.450561,-0.058398 51.450540,-0.058442 51.450521,-0.058567 51.450596)))",Lodge to Camberwell Old Cemetery,329,POINT(-0.058435 51.450580),listed-building-outline,470928,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB310.pdf,,II,,,, +listed-building-outline,,42102485,2021-12-08,,"MULTIPOLYGON (((-0.059888 51.452433,-0.059894 51.452430,-0.059652 51.452260,-0.059837 51.452155,-0.060120 51.452371,-0.059943 51.452465,-0.059888 51.452433)))",Honor oak Baptist church and attached walls and railings,329,POINT(-0.059887 51.452312),listed-building-outline,470933,1998-08-25,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB313.pdf,,II,,,, +listed-building-outline,,42102486,2021-12-08,,"MULTIPOLYGON (((-0.053962 51.449297,-0.053902 51.449310,-0.053686 51.449235,-0.053767 51.449143,-0.054022 51.449233,-0.053962 51.449297)))","Woodville Hall, part of Sacred Heart convent school",329,POINT(-0.053851 51.449232),listed-building-outline,470934,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB315.pdf,,II,,,, +listed-building-outline,,42102487,2021-12-08,,"MULTIPOLYGON (((-0.064875 51.477479,-0.064819 51.477469,-0.064773 51.477316,-0.064899 51.477306,-0.064932 51.477474,-0.064875 51.477479)))",,329,POINT(-0.064857 51.477391),listed-building-outline,470939,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB316.pdf,,II,,,, +listed-building-outline,,42102488,2021-12-08,,"MULTIPOLYGON (((-0.064736 51.476852,-0.064731 51.476831,-0.064654 51.476848,-0.064649 51.476825,-0.064648 51.476802,-0.064724 51.476794,-0.064688 51.476720,-0.064709 51.476717,-0.064693 51.476647,-0.064734 51.476643,-0.064721 51.476585,-0.064679 51.476588,-0.064620 51.476323,-0.064565 51.476306,-0.064611 51.476290,-0.064604 51.476245,-0.064549 51.476232,-0.064593 51.476202,-0.064588 51.476165,-0.064533 51.476157,-0.064620 51.476118,-0.064570 51.476096,-0.064563 51.476055,-0.064668 51.476044,-0.064895 51.477138,-0.064784 51.477147,-0.064736 51.476852)))",,329,POINT(-0.064727 51.476597),listed-building-outline,470940,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB317.pdf,,II,,,, +listed-building-outline,,42102489,2021-12-08,,"MULTIPOLYGON (((-0.064529 51.475793,-0.064612 51.475785,-0.064668 51.476044,-0.064581 51.476053,-0.064529 51.475793)))",,329,POINT(-0.064598 51.475920),listed-building-outline,470941,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB318.pdf,,II,,,, +listed-building-outline,,42102490,2021-12-08,,"MULTIPOLYGON (((-0.066672 51.478092,-0.066662 51.478067,-0.066561 51.478058,-0.066529 51.478001,-0.066634 51.478001,-0.066617 51.477952,-0.066531 51.477964,-0.066474 51.477904,-0.066591 51.477886,-0.066571 51.477836,-0.066486 51.477849,-0.066449 51.477808,-0.066460 51.477781,-0.066544 51.477768,-0.066526 51.477721,-0.066414 51.477717,-0.066415 51.477669,-0.066481 51.477659,-0.066463 51.477610,-0.066378 51.477623,-0.066364 51.477590,-0.066572 51.477557,-0.066794 51.478132,-0.066619 51.478158,-0.066607 51.478127,-0.066681 51.478116,-0.066672 51.478092)))",,329,POINT(-0.066596 51.477851),listed-building-outline,470942,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB318.pdf,,II,,,, +listed-building-outline,,42102491,2021-12-08,,"MULTIPOLYGON (((-0.078105 51.478093,-0.078140 51.478079,-0.078063 51.478045,-0.078057 51.477993,-0.078021 51.478006,-0.077981 51.477963,-0.078301 51.477853,-0.078463 51.477922,-0.078466 51.477962,-0.078419 51.477979,-0.078445 51.478006,-0.078379 51.478050,-0.078144 51.478133,-0.078105 51.478093)))",St Luke’s Church,329,POINT(-0.078240 51.477984),listed-building-outline,479911,2000-04-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB257.pdf,,II,,,, +listed-building-outline,,42102492,2021-12-08,,"MULTIPOLYGON (((-0.085743 51.467483,-0.085681 51.467438,-0.085711 51.467431,-0.085664 51.467355,-0.085622 51.467342,-0.085774 51.467305,-0.085898 51.467508,-0.085703 51.467555,-0.085757 51.467530,-0.085743 51.467483)))",Numbers 143-149 and attached balconies,329,POINT(-0.085771 51.467424),listed-building-outline,470988,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB363.pdf,,II,,,, +listed-building-outline,,42102493,2021-12-08,,"MULTIPOLYGON (((-0.084488 51.465728,-0.084433 51.465706,-0.084368 51.465642,-0.084499 51.465583,-0.084555 51.465612,-0.084603 51.465680,-0.084488 51.465728)))",Numbers 197 and 199 and handrail and area railings,329,POINT(-0.084489 51.465657),listed-building-outline,470989,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB364.pdf,,II,,,, +listed-building-outline,,42102494,2021-12-08,,"MULTIPOLYGON (((-0.084362 51.465610,-0.084269 51.465528,-0.084377 51.465479,-0.084499 51.465583,-0.084388 51.465632,-0.084362 51.465610)))",,329,POINT(-0.084383 51.465556),listed-building-outline,470990,1970-07-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB365.pdf,,II,,,, +listed-building-outline,,42102495,2021-12-08,,"MULTIPOLYGON (((-0.082145 51.467098,-0.082164 51.467080,-0.082131 51.467039,-0.082321 51.466979,-0.082412 51.467038,-0.082288 51.467111,-0.082164 51.467122,-0.082145 51.467098)))",Grove hill House,329,POINT(-0.082264 51.467054),listed-building-outline,470991,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB366.pdf,,II,,,, +listed-building-outline,,42102496,2021-12-08,,"MULTIPOLYGON (((-0.081446 51.467370,-0.081374 51.467287,-0.081558 51.467223,-0.081632 51.467308,-0.081538 51.467340,-0.081556 51.467361,-0.081529 51.467370,-0.081510 51.467349,-0.081446 51.467370)))",Fontenoy House and iron gate,329,POINT(-0.081504 51.467299),listed-building-outline,470992,1972-05-15,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB367.pdf,,II,,,, +listed-building-outline,,42102497,2021-12-08,,"MULTIPOLYGON (((-0.083581 51.467809,-0.083766 51.467757,-0.083845 51.467814,-0.083580 51.467899,-0.083539 51.467850,-0.083581 51.467809)))","Numbers 124 and 125 including balustraded wall, gates and railings",329,POINT(-0.083681 51.467825),listed-building-outline,470993,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB368.pdf,,II,,,, +listed-building-outline,,42102498,2021-12-08,,"MULTIPOLYGON (((-0.077245 51.461634,-0.076758 51.461492,-0.076662 51.461471,-0.076776 51.461319,-0.076953 51.461380,-0.076999 51.461318,-0.077061 51.461335,-0.077019 51.461394,-0.077200 51.461449,-0.077243 51.461391,-0.077290 51.461405,-0.077247 51.461463,-0.077353 51.461496,-0.077280 51.461589,-0.077351 51.461610,-0.077317 51.461656,-0.077245 51.461634)))","Grove vale school and walls, gates and railings",329,POINT(-0.077025 51.461477),listed-building-outline,470994,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB369.pdf,,II,,,, +listed-building-outline,,42102499,2021-12-08,,"MULTIPOLYGON (((-0.085802 51.441141,-0.085796 51.441114,-0.085666 51.441154,-0.085638 51.441101,-0.085780 51.441085,-0.085745 51.441015,-0.085834 51.440978,-0.085899 51.441060,-0.085939 51.441052,-0.085955 51.441080,-0.085915 51.441089,-0.085970 51.441168,-0.085845 51.441199,-0.085802 51.441141)))","The Old Library, Dulwich College",329,POINT(-0.085828 51.441097),listed-building-outline,470818,1994-01-21,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB219.pdf,,II,,,, +listed-building-outline,,42102500,2021-12-08,,"MULTIPOLYGON (((-0.081080 51.436901,-0.081040 51.436842,-0.081204 51.436799,-0.081326 51.436809,-0.081209 51.436881,-0.081080 51.436901)))",Dulwich toll house,329,POINT(-0.081170 51.436846),listed-building-outline,470820,1988-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB220.pdf,,II,,,, +listed-building-outline,,42102501,2021-12-08,,"MULTIPOLYGON (((-0.085002 51.446743,-0.084937 51.446723,-0.084943 51.446676,-0.084975 51.446651,-0.085091 51.446656,-0.085079 51.446747,-0.085002 51.446743)))","Park lodge next to old college gate, Dulwich Park",329,POINT(-0.085017 51.446698),listed-building-outline,470822,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB222.pdf,,II,,,, +listed-building-outline,,42102502,2021-12-08,,"MULTIPOLYGON (((-0.083129 51.440588,-0.083021 51.440513,-0.083100 51.440546,-0.083139 51.440524,-0.083085 51.440494,-0.083184 51.440433,-0.083306 51.440512,-0.083157 51.440605,-0.083129 51.440588)))",Pond Cottages,329,POINT(-0.083180 51.440519),listed-building-outline,470823,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB223.pdf,,II,,,, +listed-building-outline,,42102503,2021-12-08,,"MULTIPOLYGON (((-0.083012 51.440659,-0.082897 51.440594,-0.083015 51.440541,-0.082995 51.440529,-0.083021 51.440513,-0.083129 51.440588,-0.083012 51.440659)))",Pond Cottages,329,POINT(-0.083018 51.440590),listed-building-outline,470824,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB224.pdf,,II,,,, +listed-building-outline,,42102504,2021-12-08,,"MULTIPOLYGON (((-0.082790 51.440527,-0.082751 51.440499,-0.082686 51.440445,-0.082736 51.440418,-0.082860 51.440506,-0.082790 51.440527)))",Pond Cottages,329,POINT(-0.082769 51.440475),listed-building-outline,470825,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB224.pdf,,II,,,, +listed-building-outline,,42102505,2021-12-08,,"MULTIPOLYGON (((-0.082714 51.440403,-0.082641 51.440430,-0.082664 51.440456,-0.082619 51.440472,-0.082561 51.440414,-0.082773 51.440333,-0.082839 51.440356,-0.082714 51.440403)))",Pond Cottages,329,POINT(-0.082685 51.440396),listed-building-outline,470826,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB225.pdf,,II,,,, +listed-building-outline,,42102506,2021-12-08,,"MULTIPOLYGON (((-0.066729 51.478381,-0.066671 51.478390,-0.066624 51.478298,-0.066684 51.478289,-0.066729 51.478381)))",,329,POINT(-0.066677 51.478339),listed-building-outline,470829,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB228.pdf,,II,,,, +listed-building-outline,,42102507,2021-12-08,,"MULTIPOLYGON (((-0.062018 51.479839,-0.061929 51.479785,-0.062008 51.479805,-0.062050 51.479772,-0.061997 51.479746,-0.062018 51.479730,-0.062165 51.479798,-0.062071 51.479880,-0.062018 51.479839)))",,329,POINT(-0.062065 51.479807),listed-building-outline,470830,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB228.pdf,,II,,,, +listed-building-outline,,42102508,2021-12-08,,"MULTIPOLYGON (((-0.089420 51.443202,-0.089488 51.443162,-0.089617 51.443191,-0.089566 51.443278,-0.089588 51.443319,-0.089531 51.443341,-0.089486 51.443419,-0.089357 51.443390,-0.089378 51.443357,-0.089335 51.443347,-0.089420 51.443202)))",Belair,329,POINT(-0.089475 51.443287),listed-building-outline,470943,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB319.pdf,,II,,,, +listed-building-outline,,42102509,2021-12-08,,"MULTIPOLYGON (((-0.088955 51.442835,-0.088990 51.442758,-0.089081 51.442806,-0.089061 51.442853,-0.088955 51.442835)))",Lodge and entrance gate to Belair,329,POINT(-0.089018 51.442812),listed-building-outline,470944,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB320.pdf,,II,,,, +listed-building-outline,,42102510,2021-12-08,,"MULTIPOLYGON (((-0.089438 51.442796,-0.089361 51.442814,-0.089058 51.442765,-0.089088 51.442697,-0.089454 51.442760,-0.089438 51.442796)))",Stable building to Belair,329,POINT(-0.089249 51.442759),listed-building-outline,470945,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB320.pdf,,II,,,, +listed-building-outline,,42102511,2021-12-08,,"MULTIPOLYGON (((-0.086653 51.445649,-0.086667 51.445568,-0.086739 51.445572,-0.086733 51.445611,-0.086772 51.445613,-0.086765 51.445657,-0.086653 51.445649)))",Cottage to south east of Dulwich Picture Gallery and attached wall,329,POINT(-0.086708 51.445616),listed-building-outline,470947,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB322.pdf,,II,,,, +listed-building-outline,,42102512,2021-12-08,,"MULTIPOLYGON (((-0.086063 51.447403,-0.086003 51.447384,-0.086123 51.447243,-0.086207 51.447271,-0.086088 51.447411,-0.086063 51.447403)))",Old grammar school and railings,329,POINT(-0.086105 51.447327),listed-building-outline,470948,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB323.pdf,,II,,,, +listed-building-outline,,42102513,2021-12-08,,"MULTIPOLYGON (((-0.072253 51.485291,-0.072256 51.485261,-0.072306 51.485264,-0.072312 51.485206,-0.072268 51.485204,-0.072272 51.485176,-0.072436 51.485184,-0.072420 51.485309,-0.072253 51.485291)))",Numbers 5 and 7 and attached railings,329,POINT(-0.072356 51.485241),listed-building-outline,470955,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB330.pdf,,II,,,, +listed-building-outline,,42102514,2021-12-08,,"MULTIPOLYGON (((-0.072274 51.485151,-0.072277 51.485124,-0.072321 51.485127,-0.072330 51.485065,-0.072283 51.485063,-0.072286 51.485038,-0.072453 51.485048,-0.072436 51.485184,-0.072274 51.485151)))",Numbers 9 and 11 and attached railings,329,POINT(-0.072374 51.485107),listed-building-outline,470956,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB331.pdf,,II,,,, +listed-building-outline,,42102515,2021-12-08,,"MULTIPOLYGON (((-0.072288 51.485019,-0.072343 51.484963,-0.072346 51.484937,-0.072299 51.484934,-0.072304 51.484903,-0.072470 51.484912,-0.072454 51.485029,-0.072288 51.485019)))",Numbers 13 and 15 and attached railings,329,POINT(-0.072389 51.484966),listed-building-outline,470957,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB332.pdf,,II,,,, +listed-building-outline,,42102516,2021-12-08,,"MULTIPOLYGON (((-0.072323 51.484743,-0.072378 51.484688,-0.072332 51.484686,-0.072315 51.484635,-0.072506 51.484638,-0.072489 51.484765,-0.072323 51.484743)))",Numbers 21 and 23 and attached railings,329,POINT(-0.072419 51.484694),listed-building-outline,470959,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB334.pdf,,II,,,, +listed-building-outline,,42102517,2021-12-08,,"MULTIPOLYGON (((-0.072305 51.484880,-0.072309 51.484851,-0.072356 51.484854,-0.072364 51.484798,-0.072317 51.484795,-0.072322 51.484757,-0.072489 51.484765,-0.072471 51.484890,-0.072305 51.484880)))",Numbers 17 and 19 and attached railings,329,POINT(-0.072406 51.484823),listed-building-outline,470958,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB333.pdf,,II,,,, +listed-building-outline,,42102518,2021-12-08,,"MULTIPOLYGON (((-0.072895 51.484857,-0.072902 51.484799,-0.073065 51.484807,-0.073061 51.484837,-0.073021 51.484834,-0.073013 51.484890,-0.073072 51.484893,-0.073068 51.484923,-0.072887 51.484913,-0.072895 51.484857)))",Numbers 24 and 26 and attached railings,329,POINT(-0.072971 51.484861),listed-building-outline,470960,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB335.pdf,,II,,,, +listed-building-outline,,42102519,2021-12-08,,"MULTIPOLYGON (((-0.089678 51.472743,-0.089141 51.472118,-0.088873 51.471810,-0.089011 51.471764,-0.089320 51.472151,-0.089347 51.472142,-0.089401 51.472206,-0.089375 51.472214,-0.089399 51.472243,-0.089428 51.472233,-0.089441 51.472291,-0.089553 51.472361,-0.089526 51.472370,-0.089542 51.472410,-0.089639 51.472468,-0.089603 51.472481,-0.089663 51.472519,-0.089637 51.472527,-0.089734 51.472638,-0.089806 51.472670,-0.089770 51.472682,-0.089870 51.472743,-0.089722 51.472794,-0.089678 51.472743)))",Numbers 18-60 and area railings,329,POINT(-0.089360 51.472276),listed-building-outline,470978,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB357.pdf,,II,,,, +listed-building-outline,,42102520,2021-12-08,,"MULTIPOLYGON (((-0.088293 51.471768,-0.088231 51.471731,-0.088267 51.471723,-0.088251 51.471692,-0.088210 51.471701,-0.088203 51.471660,-0.088230 51.471656,-0.088163 51.471608,-0.088199 51.471600,-0.088189 51.471580,-0.088297 51.471558,-0.088399 51.471746,-0.088293 51.471768)))",,329,POINT(-0.088285 51.471665),listed-building-outline,470979,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB358.pdf,,II,,,, +listed-building-outline,,42102521,2021-12-08,,"MULTIPOLYGON (((-0.088073 51.471239,-0.087979 51.471271,-0.087964 51.471247,-0.088004 51.471238,-0.087958 51.471221,-0.088105 51.471188,-0.088129 51.471227,-0.088073 51.471239)))",White cottage,329,POINT(-0.088043 51.471226),listed-building-outline,470980,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB358.pdf,,II,,,, +listed-building-outline,,42102522,2021-12-08,,"MULTIPOLYGON (((-0.087869 51.471231,-0.087812 51.471130,-0.087945 51.471101,-0.087989 51.471137,-0.088007 51.471210,-0.087869 51.471231)))",White lodge,329,POINT(-0.087915 51.471166),listed-building-outline,470981,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB359.pdf,,II,,,, +listed-building-outline,,42102523,2021-12-08,,"MULTIPOLYGON (((-0.087504 51.470393,-0.087631 51.470355,-0.087681 51.470418,-0.087532 51.470454,-0.087504 51.470393)))",Cliftonville,329,POINT(-0.087589 51.470405),listed-building-outline,470982,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB359.pdf,,II,,,, +listed-building-outline,,42102524,2021-12-08,,"MULTIPOLYGON (((-0.087484 51.470291,-0.087634 51.470256,-0.087652 51.470290,-0.087504 51.470323,-0.087484 51.470291)))",Outbuilding to number 83 (Clintonville),329,POINT(-0.087569 51.470290),listed-building-outline,470984,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB360.pdf,,II,,,, +listed-building-outline,,42102525,2021-12-08,,"MULTIPOLYGON (((-0.086476 51.468712,-0.086459 51.468687,-0.086560 51.468662,-0.086543 51.468637,-0.086527 51.468613,-0.086426 51.468639,-0.086393 51.468588,-0.086581 51.468514,-0.086709 51.468713,-0.086494 51.468739,-0.086476 51.468712)))",,329,POINT(-0.086557 51.468635),listed-building-outline,470985,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB361.pdf,,II,,,, +listed-building-outline,,42102526,2021-12-08,,"MULTIPOLYGON (((-0.086493 51.468537,-0.086428 51.468434,-0.086519 51.468410,-0.086581 51.468514,-0.086493 51.468537)))",,329,POINT(-0.086505 51.468473),listed-building-outline,470986,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB362.pdf,,II,,,, +listed-building-outline,,42102527,2021-12-08,,"MULTIPOLYGON (((-0.086029 51.466821,-0.085882 51.466711,-0.086075 51.466634,-0.086099 51.466658,-0.086009 51.466694,-0.086070 51.466753,-0.086159 51.466717,-0.086205 51.466757,-0.086029 51.466821)))",,329,POINT(-0.086034 51.466737),listed-building-outline,470987,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB362.pdf,,II,,,, +listed-building-outline,,42102528,2021-12-08,,"MULTIPOLYGON (((-0.066840 51.466056,-0.066839 51.466065,-0.066825 51.466064,-0.066825 51.466055,-0.066840 51.466056)))",K2 telephone kiosk outside white horse public house (White Horse public house not included),329,POINT(-0.066832 51.466060),listed-building-outline,471143,1986-12-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB512.pdf,,II,,,, +listed-building-outline,,42102529,2021-12-08,,"MULTIPOLYGON (((-0.058547 51.465939,-0.058457 51.465859,-0.058613 51.465788,-0.058607 51.465756,-0.058651 51.465735,-0.058699 51.465748,-0.058856 51.465675,-0.058939 51.465757,-0.058892 51.465746,-0.058872 51.465755,-0.058897 51.465777,-0.058819 51.465779,-0.058845 51.465802,-0.058814 51.465817,-0.058786 51.465794,-0.058678 51.465842,-0.058654 51.465890,-0.058626 51.465867,-0.058602 51.465878,-0.058632 51.465903,-0.058602 51.465916,-0.058549 51.465902,-0.058575 51.465927,-0.058547 51.465939)))",Beer and wine trade homes,329,POINT(-0.058688 51.465801),listed-building-outline,471144,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB512.pdf,,II,,,, +listed-building-outline,,42102530,2021-12-08,,"MULTIPOLYGON (((-0.061702 51.463731,-0.061654 51.463690,-0.061575 51.463725,-0.061379 51.463577,-0.061484 51.463528,-0.061509 51.463549,-0.061742 51.463435,-0.061833 51.463492,-0.061787 51.463512,-0.061925 51.463639,-0.061702 51.463731)))",Church of St Antholin,329,POINT(-0.061666 51.463596),listed-building-outline,471145,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB513.pdf,,II,,,, +listed-building-outline,,42102531,2021-12-08,,"MULTIPOLYGON (((-0.101266 51.482890,-0.101264 51.482893,-0.101259 51.482891,-0.101262 51.482888,-0.101266 51.482890)))",Bollard at junction with Heron Street,329,POINT(-0.101263 51.482891),listed-building-outline,471154,1979-07-03,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB520.pdf,,II,,,, +listed-building-outline,,42102532,2021-12-08,,"MULTIPOLYGON (((-0.081998 51.479275,-0.081963 51.479260,-0.081807 51.479020,-0.081927 51.478992,-0.081980 51.479105,-0.082117 51.479083,-0.082140 51.479118,-0.082016 51.479160,-0.082057 51.479226,-0.082145 51.479204,-0.082209 51.479224,-0.081998 51.479275)))",Numbers 40-46 and attached railings to number 44,329,POINT(-0.081977 51.479139),listed-building-outline,471167,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB531.pdf,,II,,,, +listed-building-outline,,42102533,2021-12-08,,"MULTIPOLYGON (((-0.070565 51.477831,-0.070507 51.477722,-0.070640 51.477695,-0.070737 51.477923,-0.070626 51.477943,-0.070565 51.477831)))",Numbers 34-40 and attached handrails,329,POINT(-0.070626 51.477817),listed-building-outline,471172,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB532.pdf,,II,,,, +listed-building-outline,,42102534,2021-12-08,,"MULTIPOLYGON (((-0.069336 51.475438,-0.069312 51.475380,-0.069522 51.475350,-0.069543 51.475408,-0.069446 51.475404,-0.069467 51.475464,-0.069351 51.475481,-0.069336 51.475438)))",,329,POINT(-0.069417 51.475411),listed-building-outline,471173,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB533.pdf,,II,,,, +listed-building-outline,,42102535,2021-12-08,,"MULTIPOLYGON (((-0.069283 51.475301,-0.069266 51.475257,-0.069399 51.475238,-0.069423 51.475291,-0.069418 51.475335,-0.069302 51.475351,-0.069283 51.475301)))",,329,POINT(-0.069349 51.475294),listed-building-outline,471174,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB534.pdf,,II,,,, +listed-building-outline,,42102536,2021-12-08,,"MULTIPOLYGON (((-0.081976 51.473565,-0.081965 51.473572,-0.081955 51.473565,-0.081966 51.473559,-0.081976 51.473565)))",Lamp post in courtyard of number 34,329,POINT(-0.081965 51.473565),listed-building-outline,471185,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB541.pdf,,II,,,, +listed-building-outline,,42102537,2021-12-08,,"MULTIPOLYGON (((-0.083547 51.475683,-0.083440 51.475625,-0.083453 51.475548,-0.083514 51.475507,-0.083659 51.475538,-0.083756 51.475506,-0.083800 51.475598,-0.083666 51.475584,-0.083600 51.475660,-0.083628 51.475701,-0.083562 51.475712,-0.083547 51.475683)))",Former circular ward for St Gile’s Hospital,329,POINT(-0.083591 51.475589),listed-building-outline,471000,1986-12-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB377.pdf,,II,,,, +listed-building-outline,,42102538,2021-12-08,,"MULTIPOLYGON (((-0.083503 51.476549,-0.083487 51.476516,-0.083440 51.476524,-0.083389 51.476415,-0.083374 51.476381,-0.083423 51.476372,-0.083403 51.476331,-0.083524 51.476310,-0.083547 51.476358,-0.083501 51.476366,-0.083559 51.476494,-0.083606 51.476485,-0.083629 51.476536,-0.083503 51.476549)))",,329,POINT(-0.083487 51.476437),listed-building-outline,471002,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB378.pdf,,II,,,, +listed-building-outline,,42102539,2021-12-08,,"MULTIPOLYGON (((-0.098942 51.454665,-0.099015 51.454710,-0.098958 51.454764,-0.098853 51.454757,-0.098780 51.454713,-0.098897 51.454638,-0.098942 51.454665)))",Herne Hill school and attached walls and terraces,329,POINT(-0.098901 51.454709),listed-building-outline,471004,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB380.pdf,,II,,,, +listed-building-outline,,42102540,2021-12-08,,"MULTIPOLYGON (((-0.070756 51.471467,-0.070727 51.471312,-0.070772 51.471309,-0.070786 51.471389,-0.070878 51.471419,-0.070938 51.471416,-0.070948 51.471334,-0.070987 51.471315,-0.070993 51.471350,-0.071062 51.471359,-0.071070 51.471395,-0.071134 51.471390,-0.071145 51.471444,-0.070756 51.471467)))",,329,POINT(-0.070928 51.471407),listed-building-outline,471005,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB381.pdf,,II,,,, +listed-building-outline,,42102541,2021-12-08,,"MULTIPOLYGON (((-0.071092 51.471775,-0.071069 51.471626,-0.071515 51.471602,-0.071534 51.471743,-0.071501 51.471745,-0.071499 51.471683,-0.071329 51.471693,-0.071346 51.471766,-0.071311 51.471768,-0.071264 51.471743,-0.071259 51.471692,-0.071145 51.471697,-0.071115 51.471702,-0.071126 51.471774,-0.071092 51.471775)))",,329,POINT(-0.071299 51.471669),listed-building-outline,471006,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB382.pdf,,II,,,, +listed-building-outline,,42102542,2021-12-08,,"MULTIPOLYGON (((-0.071637 51.471692,-0.071635 51.471669,-0.071525 51.471682,-0.071519 51.471625,-0.071580 51.471597,-0.071778 51.471611,-0.071786 51.471669,-0.071637 51.471692)))",,329,POINT(-0.071651 51.471642),listed-building-outline,471007,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB383.pdf,,II,,,, +listed-building-outline,,42102543,2021-12-08,,"MULTIPOLYGON (((-0.071441 51.471424,-0.071436 51.471398,-0.071393 51.471400,-0.071381 51.471344,-0.071617 51.471329,-0.071627 51.471385,-0.071580 51.471388,-0.071584 51.471415,-0.071441 51.471424)))",,329,POINT(-0.071506 51.471374),listed-building-outline,471008,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB383.pdf,,II,,,, +listed-building-outline,,42102544,2021-12-08,,"MULTIPOLYGON (((-0.071831 51.471315,-0.071821 51.471285,-0.071844 51.471284,-0.071863 51.471401,-0.071632 51.471414,-0.071617 51.471329,-0.071831 51.471315)))",,329,POINT(-0.071744 51.471362),listed-building-outline,471009,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB384.pdf,,II,,,, +listed-building-outline,,42102545,2021-12-08,,"MULTIPOLYGON (((-0.071849 51.471314,-0.071921 51.471311,-0.071894 51.471248,-0.071945 51.471244,-0.071967 51.471396,-0.071863 51.471401,-0.071849 51.471314)))",,329,POINT(-0.071913 51.471337),listed-building-outline,471010,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB385.pdf,,II,,,, +listed-building-outline,,42102546,2021-12-08,,"MULTIPOLYGON (((-0.073285 51.471102,-0.073248 51.471011,-0.073441 51.470977,-0.073483 51.470999,-0.073473 51.470972,-0.073586 51.470973,-0.073576 51.470948,-0.073609 51.470970,-0.073678 51.470945,-0.073715 51.471037,-0.073285 51.471102)),((-0.073060 51.471138,-0.073022 51.471048,-0.073214 51.471018,-0.073251 51.471107,-0.073060 51.471138)))",,329,POINT(-0.073372 51.471041),listed-building-outline,491610,2004-02-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB386.pdf,,II,,,, +listed-building-outline,,42102547,2021-12-08,,"MULTIPOLYGON (((-0.070815 51.471978,-0.070473 51.471981,-0.070480 51.471796,-0.070783 51.471778,-0.070791 51.471669,-0.071073 51.471651,-0.071130 51.472021,-0.070827 51.472041,-0.070815 51.471978)))",Post office depot,329,POINT(-0.070840 51.471861),listed-building-outline,471011,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB387.pdf,,II,,,, +listed-building-outline,,42102548,2021-12-08,,"MULTIPOLYGON (((-0.069873 51.470146,-0.069938 51.470130,-0.069986 51.470206,-0.069861 51.470236,-0.069813 51.470161,-0.069873 51.470146)))",Numbers 5 and 6 and area railings,329,POINT(-0.069900 51.470183),listed-building-outline,471012,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB388.pdf,,II,,,, +listed-building-outline,,42102549,2021-12-08,,"MULTIPOLYGON (((-0.070065 51.470098,-0.070124 51.470084,-0.070172 51.470161,-0.070053 51.470190,-0.070005 51.470113,-0.070065 51.470098)))",Numbers 7 and 8 and area railings,329,POINT(-0.070088 51.470137),listed-building-outline,471013,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB389.pdf,,II,,,, +listed-building-outline,,42102550,2021-12-08,,"MULTIPOLYGON (((-0.070253 51.470051,-0.070316 51.470036,-0.070365 51.470113,-0.070241 51.470144,-0.070193 51.470066,-0.070253 51.470051)))",Numbers 9 and 10 and area railings,329,POINT(-0.070279 51.470090),listed-building-outline,471014,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB390.pdf,,II,,,, +listed-building-outline,,42102551,2021-12-08,,"MULTIPOLYGON (((-0.070489 51.469994,-0.070466 51.469958,-0.070540 51.469980,-0.070710 51.469939,-0.070761 51.470018,-0.070389 51.470108,-0.070340 51.470030,-0.070489 51.469994)))",Numbers 11-14 and attached hand rails and area railings,329,POINT(-0.070549 51.470022),listed-building-outline,471015,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB391.pdf,,II,,,, +listed-building-outline,,42102552,2021-12-08,,"MULTIPOLYGON (((-0.070879 51.469882,-0.070957 51.469969,-0.070761 51.470018,-0.070710 51.469939,-0.070879 51.469882)))",Numbers 15 and 16 and handrails and garden railings,329,POINT(-0.070830 51.469952),listed-building-outline,471016,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB392.pdf,,II,,,, +listed-building-outline,,42102553,2021-12-08,,"MULTIPOLYGON (((-0.070990 51.469962,-0.070907 51.469891,-0.071052 51.469855,-0.070979 51.469736,-0.071023 51.469725,-0.071112 51.469867,-0.071080 51.469876,-0.071115 51.469930,-0.070990 51.469962)))",,329,POINT(-0.071027 51.469869),listed-building-outline,471017,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB393.pdf,,II,,,, +listed-building-outline,,42102554,2021-12-08,,"MULTIPOLYGON (((-0.071187 51.469912,-0.071152 51.469858,-0.071098 51.469843,-0.071256 51.469804,-0.071305 51.469883,-0.071187 51.469912)))",,329,POINT(-0.071217 51.469857),listed-building-outline,471018,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB394.pdf,,II,,,, +listed-building-outline,,42102555,2021-12-08,,"MULTIPOLYGON (((-0.071629 51.469713,-0.071693 51.469697,-0.071743 51.469776,-0.071344 51.469873,-0.071295 51.469796,-0.071629 51.469713)))",Numbers 21-24 and attached handrails,329,POINT(-0.071520 51.469785),listed-building-outline,471019,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB395.pdf,,II,,,, +listed-building-outline,,42102556,2021-12-08,,"MULTIPOLYGON (((-0.072470 51.469599,-0.072403 51.469529,-0.072557 51.469489,-0.072605 51.469566,-0.072470 51.469599)))",,329,POINT(-0.072508 51.469545),listed-building-outline,471020,1998-08-03,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB396.pdf,,II,,,, +listed-building-outline,,42102557,2021-12-08,,"MULTIPOLYGON (((-0.050633 51.450581,-0.050504 51.450481,-0.050545 51.450461,-0.050515 51.450429,-0.050584 51.450399,-0.050564 51.450379,-0.050635 51.450352,-0.050807 51.450292,-0.050870 51.450324,-0.050914 51.450304,-0.051034 51.450440,-0.050633 51.450581)))",Church of St Augustine,329,POINT(-0.050756 51.450431),listed-building-outline,471021,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB397.pdf,,II,,,, +listed-building-outline,,42102558,2021-12-08,,"MULTIPOLYGON (((-0.053544 51.450833,-0.053483 51.450796,-0.053533 51.450764,-0.053500 51.450743,-0.053562 51.450703,-0.053673 51.450733,-0.053650 51.450747,-0.053679 51.450764,-0.053544 51.450833)))",,329,POINT(-0.053577 51.450765),listed-building-outline,471022,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB398.pdf,,II,,,, +listed-building-outline,,42102559,2021-12-08,,"MULTIPOLYGON (((-0.053393 51.450928,-0.053257 51.450845,-0.053300 51.450818,-0.053366 51.450852,-0.053395 51.450833,-0.053482 51.450888,-0.053393 51.450928)))",,329,POINT(-0.053371 51.450872),listed-building-outline,471023,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB399.pdf,,II,,,, +listed-building-outline,,42102560,2021-12-08,,"MULTIPOLYGON (((-0.053234 51.451027,-0.053081 51.450933,-0.053130 51.450902,-0.053208 51.450951,-0.053272 51.450911,-0.053197 51.450864,-0.053241 51.450836,-0.053393 51.450928,-0.053234 51.451027)))",,329,POINT(-0.053246 51.450937),listed-building-outline,471024,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB400.pdf,,II,,,, +listed-building-outline,,42102561,2021-12-08,,"MULTIPOLYGON (((-0.090500 51.473503,-0.090557 51.473482,-0.090530 51.473460,-0.090751 51.473355,-0.090817 51.473408,-0.090495 51.473562,-0.090473 51.473514,-0.090500 51.473503)))",,329,POINT(-0.090643 51.473452),listed-building-outline,471031,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB412.pdf,,II,,,, +listed-building-outline,,42102562,2021-12-08,,"MULTIPOLYGON (((-0.090833 51.473541,-0.090920 51.473498,-0.090963 51.473532,-0.090785 51.473655,-0.090715 51.473598,-0.090833 51.473541)))",,329,POINT(-0.090838 51.473575),listed-building-outline,471032,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB413.pdf,,II,,,, +listed-building-outline,,42102563,2021-12-08,,"MULTIPOLYGON (((-0.052821 51.464248,-0.052866 51.464276,-0.052790 51.464324,-0.052825 51.464345,-0.052785 51.464371,-0.052648 51.464316,-0.052787 51.464227,-0.052821 51.464248)))","East lodge, Nunhead Cemetery",329,POINT(-0.052763 51.464300),listed-building-outline,471051,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB436.pdf,,II,,,, +listed-building-outline,,42102564,2021-12-08,,"MULTIPOLYGON (((-0.069236 51.475170,-0.069222 51.475129,-0.069362 51.475109,-0.069400 51.475157,-0.069390 51.475191,-0.069250 51.475211,-0.069236 51.475170)))",,329,POINT(-0.069311 51.475159),listed-building-outline,471175,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB534.pdf,,II,,,, +listed-building-outline,,42102565,2021-12-08,,"MULTIPOLYGON (((-0.067959 51.479599,-0.067993 51.479541,-0.068207 51.479590,-0.068083 51.479597,-0.068052 51.479651,-0.068128 51.479682,-0.068116 51.479701,-0.067925 51.479657,-0.067959 51.479599)))",,329,POINT(-0.068033 51.479617),listed-building-outline,471176,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB535.pdf,,II,,,, +listed-building-outline,,42102566,2021-12-08,,"MULTIPOLYGON (((-0.068006 51.479519,-0.068074 51.479405,-0.068182 51.479431,-0.068116 51.479544,-0.068006 51.479519)))",,329,POINT(-0.068094 51.479475),listed-building-outline,471177,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB535.pdf,,II,,,, +listed-building-outline,,42102567,2021-12-08,,"MULTIPOLYGON (((-0.068086 51.479396,-0.068085 51.479356,-0.068129 51.479324,-0.068318 51.479380,-0.068302 51.479404,-0.068249 51.479393,-0.068228 51.479427,-0.068086 51.479396)))",,329,POINT(-0.068183 51.479377),listed-building-outline,471178,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB536.pdf,,II,,,, +listed-building-outline,,42102568,2021-12-08,,"MULTIPOLYGON (((-0.068139 51.479296,-0.068204 51.479183,-0.068316 51.479208,-0.068295 51.479267,-0.068350 51.479279,-0.068331 51.479311,-0.068264 51.479296,-0.068250 51.479321,-0.068139 51.479296)))",,329,POINT(-0.068240 51.479257),listed-building-outline,471180,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB537.pdf,,II,,,, +listed-building-outline,,42102569,2021-12-08,,"MULTIPOLYGON (((-0.068248 51.479106,-0.068280 51.479049,-0.068420 51.479080,-0.068354 51.479195,-0.068214 51.479164,-0.068248 51.479106)))",,329,POINT(-0.068317 51.479122),listed-building-outline,471181,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB537.pdf,,II,,,, +listed-building-outline,,42102570,2021-12-08,,"MULTIPOLYGON (((-0.083474 51.474369,-0.083120 51.474390,-0.083096 51.474176,-0.083176 51.474174,-0.083167 51.474043,-0.083081 51.474035,-0.083076 51.473951,-0.083406 51.473944,-0.083421 51.474036,-0.083369 51.474015,-0.083307 51.474035,-0.083318 51.474170,-0.083442 51.474166,-0.083474 51.474369)))",Southwark Council strategic services directorate,329,POINT(-0.083266 51.474181),listed-building-outline,471182,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB538.pdf,,II,,,, +listed-building-outline,,42102571,2021-12-08,,"MULTIPOLYGON (((-0.081811 51.473400,-0.081773 51.473228,-0.081799 51.473216,-0.081862 51.473220,-0.081882 51.473296,-0.082180 51.473221,-0.082723 51.473182,-0.082778 51.473230,-0.082751 51.473311,-0.081811 51.473400),(-0.082028 51.473326,-0.082020 51.473296,-0.082000 51.473298,-0.082007 51.473327,-0.082028 51.473326)))",Camberwell House and attached area railings,329,POINT(-0.082275 51.473287),listed-building-outline,471184,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB540.pdf,,II,,,, +listed-building-outline,,42102572,2021-12-08,,"MULTIPOLYGON (((-0.072342 51.484609,-0.072345 51.484580,-0.072392 51.484583,-0.072400 51.484526,-0.072353 51.484523,-0.072357 51.484492,-0.072524 51.484501,-0.072507 51.484618,-0.072342 51.484609)))",Numbers 25 and 27 and attached railings,329,POINT(-0.072442 51.484555),listed-building-outline,470961,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB336.pdf,,II,,,, +listed-building-outline,,42102573,2021-12-08,,"MULTIPOLYGON (((-0.072915 51.484721,-0.072922 51.484663,-0.073084 51.484672,-0.073080 51.484701,-0.073037 51.484699,-0.073030 51.484754,-0.073073 51.484756,-0.073069 51.484784,-0.072907 51.484775,-0.072915 51.484721)))",Numbers 28 and 30 and attached railings,329,POINT(-0.072987 51.484723),listed-building-outline,470962,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB337.pdf,,II,,,, +listed-building-outline,,42102574,2021-12-08,,"MULTIPOLYGON (((-0.072359 51.484467,-0.072364 51.484439,-0.072410 51.484441,-0.072416 51.484388,-0.072371 51.484386,-0.072375 51.484355,-0.072542 51.484363,-0.072527 51.484476,-0.072359 51.484467)))",Numbers 29 and 31 and attached railings,329,POINT(-0.072460 51.484416),listed-building-outline,470963,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB338.pdf,,II,,,, +listed-building-outline,,42102575,2021-12-08,,"MULTIPOLYGON (((-0.072933 51.484579,-0.072939 51.484526,-0.073103 51.484534,-0.073099 51.484565,-0.073055 51.484562,-0.073048 51.484617,-0.073112 51.484620,-0.073109 51.484650,-0.072925 51.484640,-0.072933 51.484579)))",Numbers 32 and 34 and attached railings,329,POINT(-0.073009 51.484588),listed-building-outline,470964,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB339.pdf,,II,,,, +listed-building-outline,,42102576,2021-12-08,,"MULTIPOLYGON (((-0.072378 51.484331,-0.072432 51.484278,-0.072393 51.484222,-0.072562 51.484230,-0.072546 51.484340,-0.072378 51.484331)))",Numbers 33 and 35 and attached railings,329,POINT(-0.072481 51.484281),listed-building-outline,470965,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB340.pdf,,II,,,, +listed-building-outline,,42102577,2021-12-08,,"MULTIPOLYGON (((-0.072950 51.484447,-0.072958 51.484385,-0.073126 51.484394,-0.073122 51.484425,-0.073074 51.484422,-0.073065 51.484479,-0.073114 51.484481,-0.073109 51.484511,-0.072943 51.484503,-0.072950 51.484447)))",Numbers 36 and 38 and attached railings,329,POINT(-0.073024 51.484448),listed-building-outline,470966,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB341.pdf,,II,,,, +listed-building-outline,,42102578,2021-12-08,,"MULTIPOLYGON (((-0.070236 51.480207,-0.070708 51.480118,-0.070786 51.480256,-0.070372 51.480365,-0.070358 51.480340,-0.070292 51.480354,-0.070265 51.480305,-0.070197 51.480290,-0.070236 51.480207)))",Celestial church of Christ and attached wall and railings,329,POINT(-0.070493 51.480242),listed-building-outline,470967,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB342.pdf,,II,,,, +listed-building-outline,,42102579,2021-12-08,,"MULTIPOLYGON (((-0.072969 51.484233,-0.072977 51.484160,-0.073041 51.484164,-0.073045 51.484135,-0.073066 51.484165,-0.073215 51.484172,-0.073218 51.484142,-0.073237 51.484173,-0.073302 51.484176,-0.073306 51.484147,-0.073323 51.484177,-0.073346 51.484155,-0.073693 51.484194,-0.073697 51.484170,-0.073775 51.484174,-0.073763 51.484273,-0.072969 51.484233)))",Numbers 1-9 and attached porch railings,329,POINT(-0.073386 51.484212),listed-building-outline,470968,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB344.pdf,,II,,,, +listed-building-outline,,42102580,2021-12-08,,"MULTIPOLYGON (((-0.067400 51.442898,-0.067329 51.442704,-0.067455 51.442690,-0.067512 51.442886,-0.067400 51.442898)))",St Peters parish hall,329,POINT(-0.067423 51.442793),listed-building-outline,471075,1985-02-22,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB458.pdf,,II,,,, +listed-building-outline,,42102581,2021-12-08,,"MULTIPOLYGON (((-0.099860 51.484632,-0.099804 51.484583,-0.099705 51.484629,-0.099627 51.484578,-0.100562 51.484150,-0.100664 51.484240,-0.100631 51.484254,-0.100591 51.484219,-0.100531 51.484246,-0.100591 51.484299,-0.100520 51.484331,-0.100461 51.484278,-0.100392 51.484309,-0.100455 51.484363,-0.100383 51.484395,-0.100322 51.484341,-0.100262 51.484369,-0.100318 51.484416,-0.100247 51.484448,-0.100195 51.484403,-0.100136 51.484430,-0.100189 51.484476,-0.100119 51.484508,-0.100065 51.484461,-0.099998 51.484493,-0.100051 51.484539,-0.099980 51.484572,-0.099927 51.484526,-0.099869 51.484552,-0.099926 51.484601,-0.099860 51.484632)))",,329,POINT(-0.100154 51.484402),listed-building-outline,471076,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB458.pdf,,II,,,, +listed-building-outline,,42102582,2021-12-08,,"MULTIPOLYGON (((-0.100675 51.485191,-0.100627 51.485153,-0.100577 51.485174,-0.100504 51.485113,-0.100555 51.485089,-0.100516 51.485056,-0.100793 51.484925,-0.100756 51.484895,-0.100797 51.484875,-0.100781 51.484860,-0.100948 51.484839,-0.101093 51.485025,-0.100675 51.485191)))",St Paul’s church,329,POINT(-0.100804 51.485021),listed-building-outline,487893,2001-07-11,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB459.pdf,,II,,,, +listed-building-outline,,42102583,2021-12-08,,"MULTIPOLYGON (((-0.074659 51.472003,-0.074649 51.471974,-0.074544 51.471988,-0.074519 51.471912,-0.074643 51.471897,-0.074706 51.471997,-0.074659 51.472003)))",,329,POINT(-0.074607 51.471947),listed-building-outline,471077,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB461.pdf,,II,,,, +listed-building-outline,,42102584,2021-12-08,,"MULTIPOLYGON (((-0.074771 51.471962,-0.074673 51.471899,-0.074958 51.471883,-0.074957 51.471939,-0.074771 51.471962)))",,329,POINT(-0.074834 51.471919),listed-building-outline,471078,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB462.pdf,,II,,,, +listed-building-outline,,42102585,2021-12-08,,"MULTIPOLYGON (((-0.075077 51.471849,-0.075262 51.471826,-0.075312 51.471884,-0.075046 51.471935,-0.075032 51.471890,-0.075077 51.471849)))",,329,POINT(-0.075162 51.471877),listed-building-outline,471079,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB463.pdf,,II,,,, +listed-building-outline,,42102586,2021-12-08,,"MULTIPOLYGON (((-0.075457 51.472140,-0.075397 51.472134,-0.075372 51.472034,-0.075436 51.472027,-0.075431 51.472007,-0.075365 51.472013,-0.075339 51.471913,-0.075489 51.471898,-0.075489 51.471984,-0.075540 51.471979,-0.075519 51.472104,-0.075457 51.472140)))",,329,POINT(-0.075442 51.472015),listed-building-outline,471080,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB464.pdf,,II,,,, +listed-building-outline,,42102587,2021-12-08,,"MULTIPOLYGON (((-0.075239 51.472168,-0.075278 51.472277,-0.075231 51.472239,-0.075178 51.472255,-0.075148 51.472221,-0.075099 51.472227,-0.075086 51.472192,-0.075239 51.472168)))",,329,POINT(-0.075188 51.472212),listed-building-outline,471081,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB465.pdf,,II,,,, +listed-building-outline,,42102588,2021-12-08,,"MULTIPOLYGON (((-0.073909 51.470732,-0.073854 51.470678,-0.073894 51.470673,-0.073885 51.470644,-0.073843 51.470649,-0.073826 51.470593,-0.073863 51.470589,-0.073851 51.470551,-0.073793 51.470558,-0.073778 51.470492,-0.073953 51.470467,-0.074034 51.470734,-0.073877 51.470753,-0.073909 51.470732)))",Lyndhurst Terrace,329,POINT(-0.073916 51.470604),listed-building-outline,471082,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB466.pdf,,II,,,, +listed-building-outline,,42102589,2021-12-08,,"MULTIPOLYGON (((-0.073842 51.470470,-0.073793 51.470315,-0.073873 51.470303,-0.073937 51.470429,-0.073920 51.470458,-0.073842 51.470470)))",,329,POINT(-0.073864 51.470388),listed-building-outline,471083,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB467.pdf,,II,,,, +listed-building-outline,,42102590,2021-12-08,,"MULTIPOLYGON (((-0.073777 51.470305,-0.073731 51.470175,-0.073852 51.470159,-0.073896 51.470289,-0.073777 51.470305)))",,329,POINT(-0.073814 51.470232),listed-building-outline,471084,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB468.pdf,,II,,,, +listed-building-outline,,42102591,2021-12-08,,"MULTIPOLYGON (((-0.073697 51.470081,-0.073672 51.470017,-0.073800 51.469998,-0.073851 51.470131,-0.073723 51.470148,-0.073697 51.470081)))",,329,POINT(-0.073762 51.470073),listed-building-outline,471085,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB469.pdf,,II,,,, +listed-building-outline,,42102592,2021-12-08,,"MULTIPOLYGON (((-0.074482 51.471018,-0.074412 51.470815,-0.074528 51.470799,-0.074612 51.471041,-0.074496 51.471057,-0.074482 51.471018)))",Penshurst Place,329,POINT(-0.074512 51.470928),listed-building-outline,471086,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB470.pdf,,II,,,, +listed-building-outline,,42102593,2021-12-08,,"MULTIPOLYGON (((-0.074413 51.470807,-0.074374 51.470686,-0.074512 51.470676,-0.074547 51.470780,-0.074413 51.470807)))",Penshurst Place,329,POINT(-0.074460 51.470738),listed-building-outline,471087,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB471.pdf,,II,,,, +listed-building-outline,,42102594,2021-12-08,,"MULTIPOLYGON (((-0.074449 51.470582,-0.074497 51.470660,-0.074366 51.470678,-0.074348 51.470595,-0.074449 51.470582)))",Penshurst Place,329,POINT(-0.074416 51.470631),listed-building-outline,471088,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB472.pdf,,II,,,, +listed-building-outline,,42102595,2021-12-08,,"MULTIPOLYGON (((-0.074316 51.470528,-0.074277 51.470406,-0.074427 51.470390,-0.074396 51.470408,-0.074426 51.470498,-0.074463 51.470508,-0.074316 51.470528)))",Ewbank grove,329,POINT(-0.074356 51.470460),listed-building-outline,471089,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB473.pdf,,II,,,, +listed-building-outline,,42102596,2021-12-08,,"MULTIPOLYGON (((-0.074222 51.471959,-0.074221 51.471968,-0.074207 51.471968,-0.074207 51.471959,-0.074222 51.471959)))",K2 telephone kiosk opposite Lyndhurst Square,329,POINT(-0.074214 51.471963),listed-building-outline,471090,1986-12-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB473.pdf,,II,,,, +listed-building-outline,,42102597,2021-12-08,,"MULTIPOLYGON (((-0.059761 51.452544,-0.059633 51.452451,-0.059595 51.452472,-0.059551 51.452439,-0.059587 51.452419,-0.059492 51.452359,-0.059513 51.452319,-0.059621 51.452290,-0.059874 51.452483,-0.059761 51.452544)))",Church hall to Honor Oak Baptist church,329,POINT(-0.059675 51.452414),listed-building-outline,471118,1998-08-25,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB492.pdf,,II,,,, +listed-building-outline,,42102598,2021-12-08,,"MULTIPOLYGON (((-0.053005 51.477922,-0.053071 51.477850,-0.053212 51.477905,-0.053259 51.477891,-0.053198 51.477991,-0.053005 51.477922)))",Carlton Cottages,329,POINT(-0.053131 51.477920),listed-building-outline,471120,1963-07-19,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB494.pdf,,II,,,, +listed-building-outline,,42102599,2021-12-08,,"MULTIPOLYGON (((-0.074233 51.486638,-0.074334 51.486627,-0.074442 51.486664,-0.074242 51.486847,-0.074126 51.486778,-0.074233 51.486638)))",Lord Nelson public house,329,POINT(-0.074273 51.486724),listed-building-outline,471412,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB740.pdf,,II,,,, +listed-building-outline,,42102600,2021-12-08,,"MULTIPOLYGON (((-0.065866 51.456049,-0.065866 51.456058,-0.065851 51.456058,-0.065852 51.456049,-0.065866 51.456049)))",K2 telephone kiosk at junction with Friern Road,329,POINT(-0.065859 51.456054),listed-building-outline,471434,1987-05-28,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB756.pdf,,II,,,, +listed-building-outline,,42102601,2021-12-08,,"MULTIPOLYGON (((-0.097037 51.481704,-0.097146 51.481681,-0.097183 51.481747,-0.097075 51.481771,-0.097037 51.481704)))",,329,POINT(-0.097110 51.481726),listed-building-outline,471436,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB757.pdf,,II,,,, +listed-building-outline,,42102602,2021-12-08,,"MULTIPOLYGON (((-0.097197 51.481739,-0.097153 51.481661,-0.097387 51.481619,-0.097427 51.481687,-0.097197 51.481739)))",,329,POINT(-0.097288 51.481677),listed-building-outline,471435,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB758.pdf,,II,,,, +listed-building-outline,,42102603,2021-12-08,,"MULTIPOLYGON (((-0.096918 51.481735,-0.097023 51.481713,-0.097062 51.481781,-0.096957 51.481805,-0.096918 51.481735)))",,329,POINT(-0.096990 51.481759),listed-building-outline,471437,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB759.pdf,,II,,,, +listed-building-outline,,42102604,2021-12-08,,"MULTIPOLYGON (((-0.096839 51.481840,-0.096801 51.481772,-0.096905 51.481750,-0.096941 51.481817,-0.096839 51.481840)))",,329,POINT(-0.096871 51.481795),listed-building-outline,471438,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB759.pdf,,II,,,, +listed-building-outline,,42102605,2021-12-08,,"MULTIPOLYGON (((-0.096680 51.481805,-0.096786 51.481782,-0.096823 51.481851,-0.096718 51.481874,-0.096680 51.481805)))",,329,POINT(-0.096752 51.481828),listed-building-outline,471439,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB760.pdf,,II,,,, +listed-building-outline,,42102606,2021-12-08,,"MULTIPOLYGON (((-0.082167 51.473949,-0.082170 51.474036,-0.081805 51.474060,-0.081790 51.473967,-0.082167 51.473949)))",Central House,329,POINT(-0.081981 51.474003),listed-building-outline,471186,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB541.pdf,,II,,,, +listed-building-outline,,42102607,2021-12-08,,"MULTIPOLYGON (((-0.081576 51.473957,-0.081377 51.473944,-0.081337 51.473867,-0.081606 51.473857,-0.081612 51.473956,-0.081576 51.473957)))",East House,329,POINT(-0.081488 51.473906),listed-building-outline,471187,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB542.pdf,,II,,,, +listed-building-outline,,42102608,2021-12-08,,"MULTIPOLYGON (((-0.079285 51.474314,-0.079265 51.474275,-0.079193 51.474312,-0.079149 51.474217,-0.079474 51.474158,-0.079553 51.474301,-0.079513 51.474309,-0.079478 51.474239,-0.079285 51.474314)))",Numbers 71-77 and attached railings,329,POINT(-0.079345 51.474237),listed-building-outline,471190,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB545.pdf,,II,,,, +listed-building-outline,,42102609,2021-12-08,,"MULTIPOLYGON (((-0.062738 51.461843,-0.062668 51.461804,-0.062586 51.461826,-0.062640 51.461788,-0.062367 51.461637,-0.062303 51.461679,-0.062244 51.461656,-0.062203 51.461621,-0.062263 51.461579,-0.062129 51.461522,-0.062227 51.461455,-0.062824 51.461785,-0.062738 51.461843)))",,329,POINT(-0.062458 51.461648),listed-building-outline,471191,1972-05-15,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB546.pdf,,II,,,, +listed-building-outline,,42102610,2021-12-08,,"MULTIPOLYGON (((-0.066670 51.461324,-0.066640 51.461149,-0.066759 51.461142,-0.066779 51.461280,-0.066892 51.461273,-0.066921 51.461340,-0.066676 51.461355,-0.066670 51.461324)))",Prospect Place and attached handrails,329,POINT(-0.066749 51.461264),listed-building-outline,471192,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB549.pdf,,II,,,, +listed-building-outline,,42102611,2021-12-08,,"MULTIPOLYGON (((-0.066640 51.461149,-0.066621 51.461035,-0.066880 51.461018,-0.066848 51.461057,-0.066741 51.461062,-0.066748 51.461104,-0.066855 51.461097,-0.066862 51.461134,-0.066640 51.461149)))",Numbers 156 and 158 and attached railings,329,POINT(-0.066733 51.461084),listed-building-outline,471193,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB550.pdf,,II,,,, +listed-building-outline,,42102612,2021-12-08,,"MULTIPOLYGON (((-0.066621 51.461035,-0.066585 51.460829,-0.066794 51.460828,-0.066799 51.460852,-0.066711 51.460880,-0.066735 51.461028,-0.066621 51.461035)))",The British Red Cross Society,329,POINT(-0.066672 51.460919),listed-building-outline,471194,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB551.pdf,,II,,,, +listed-building-outline,,42102613,2021-12-08,,"MULTIPOLYGON (((-0.066723 51.460637,-0.066762 51.460802,-0.066585 51.460829,-0.066558 51.460646,-0.066723 51.460637)))",,329,POINT(-0.066656 51.460730),listed-building-outline,471195,1997-03-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB552.pdf,,II,,,, +listed-building-outline,,42102614,2021-12-08,,"MULTIPOLYGON (((-0.065806 51.458267,-0.065726 51.458160,-0.065857 51.458141,-0.065883 51.458176,-0.065861 51.458191,-0.065929 51.458164,-0.065969 51.458217,-0.065806 51.458267)))",,329,POINT(-0.065843 51.458200),listed-building-outline,471196,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB552.pdf,,II,,,, +listed-building-outline,,42102615,2021-12-08,,"MULTIPOLYGON (((-0.065826 51.464843,-0.065826 51.464852,-0.065811 51.464852,-0.065812 51.464843,-0.065826 51.464843)))",K2 telephone kiosk at junction with Scylla Road,329,POINT(-0.065819 51.464848),listed-building-outline,471197,1986-12-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB553.pdf,,II,,,, +listed-building-outline,,42102616,2021-12-08,,"MULTIPOLYGON (((-0.062262 51.454556,-0.062212 51.454529,-0.062203 51.454509,-0.062238 51.454502,-0.062216 51.454454,-0.062408 51.454421,-0.062434 51.454455,-0.062455 51.454521,-0.062262 51.454556)))",The Elms,329,POINT(-0.062331 51.454490),listed-building-outline,471198,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB553.pdf,,II,,,, +listed-building-outline,,42102617,2021-12-08,,"MULTIPOLYGON (((-0.097457 51.487288,-0.097369 51.487162,-0.097351 51.487136,-0.097391 51.487125,-0.097451 51.487208,-0.097531 51.487190,-0.097578 51.487255,-0.097457 51.487288)))",,329,POINT(-0.097466 51.487219),listed-building-outline,471199,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB554.pdf,,II,,,, +listed-building-outline,,42102618,2021-12-08,,"MULTIPOLYGON (((-0.098518 51.479277,-0.098478 51.479122,-0.098802 51.479092,-0.098795 51.479064,-0.098850 51.479059,-0.098866 51.479123,-0.098935 51.479108,-0.098929 51.479087,-0.099294 51.479052,-0.099302 51.479087,-0.099367 51.479081,-0.099392 51.479175,-0.099327 51.479181,-0.099336 51.479216,-0.099381 51.479212,-0.099387 51.479235,-0.099245 51.479249,-0.099233 51.479200,-0.099188 51.479180,-0.099101 51.479189,-0.099131 51.479312,-0.098988 51.479326,-0.098935 51.479168,-0.098639 51.479213,-0.098671 51.479333,-0.098535 51.479346,-0.098518 51.479277)))",St Josephs roman catholic primary school,329,POINT(-0.098934 51.479176),listed-building-outline,471200,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB554.pdf,,II,,,, +listed-building-outline,,42102619,2021-12-08,,"MULTIPOLYGON (((-0.089070 51.484875,-0.088988 51.484694,-0.088969 51.484649,-0.089066 51.484632,-0.089170 51.484834,-0.089202 51.484829,-0.089212 51.484851,-0.089180 51.484856,-0.089217 51.484934,-0.089107 51.484954,-0.089070 51.484875)))","Numbers 1, 1a and 3-11 and attached railings",329,POINT(-0.089094 51.484796),listed-building-outline,471201,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB556.pdf,,II,,,, +listed-building-outline,,42102620,2021-12-08,,"MULTIPOLYGON (((-0.089206 51.485169,-0.089188 51.485128,-0.089110 51.484962,-0.089222 51.484942,-0.089268 51.485046,-0.089319 51.485047,-0.089330 51.485073,-0.089289 51.485090,-0.089305 51.485128,-0.089367 51.485153,-0.089334 51.485189,-0.089223 51.485209,-0.089206 51.485169)))",Numbers 13-23 and attached railings,329,POINT(-0.089232 51.485078),listed-building-outline,471202,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB557.pdf,,II,,,, +listed-building-outline,,42102621,2021-12-08,,"MULTIPOLYGON (((-0.089058 51.484518,-0.088981 51.484533,-0.089066 51.484632,-0.088969 51.484649,-0.088905 51.484510,-0.088937 51.484465,-0.089019 51.484449,-0.089058 51.484518)))",Aycliffe House and attached railings,329,POINT(-0.088982 51.484545),listed-building-outline,471203,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB558.pdf,,II,,,, +listed-building-outline,,42102622,2021-12-08,,"MULTIPOLYGON (((-0.063623 51.473815,-0.063663 51.473616,-0.063789 51.473626,-0.063789 51.473805,-0.063735 51.473829,-0.063623 51.473815)))",,329,POINT(-0.063714 51.473725),listed-building-outline,471205,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB561.pdf,,II,,,, +listed-building-outline,,42102623,2021-12-08,,"MULTIPOLYGON (((-0.063456 51.473786,-0.063247 51.473756,-0.063285 51.473658,-0.063346 51.473667,-0.063337 51.473692,-0.063652 51.473713,-0.063624 51.473812,-0.063456 51.473786)))",Queens House,329,POINT(-0.063453 51.473740),listed-building-outline,471206,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB562.pdf,,II,,,, +listed-building-outline,,42102624,2021-12-08,,"MULTIPOLYGON (((-0.063130 51.473770,-0.063037 51.473721,-0.063111 51.473627,-0.063107 51.473541,-0.063137 51.473539,-0.063168 51.473550,-0.063177 51.473644,-0.063285 51.473658,-0.063234 51.473790,-0.063130 51.473770)))",,329,POINT(-0.063162 51.473685),listed-building-outline,471207,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB563.pdf,,II,,,, +listed-building-outline,,42102625,2021-12-08,,"MULTIPOLYGON (((-0.061306 51.473756,-0.061321 51.473666,-0.061886 51.473721,-0.061870 51.473796,-0.061306 51.473756)))",Numbers 30-42 and attached handrails,329,POINT(-0.061587 51.473734),listed-building-outline,471208,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB564.pdf,,II,,,, +listed-building-outline,,42102626,2021-12-08,,"MULTIPOLYGON (((-0.061248 51.473662,-0.061237 51.473751,-0.061148 51.473745,-0.061163 51.473654,-0.061248 51.473662)))",,329,POINT(-0.061199 51.473703),listed-building-outline,471209,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB565.pdf,,II,,,, +listed-building-outline,,42102627,2021-12-08,,"MULTIPOLYGON (((-0.060907 51.473635,-0.060989 51.473641,-0.060974 51.473733,-0.060892 51.473728,-0.060907 51.473635)))",,329,POINT(-0.060940 51.473684),listed-building-outline,471210,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB566.pdf,,II,,,, +listed-building-outline,,42102628,2021-12-08,,"MULTIPOLYGON (((-0.056657 51.473144,-0.056776 51.473122,-0.056809 51.473193,-0.056573 51.473236,-0.056538 51.473166,-0.056657 51.473144)))",Numbers 142 and 144 and attached railings,329,POINT(-0.056674 51.473179),listed-building-outline,471211,1971-08-25,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB567.pdf,,II,,,, +listed-building-outline,,42102629,2021-12-08,,"MULTIPOLYGON (((-0.056255 51.473221,-0.056196 51.473121,-0.056497 51.473086,-0.056544 51.473176,-0.056255 51.473221)))",,329,POINT(-0.056370 51.473151),listed-building-outline,471212,1971-08-25,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB568.pdf,,II,,,, +listed-building-outline,,42102630,2021-12-08,,"MULTIPOLYGON (((-0.055874 51.473042,-0.055914 51.472987,-0.056068 51.473026,-0.056045 51.473060,-0.056069 51.473067,-0.056003 51.473114,-0.055859 51.473064,-0.055874 51.473042)))",,329,POINT(-0.055967 51.473050),listed-building-outline,471213,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB569.pdf,,II,,,, +listed-building-outline,,42102631,2021-12-08,,"MULTIPOLYGON (((-0.052800 51.477847,-0.052875 51.477746,-0.052912 51.477758,-0.052884 51.477791,-0.053048 51.477843,-0.052985 51.477914,-0.052800 51.477847)))",Carlton Cottages,329,POINT(-0.052919 51.477840),listed-building-outline,471121,1963-07-19,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB495.pdf,,II,,,, +listed-building-outline,,42102632,2021-12-08,,"MULTIPOLYGON (((-0.082323 51.480451,-0.082256 51.480377,-0.082285 51.480369,-0.082217 51.480267,-0.082191 51.480273,-0.082120 51.480165,-0.082145 51.480158,-0.082082 51.480062,-0.082022 51.480009,-0.082154 51.479999,-0.082196 51.480033,-0.082263 51.480166,-0.082209 51.480180,-0.082236 51.480222,-0.082293 51.480208,-0.082330 51.480237,-0.082477 51.480487,-0.082243 51.480509,-0.082235 51.480478,-0.082323 51.480451)))",,329,POINT(-0.082262 51.480266),listed-building-outline,471126,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB506.pdf,,II,,,, +listed-building-outline,,42102633,2021-12-08,,"MULTIPOLYGON (((-0.083346 51.480531,-0.083112 51.480485,-0.083134 51.480417,-0.083481 51.480458,-0.083422 51.480526,-0.083346 51.480531)))",,329,POINT(-0.083290 51.480475),listed-building-outline,471139,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB507.pdf,,II,,,, +listed-building-outline,,42102634,2021-12-08,,"MULTIPOLYGON (((-0.073749 51.485560,-0.073807 51.485513,-0.073753 51.485511,-0.073755 51.485486,-0.073809 51.485487,-0.073760 51.485436,-0.073814 51.485437,-0.073762 51.485415,-0.073818 51.485365,-0.073764 51.485364,-0.073766 51.485337,-0.073949 51.485323,-0.073910 51.485814,-0.073782 51.485810,-0.073801 51.485563,-0.073749 51.485560)))","Numbers 25-43 and attached walls, piers and railings",329,POINT(-0.073858 51.485557),listed-building-outline,471406,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB735.pdf,,II,,,, +listed-building-outline,,42102635,2021-12-08,,"MULTIPOLYGON (((-0.074295 51.485871,-0.074327 51.485510,-0.074453 51.485513,-0.074414 51.485717,-0.074449 51.485738,-0.074412 51.485738,-0.074411 51.485764,-0.074446 51.485766,-0.074444 51.485794,-0.074406 51.485809,-0.074442 51.485830,-0.074404 51.485829,-0.074401 51.485855,-0.074435 51.485876,-0.074295 51.485871)))",Numbers 26-40 and attached handrails,329,POINT(-0.074370 51.485692),listed-building-outline,471408,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB736.pdf,,II,,,, +listed-building-outline,,42102636,2021-12-08,,"MULTIPOLYGON (((-0.074449 51.485286,-0.074483 51.485286,-0.074474 51.485514,-0.074327 51.485510,-0.074333 51.485285,-0.074449 51.485286)))",,329,POINT(-0.074404 51.485398),listed-building-outline,471409,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB737.pdf,,II,,,, +listed-building-outline,,42102637,2021-12-08,,"MULTIPOLYGON (((-0.074331 51.485232,-0.074332 51.485178,-0.074453 51.485178,-0.074451 51.485210,-0.074483 51.485211,-0.074449 51.485286,-0.074329 51.485285,-0.074331 51.485232)))",,329,POINT(-0.074397 51.485232),listed-building-outline,471410,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB738.pdf,,II,,,, +listed-building-outline,,42102638,2021-12-08,,"MULTIPOLYGON (((-0.074334 51.485127,-0.074341 51.484893,-0.074447 51.484894,-0.074446 51.484986,-0.074474 51.484987,-0.074444 51.485030,-0.074475 51.485031,-0.074443 51.485077,-0.074489 51.485105,-0.074486 51.485147,-0.074452 51.485147,-0.074453 51.485178,-0.074332 51.485178,-0.074334 51.485127)))",,329,POINT(-0.074399 51.485043),listed-building-outline,471411,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB739.pdf,,II,,,, +listed-building-outline,,42102639,2021-12-08,,"MULTIPOLYGON (((-0.053094 51.464132,-0.053011 51.464084,-0.053099 51.464027,-0.053181 51.464075,-0.053094 51.464132)))","West Lodge, Nunhead Cemetery",329,POINT(-0.053096 51.464080),listed-building-outline,471063,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB442.pdf,,II,,,, +listed-building-outline,,42102640,2021-12-08,,"MULTIPOLYGON (((-0.091992 51.486219,-0.092089 51.486188,-0.092134 51.486208,-0.092162 51.486199,-0.092141 51.486172,-0.092211 51.486150,-0.092232 51.486177,-0.092333 51.486111,-0.092382 51.486130,-0.092407 51.486122,-0.092386 51.486094,-0.092503 51.486091,-0.092527 51.486083,-0.092506 51.486056,-0.092577 51.486033,-0.092626 51.486052,-0.092655 51.486043,-0.092633 51.486015,-0.092701 51.485994,-0.092723 51.486021,-0.092783 51.486002,-0.092761 51.485975,-0.092792 51.485965,-0.092864 51.486053,-0.092058 51.486309,-0.091992 51.486219)))",Numbers 28-52 and attached railings,329,POINT(-0.092424 51.486143),listed-building-outline,471064,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB443.pdf,,II,,,, +listed-building-outline,,42102641,2021-12-08,,"MULTIPOLYGON (((-0.091773 51.486377,-0.091726 51.486276,-0.091810 51.486253,-0.091842 51.486299,-0.091890 51.486285,-0.091858 51.486239,-0.091902 51.486227,-0.091976 51.486332,-0.091773 51.486377)))",,329,POINT(-0.091846 51.486308),listed-building-outline,471065,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB444.pdf,,II,,,, +listed-building-outline,,42102642,2021-12-08,,"MULTIPOLYGON (((-0.093164 51.486436,-0.093123 51.486385,-0.093111 51.486379,-0.093125 51.486374,-0.093179 51.486441,-0.093164 51.486436)))",Gates and gate piers to the west of Church of St Peter,329,POINT(-0.093145 51.486406),listed-building-outline,471067,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB446.pdf,,II,,,, +listed-building-outline,,42102643,2021-12-08,,"MULTIPOLYGON (((-0.091133 51.477034,-0.091420 51.477000,-0.091433 51.477038,-0.091556 51.477024,-0.091580 51.477117,-0.091154 51.477168,-0.091133 51.477034)))",Bryanston House and railings,329,POINT(-0.091340 51.477083),listed-building-outline,471068,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB447.pdf,,II,,,, +listed-building-outline,,42102644,2021-12-08,,"MULTIPOLYGON (((-0.091420 51.477000,-0.091133 51.477034,-0.091071 51.476925,-0.091547 51.476853,-0.091578 51.476981,-0.091420 51.477000)))",Camberwell business centre and railings,329,POINT(-0.091337 51.476947),listed-building-outline,471069,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB448.pdf,,II,,,, +listed-building-outline,,42102645,2021-12-08,,"MULTIPOLYGON (((-0.066436 51.442845,-0.066534 51.442790,-0.066665 51.442841,-0.066685 51.442877,-0.066554 51.442941,-0.066436 51.442845)))",Number 549 and gate piers,329,POINT(-0.066562 51.442862),listed-building-outline,471073,1994-04-08,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkNL5.pdf,,II,,,, +listed-building-outline,,42102646,2021-12-08,,"MULTIPOLYGON (((-0.067280 51.442635,-0.066938 51.442592,-0.066944 51.442640,-0.066845 51.442642,-0.066871 51.442530,-0.066810 51.442512,-0.066799 51.442478,-0.066892 51.442450,-0.066931 51.442358,-0.066971 51.442362,-0.066982 51.442400,-0.067346 51.442430,-0.067325 51.442468,-0.067397 51.442474,-0.067357 51.442635,-0.067280 51.442635)))",Church of St peter,329,POINT(-0.067105 51.442517),listed-building-outline,471074,1985-02-22,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB457.pdf,,II,,,, +listed-building-outline,,42102647,2021-12-08,,"MULTIPOLYGON (((-0.055706 51.473029,-0.055481 51.472964,-0.055449 51.472932,-0.055552 51.472875,-0.055695 51.472922,-0.055717 51.472892,-0.055753 51.472902,-0.055729 51.472933,-0.055830 51.472957,-0.055859 51.472935,-0.055829 51.473031,-0.055781 51.473050,-0.055706 51.473029)))",St Mary’s Court,329,POINT(-0.055662 51.472961),listed-building-outline,471214,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB570.pdf,,II,,,, +listed-building-outline,,42102648,2021-12-08,,"MULTIPOLYGON (((-0.053713 51.473096,-0.054208 51.473132,-0.054226 51.473140,-0.054210 51.473209,-0.053703 51.473167,-0.053713 51.473096)))","Numbers 223-233 and attached handrails to numbers 225, 231 and 233",329,POINT(-0.053966 51.473152),listed-building-outline,471215,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB571.pdf,,II,,,, +listed-building-outline,,42102649,2021-12-08,,"MULTIPOLYGON (((-0.060369 51.474006,-0.060369 51.474015,-0.060355 51.474015,-0.060355 51.474006,-0.060369 51.474006)))",K2 telephone kiosk outside Montpelier Arms public house (public house not included),329,POINT(-0.060362 51.474011),listed-building-outline,471218,1986-12-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB574.pdf,,II,,,, +listed-building-outline,,42102650,2021-12-08,,"MULTIPOLYGON (((-0.092115 51.484674,-0.092509 51.484578,-0.092559 51.484654,-0.092163 51.484749,-0.092115 51.484674)))",Harkers Studio,329,POINT(-0.092337 51.484664),listed-building-outline,471219,1989-07-20,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB574.pdf,,II,,,, +listed-building-outline,,42102651,2021-12-08,,"MULTIPOLYGON (((-0.089130 51.454508,-0.089130 51.454513,-0.089123 51.454513,-0.089123 51.454508,-0.089130 51.454508)))",MileStone at number 20 (number 20 not included),329,POINT(-0.089126 51.454511),listed-building-outline,471222,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB576.pdf,,II,,,, +listed-building-outline,,42102652,2021-12-08,,"MULTIPOLYGON (((-0.088416 51.454161,-0.088415 51.454170,-0.088401 51.454170,-0.088401 51.454161,-0.088416 51.454161)))",K6 telephone kiosk inside portico of north Dulwich Station,329,POINT(-0.088408 51.454165),listed-building-outline,471224,1987-07-29,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB578.pdf,,II,,,, +listed-building-outline,,42102653,2021-12-08,,"MULTIPOLYGON (((-0.068885 51.471793,-0.068883 51.471702,-0.068843 51.471702,-0.068840 51.471581,-0.069400 51.471595,-0.069402 51.471623,-0.069518 51.471617,-0.069518 51.471652,-0.069551 51.471664,-0.069527 51.471736,-0.069316 51.471738,-0.069351 51.471758,-0.069333 51.471787,-0.069101 51.471789,-0.069100 51.471742,-0.069056 51.471742,-0.069058 51.471790,-0.068885 51.471793)))",Baptist chapel,329,POINT(-0.069164 51.471682),listed-building-outline,471272,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB611.pdf,,II,,,, +listed-building-outline,,42102654,2021-12-08,,"MULTIPOLYGON (((-0.105963 51.484749,-0.105925 51.484734,-0.105974 51.484739,-0.106023 51.484694,-0.105962 51.484668,-0.106042 51.484674,-0.106251 51.484481,-0.106338 51.484552,-0.106078 51.484797,-0.105963 51.484749)))",Numbers 1-7 and attached railings,329,POINT(-0.106152 51.484646),listed-building-outline,471273,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB612.pdf,,II,,,, +listed-building-outline,,42102655,2021-12-08,,"MULTIPOLYGON (((-0.055540 51.472884,-0.055432 51.472941,-0.055328 51.472865,-0.055509 51.472790,-0.055542 51.472815,-0.055478 51.472837,-0.055540 51.472884)))",Charlton House,329,POINT(-0.055444 51.472868),listed-building-outline,471279,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB619.pdf,,II,,,, +listed-building-outline,,42102656,2021-12-08,,"MULTIPOLYGON (((-0.080949 51.477631,-0.080945 51.477634,-0.080942 51.477632,-0.080946 51.477629,-0.080949 51.477631)))","Lamp post incorporating former hand pump, near corner with Peckham Grove",329,POINT(-0.080946 51.477632),listed-building-outline,471332,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB663.pdf,,II,,,, +listed-building-outline,,42102657,2021-12-08,,"MULTIPOLYGON (((-0.069380 51.470071,-0.069280 51.470019,-0.069318 51.470004,-0.069298 51.469982,-0.069233 51.470004,-0.069187 51.469952,-0.069534 51.469867,-0.069650 51.470034,-0.069352 51.470139,-0.069312 51.470094,-0.069380 51.470071)))",Peckham Rye Station,329,POINT(-0.069437 51.469994),listed-building-outline,496068,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB690.pdf,,II,,,, +listed-building-outline,,42102658,2021-12-08,,"MULTIPOLYGON (((-0.096531 51.485470,-0.096475 51.485379,-0.096774 51.485326,-0.096761 51.485304,-0.096842 51.485285,-0.096862 51.485315,-0.096943 51.485296,-0.096924 51.485265,-0.096979 51.485252,-0.096998 51.485283,-0.097074 51.485265,-0.097055 51.485234,-0.097084 51.485227,-0.097103 51.485257,-0.097149 51.485246,-0.097146 51.485205,-0.097249 51.485192,-0.097309 51.485290,-0.096531 51.485470)))",Numbers 20-29 and attached railings,329,POINT(-0.096898 51.485335),listed-building-outline,471370,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB700.pdf,,II,,,, +listed-building-outline,,42102659,2021-12-08,,"MULTIPOLYGON (((-0.097408 51.485429,-0.097323 51.485289,-0.097367 51.485278,-0.097336 51.485231,-0.097421 51.485209,-0.097466 51.485318,-0.097501 51.485308,-0.097529 51.485349,-0.097494 51.485358,-0.097534 51.485419,-0.097571 51.485410,-0.097588 51.485437,-0.097442 51.485478,-0.097408 51.485429)))",Numbers 30-33 and attached railings,329,POINT(-0.097438 51.485352),listed-building-outline,471371,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB701.pdf,,II,,,, +listed-building-outline,,42102660,2021-12-08,,"MULTIPOLYGON (((-0.097643 51.485578,-0.097674 51.485598,-0.097658 51.485626,-0.097564 51.485652,-0.097534 51.485607,-0.097643 51.485578)))",Number 34 and attached railings,329,POINT(-0.097605 51.485614),listed-building-outline,471372,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB702.pdf,,II,,,, +listed-building-outline,,42102661,2021-12-08,,"MULTIPOLYGON (((-0.097782 51.485884,-0.097672 51.485762,-0.097647 51.485770,-0.097570 51.485651,-0.097653 51.485628,-0.097697 51.485690,-0.097724 51.485683,-0.097842 51.485826,-0.097782 51.485884)))",Sutherland House,329,POINT(-0.097710 51.485748),listed-building-outline,471373,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB703.pdf,,II,,,, +listed-building-outline,,42102662,2021-12-08,,"MULTIPOLYGON (((-0.097360 51.485986,-0.097339 51.485963,-0.097283 51.485982,-0.097223 51.485914,-0.097612 51.485767,-0.097672 51.485762,-0.097721 51.485830,-0.097522 51.485900,-0.097544 51.485925,-0.097494 51.485910,-0.097400 51.485942,-0.097420 51.485966,-0.097360 51.485986)))",Numbers 36-40 and attached railings,329,POINT(-0.097472 51.485872),listed-building-outline,471374,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB704.pdf,,II,,,, +listed-building-outline,,42102663,2021-12-08,,"MULTIPOLYGON (((-0.096551 51.485976,-0.096480 51.485898,-0.096798 51.485792,-0.096865 51.485868,-0.096551 51.485976)),((-0.096414 51.485939,-0.096479 51.485918,-0.096536 51.485983,-0.096342 51.486049,-0.096308 51.485975,-0.096414 51.485939)))",Numbers 51-54 and attached railings,329,POINT(-0.096588 51.485916),listed-building-outline,471375,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB705.pdf,,II,,,, +listed-building-outline,,42102664,2021-12-08,,"MULTIPOLYGON (((-0.097022 51.485804,-0.096904 51.485702,-0.096887 51.485676,-0.096924 51.485666,-0.096863 51.485642,-0.096897 51.485632,-0.096850 51.485624,-0.096875 51.485599,-0.096856 51.485573,-0.096775 51.485593,-0.096756 51.485568,-0.096940 51.485525,-0.097124 51.485782,-0.097022 51.485804)))",Numbers 55-60 and attached railings,329,POINT(-0.096963 51.485663),listed-building-outline,471376,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB706.pdf,,II,,,, +listed-building-outline,,42102665,2021-12-08,,"MULTIPOLYGON (((-0.073679 51.486462,-0.073683 51.486428,-0.073963 51.486422,-0.073955 51.486512,-0.073731 51.486505,-0.073679 51.486462)))",Numbers 1 and 3 and attached railings,329,POINT(-0.073830 51.486465),listed-building-outline,471403,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB733.pdf,,II,,,, +listed-building-outline,,42102666,2021-12-08,,"MULTIPOLYGON (((-0.074268 51.486145,-0.074295 51.485871,-0.074412 51.485876,-0.074409 51.485916,-0.074432 51.485916,-0.074406 51.485933,-0.074419 51.486039,-0.074394 51.486038,-0.074389 51.486077,-0.074415 51.486078,-0.074389 51.486094,-0.074406 51.486149,-0.074268 51.486145)))",,329,POINT(-0.074344 51.486011),listed-building-outline,471405,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB734.pdf,,II,,,, +listed-building-outline,,42102667,2021-12-08,,"MULTIPOLYGON (((-0.085200 51.464420,-0.085186 51.464409,-0.085391 51.464315,-0.085186 51.464409,-0.085200 51.464420)))",Wall and gate to number 47,329,POINT(-0.085282 51.464366),listed-building-outline,470772,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB189.pdf,,II,,,, +listed-building-outline,,42102668,2021-12-08,,"MULTIPOLYGON (((-0.084980 51.444609,-0.084909 51.444296,-0.084929 51.444375,-0.084980 51.444609)),((-0.085062 51.444790,-0.085048 51.444711,-0.085063 51.444790,-0.085062 51.444790)),((-0.084865 51.444129,-0.084865 51.444128,-0.084898 51.444257,-0.084865 51.444129)))",Forecourt wall and piers to bell House,329,POINT(-0.084949 51.444451),listed-building-outline,470812,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB212.pdf,,II,,,, +listed-building-outline,,42102669,2021-12-08,,"MULTIPOLYGON (((-0.060986 51.465141,-0.061224 51.465668,-0.061305 51.465852,-0.060986 51.465141,-0.060986 51.465141)))","Gates, piers and railings to Beestons gift almshouses",329,POINT(-0.061172 51.465554),listed-building-outline,470842,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB237.pdf,,II,,,, +listed-building-outline,,42102670,2021-12-08,,"MULTIPOLYGON (((-0.061288 51.465402,-0.061288 51.465402,-0.061289 51.465402,-0.061289 51.465402,-0.061288 51.465402)))",Water pump to Beestons gift almshouses,329,POINT(-0.061288 51.465402),listed-building-outline,470843,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB238.pdf,,II,,,, +listed-building-outline,,42102671,2021-12-08,,"MULTIPOLYGON (((-0.085175 51.450556,-0.085170 51.450551,-0.085180 51.450550,-0.085181 51.450553,-0.085175 51.450556)))","Monument to Henry Atkinson, Dulwich Old Burial Ground",329,POINT(-0.085176 51.450553),listed-building-outline,470895,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB280.pdf,,II,,,, +listed-building-outline,,42102672,2021-12-08,,"MULTIPOLYGON (((-0.085085 51.450644,-0.085080 51.450639,-0.085090 51.450638,-0.085091 51.450642,-0.085085 51.450644)))","Monument to Richard Shawe, Dulwich Old Burial Ground",329,POINT(-0.085086 51.450641),listed-building-outline,470901,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB284.pdf,,II,,,, +listed-building-outline,,42102673,2021-12-08,,"MULTIPOLYGON (((-0.085028 51.450634,-0.085023 51.450629,-0.085033 51.450628,-0.085034 51.450632,-0.085028 51.450634)))","Monument to Thomas Force, Dulwich Old Burial Ground",329,POINT(-0.085029 51.450631),listed-building-outline,470902,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB285.pdf,,II,,,, +listed-building-outline,,42102674,2021-12-08,,"MULTIPOLYGON (((-0.096562 51.481838,-0.096666 51.481816,-0.096702 51.481884,-0.096601 51.481907,-0.096562 51.481838)))",,329,POINT(-0.096632 51.481861),listed-building-outline,471440,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB760.pdf,,II,,,, +listed-building-outline,,42102675,2021-12-08,,"MULTIPOLYGON (((-0.096480 51.481940,-0.096441 51.481872,-0.096545 51.481849,-0.096583 51.481918,-0.096480 51.481940)))",,329,POINT(-0.096512 51.481895),listed-building-outline,471441,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB761.pdf,,II,,,, +listed-building-outline,,42102676,2021-12-08,,"MULTIPOLYGON (((-0.096325 51.481909,-0.096431 51.481888,-0.096468 51.481954,-0.096364 51.481977,-0.096325 51.481909)))",,329,POINT(-0.096397 51.481932),listed-building-outline,471442,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB761.pdf,,II,,,, +listed-building-outline,,42102677,2021-12-08,,"MULTIPOLYGON (((-0.095844 51.482012,-0.095818 51.481927,-0.095891 51.481920,-0.095936 51.482001,-0.095993 51.481988,-0.095943 51.481899,-0.096023 51.481881,-0.096065 51.481961,-0.096100 51.481953,-0.096073 51.481906,-0.096134 51.481877,-0.096274 51.481935,-0.096308 51.481995,-0.095847 51.482098,-0.095804 51.482021,-0.095844 51.482012)))",,329,POINT(-0.096039 51.481984),listed-building-outline,471443,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB762.pdf,,II,,,, +listed-building-outline,,42102678,2021-12-08,,"MULTIPOLYGON (((-0.087750 51.453357,-0.087741 51.453286,-0.087877 51.453259,-0.088060 51.453294,-0.088068 51.453352,-0.087750 51.453357)))",Lyndenhurst House,329,POINT(-0.087898 51.453314),listed-building-outline,471445,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB763.pdf,,II,,,, +listed-building-outline,,42102679,2021-12-08,,"MULTIPOLYGON (((-0.088613 51.452956,-0.088739 51.452962,-0.088726 51.453062,-0.088860 51.453064,-0.088857 51.453124,-0.088769 51.453123,-0.088768 51.453152,-0.088607 51.453131,-0.088578 51.453093,-0.088607 51.453037,-0.088584 51.452969,-0.088613 51.452956)))",Pond House and handrails to steps,329,POINT(-0.088696 51.453061),listed-building-outline,471446,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB764.pdf,,II,,,, +listed-building-outline,,42102680,2021-12-08,,"MULTIPOLYGON (((-0.085232 51.479591,-0.085243 51.479646,-0.085220 51.479659,-0.085259 51.479659,-0.085259 51.479710,-0.085317 51.479711,-0.085322 51.479785,-0.085127 51.479794,-0.085097 51.479732,-0.085127 51.479708,-0.085097 51.479693,-0.085127 51.479592,-0.085232 51.479591)))",,329,POINT(-0.085197 51.479703),listed-building-outline,471456,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB780.pdf,,II,,,, +listed-building-outline,,42102681,2021-12-08,,"MULTIPOLYGON (((-0.085085 51.479633,-0.085082 51.479635,-0.085078 51.479633,-0.085081 51.479631,-0.085085 51.479633)))",Urn in garden of number 113,329,POINT(-0.085082 51.479633),listed-building-outline,471457,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB780.pdf,,II,,,, +listed-building-outline,,42102682,2021-12-08,,"MULTIPOLYGON (((-0.084881 51.481871,-0.084876 51.481812,-0.084786 51.481785,-0.084851 51.481749,-0.084868 51.481692,-0.085379 51.481676,-0.085393 51.481853,-0.084881 51.481871)))",Former church of St George,329,POINT(-0.085118 51.481773),listed-building-outline,471458,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB781.pdf,,II,,,, +listed-building-outline,,42102683,2021-12-08,,"MULTIPOLYGON (((-0.085546 51.482668,-0.085425 51.482665,-0.085373 51.482344,-0.085634 51.482333,-0.085713 51.482643,-0.085546 51.482668),(-0.085569 51.482484,-0.085557 51.482432,-0.085523 51.482435,-0.085534 51.482487,-0.085569 51.482484),(-0.085542 51.482533,-0.085537 51.482506,-0.085489 51.482510,-0.085495 51.482539,-0.085542 51.482533)))","Groundwork trust offices, and attached chimney",329,POINT(-0.085537 51.482503),listed-building-outline,471459,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB782.pdf,,II,,,, +listed-building-outline,,42102684,2021-12-08,,"MULTIPOLYGON (((-0.071904 51.479689,-0.071874 51.479713,-0.071770 51.479660,-0.071863 51.479592,-0.071956 51.479633,-0.071904 51.479689)))",Willowbrook urban studies centre,329,POINT(-0.071866 51.479651),listed-building-outline,471471,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB794.pdf,,II,,,, +listed-building-outline,,42102685,2021-12-08,,"MULTIPOLYGON (((-0.085637 51.473101,-0.085498 51.472936,-0.085882 51.472846,-0.085851 51.472800,-0.085655 51.472824,-0.085558 51.472676,-0.085915 51.472582,-0.086153 51.472943,-0.086022 51.472987,-0.086003 51.472960,-0.085934 51.472978,-0.085637 51.473101)))",Camberwell College of arts and gate piers at entrance,329,POINT(-0.085820 51.472841),listed-building-outline,471472,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB795.pdf,,II,,,, +listed-building-outline,,42102686,2021-12-08,,"MULTIPOLYGON (((-0.088131 51.468480,-0.089545 51.468062,-0.089506 51.468010,-0.088102 51.468427,-0.088061 51.468399,-0.089395 51.467993,-0.089364 51.467916,-0.089557 51.467867,-0.089600 51.467878,-0.089850 51.468209,-0.089563 51.468320,-0.089545 51.468298,-0.089617 51.468278,-0.089576 51.468224,-0.088349 51.468573,-0.088232 51.468576,-0.089619 51.468158,-0.089583 51.468111,-0.088170 51.468530,-0.088131 51.468480)))","Denmark Hill Station, cutting walls and platforms, with Phoenix and Firkin public House",329,POINT(-0.089097 51.468222),listed-building-outline,471474,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB797.pdf,,II,,,, +listed-building-outline,,42102687,2021-12-08,,"MULTIPOLYGON (((-0.062720 51.473502,-0.062788 51.473402,-0.062901 51.473431,-0.062910 51.473400,-0.062965 51.473408,-0.062914 51.473545,-0.062720 51.473502)))",,329,POINT(-0.062850 51.473470),listed-building-outline,471475,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB798.pdf,,II,,,, +listed-building-outline,,42102688,2021-12-08,,"MULTIPOLYGON (((-0.091502 51.473458,-0.091502 51.473467,-0.091487 51.473467,-0.091488 51.473458,-0.091502 51.473458)))",K2 telephone kiosk at south end of Wren Road,329,POINT(-0.091495 51.473463),listed-building-outline,471476,1986-12-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB799.pdf,,II,,,, +listed-building-outline,,42102689,2021-12-08,,"MULTIPOLYGON (((-0.070329 51.473060,-0.070315 51.472974,-0.070472 51.472961,-0.070491 51.473243,-0.070364 51.473242,-0.070329 51.473060)))",,329,POINT(-0.070410 51.473100),listed-building-outline,496132,2009-10-12,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkPHS1.pdf,,II,,,, +listed-building-outline,,42102690,2021-12-08,,"MULTIPOLYGON (((-0.073347 51.498126,-0.072832 51.498187,-0.072609 51.498074,-0.073162 51.498027,-0.073347 51.498126)))",Railway Bridge,329,POINT(-0.072981 51.498104),listed-building-outline,470522,1979-07-03,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB2.pdf,,II,,,, +listed-building-outline,,42102691,2021-12-08,,"MULTIPOLYGON (((-0.100845 51.495198,-0.100514 51.495205,-0.100500 51.494999,-0.100835 51.494986,-0.100845 51.495198)))",Michael Faraday memorial,329,POINT(-0.100674 51.495097),listed-building-outline,470910,1996-06-21,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB292.pdf,,II,,,, +listed-building-outline,,42102692,2021-12-08,,"MULTIPOLYGON (((-0.107141 51.485347,-0.107024 51.485301,-0.107037 51.485288,-0.107141 51.485347)))",Gate piers and walls to the Bishops House,329,POINT(-0.107067 51.485312),listed-building-outline,471036,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB417.pdf,,II,,,, +listed-building-outline,,42102693,2021-12-08,,"MULTIPOLYGON (((-0.104919 51.489023,-0.104935 51.489039,-0.104878 51.489080,-0.104903 51.489100,-0.104816 51.489182,-0.104778 51.489175,-0.104859 51.489097,-0.104779 51.489065,-0.104829 51.489017,-0.104806 51.489008,-0.104841 51.488992,-0.104919 51.489023)))","Tower and portal of church of St Mary, Newington",329,POINT(-0.104852 51.489073),listed-building-outline,471040,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/1453719.pdf,,II,,,, +listed-building-outline,,42102694,2021-12-08,,"MULTIPOLYGON (((-0.092008 51.498381,-0.091772 51.498291,-0.092318 51.497736,-0.092560 51.497829,-0.092008 51.498381)))",Railings to Merrick Square garden,329,POINT(-0.092166 51.498058),listed-building-outline,471098,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB483.pdf,,II,,,, +listed-building-outline,,42102695,2021-12-08,,"MULTIPOLYGON (((-0.081978 51.491570,-0.082084 51.491657,-0.082063 51.491667,-0.081959 51.491578,-0.081978 51.491570)))","Path and street railings, lamp holder and gates to number 155",329,POINT(-0.082022 51.491619),listed-building-outline,471147,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB514.pdf,,II,,,, +listed-building-outline,,42102696,2021-12-08,,"MULTIPOLYGON (((-0.077744 51.448042,-0.077568 51.447999,-0.077536 51.447987,-0.077751 51.448035,-0.077744 51.448042)))",Court Lane gate to Dulwich Park and attached railings,329,POINT(-0.077660 51.448018),listed-building-outline,470850,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB242.pdf,,II,,,, +listed-building-outline,,42102697,2021-12-08,,"MULTIPOLYGON (((-0.091596 51.468320,-0.091777 51.468547,-0.091897 51.468717,-0.092584 51.469765,-0.091596 51.468320)))",Railings to Maudsley Hospital,329,POINT(-0.092005 51.468903),listed-building-outline,470863,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB252.pdf,,II,,,, +listed-building-outline,,42102698,2021-12-08,,"MULTIPOLYGON (((-0.088730 51.441480,-0.088592 51.441471,-0.088584 51.441369,-0.088873 51.441358,-0.088881 51.441447,-0.088730 51.441480)))",Dulwich College Preparatory School and attached balustrade,329,POINT(-0.088730 51.441417),listed-building-outline,470865,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB260.pdf,,II,,,, +listed-building-outline,,42102699,2021-12-08,,"MULTIPOLYGON (((-0.079570 51.442380,-0.079470 51.442402,-0.079451 51.442437,-0.079243 51.442470,-0.079210 51.442442,-0.079123 51.442450,-0.079210 51.442441,-0.079243 51.442469,-0.079450 51.442437,-0.079469 51.442402,-0.079570 51.442380)))",Queen Mary gate to Dulwich Park and attached railings,329,POINT(-0.079312 51.442446),listed-building-outline,470872,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB263.pdf,,II,,,, +listed-building-outline,,42102700,2021-12-08,,"MULTIPOLYGON (((-0.084929 51.450597,-0.084924 51.450592,-0.084934 51.450591,-0.084934 51.450595,-0.084929 51.450597)))","Monument to lieutenant colonel William Ranken, Dulwich Old Burial Ground",329,POINT(-0.084930 51.450594),listed-building-outline,470899,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB282.pdf,,II,,,, +listed-building-outline,,42102701,2021-12-08,,"MULTIPOLYGON (((-0.084835 51.450433,-0.084830 51.450428,-0.084840 51.450427,-0.084841 51.450431,-0.084835 51.450433)))","Monument to Anne Burgess, Dulwich Old Burial Ground",329,POINT(-0.084836 51.450430),listed-building-outline,470892,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB279.pdf,,II,,,, +listed-building-outline,,42102702,2021-12-08,,"MULTIPOLYGON (((-0.085231 51.450593,-0.085226 51.450588,-0.085236 51.450587,-0.085237 51.450590,-0.085231 51.450593)))","Monument to James Thompson, Dulwich Old Burial Ground",329,POINT(-0.085232 51.450590),listed-building-outline,470896,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB281.pdf,,II,,,, +listed-building-outline,,42102703,2021-12-08,,"MULTIPOLYGON (((-0.055343 51.472857,-0.055298 51.472833,-0.055212 51.472634,-0.055252 51.472611,-0.055368 51.472607,-0.055454 51.472808,-0.055343 51.472857)))",,329,POINT(-0.055333 51.472724),listed-building-outline,471280,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB620.pdf,,II,,,, +listed-building-outline,,42102704,2021-12-08,,"MULTIPOLYGON (((-0.053752 51.471302,-0.053728 51.471254,-0.054146 51.471186,-0.054173 51.471252,-0.054086 51.471296,-0.054075 51.471268,-0.053752 51.471302)))",Sassoon House,329,POINT(-0.053970 51.471249),listed-building-outline,471281,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB621.pdf,,II,,,, +listed-building-outline,,42102705,2021-12-08,,"MULTIPOLYGON (((-0.082576 51.476652,-0.082509 51.476508,-0.082481 51.476318,-0.082624 51.476331,-0.082615 51.476300,-0.082675 51.476292,-0.082682 51.476323,-0.082776 51.476312,-0.082770 51.476281,-0.082881 51.476292,-0.082876 51.476268,-0.083021 51.476249,-0.083115 51.476595,-0.082967 51.476611,-0.082959 51.476585,-0.082907 51.476591,-0.082915 51.476616,-0.082576 51.476652),(-0.082981 51.476472,-0.082947 51.476426,-0.082969 51.476424,-0.082945 51.476345,-0.082579 51.476383,-0.082633 51.476571,-0.082997 51.476530,-0.082981 51.476472)))",Aged Pilgrims Friendly Society’s home,329,POINT(-0.082801 51.476459),listed-building-outline,471300,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB641.pdf,,II,,,, +listed-building-outline,,42102706,2021-12-08,,"MULTIPOLYGON (((-0.081910 51.430662,-0.081597 51.430611,-0.081662 51.430539,-0.081615 51.430534,-0.081631 51.430479,-0.081579 51.430474,-0.081590 51.430435,-0.081655 51.430442,-0.081656 51.430348,-0.081808 51.430378,-0.081823 51.430330,-0.081951 51.430350,-0.081981 51.430281,-0.082066 51.430291,-0.082033 51.430399,-0.081950 51.430389,-0.081964 51.430432,-0.081904 51.430451,-0.081884 51.430516,-0.081992 51.430529,-0.081960 51.430630,-0.081910 51.430662)))",Kingswood House,329,POINT(-0.081815 51.430485),listed-building-outline,471302,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB642.pdf,,II,,,, +listed-building-outline,,42102707,2021-12-08,,"MULTIPOLYGON (((-0.086847 51.479461,-0.086823 51.479443,-0.086855 51.479426,-0.086898 51.479458,-0.087006 51.479401,-0.087031 51.479423,-0.087061 51.479406,-0.087011 51.479365,-0.087098 51.479319,-0.087213 51.479413,-0.087126 51.479458,-0.087094 51.479433,-0.087022 51.479455,-0.086898 51.479521,-0.086847 51.479461)))",,329,POINT(-0.087035 51.479421),listed-building-outline,471329,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB661.pdf,,II,,,, +listed-building-outline,,42102708,2021-12-08,,"MULTIPOLYGON (((-0.082976 51.477838,-0.082989 51.477802,-0.083087 51.477788,-0.083106 51.477733,-0.083158 51.477759,-0.083139 51.477794,-0.083181 51.477785,-0.083170 51.477819,-0.083227 51.477827,-0.083278 51.477773,-0.083312 51.477778,-0.083278 51.477877,-0.082976 51.477838)))",,329,POINT(-0.083150 51.477819),listed-building-outline,471330,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB662.pdf,,II,,,, +listed-building-outline,,42102709,2021-12-08,,"MULTIPOLYGON (((-0.073451 51.503680,-0.072912 51.503518,-0.073145 51.503315,-0.073879 51.503599,-0.074966 51.503924,-0.074825 51.504095,-0.073451 51.503680)))",Butlers Wharf building,329,POINT(-0.073917 51.503708),listed-building-outline,471315,1982-01-20,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB649.pdf,,II,,,, +listed-building-outline,,42102710,2021-12-08,,"MULTIPOLYGON (((-0.072682 51.502829,-0.072881 51.502914,-0.072697 51.503073,-0.072265 51.502868,-0.072424 51.502718,-0.072682 51.502829)))",,329,POINT(-0.072570 51.502894),listed-building-outline,471314,1982-01-20,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB654.pdf,,II,,,, +listed-building-outline,,42102711,2021-12-08,,"MULTIPOLYGON (((-0.074802 51.503748,-0.074760 51.503792,-0.074344 51.503666,-0.074479 51.503511,-0.074881 51.503667,-0.074802 51.503748)))",Eagle Wharf,329,POINT(-0.074610 51.503656),listed-building-outline,471317,1982-01-20,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB657.pdf,,II,,,, +listed-building-outline,,42102712,2021-12-08,,"MULTIPOLYGON (((-0.073205 51.503265,-0.073410 51.503100,-0.074383 51.503492,-0.074270 51.503636,-0.073205 51.503265)))",The Cardomon building,329,POINT(-0.073794 51.503366),listed-building-outline,471327,1982-01-20,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB606.pdf,,II,,,, +listed-building-outline,,42102713,2021-12-08,,"MULTIPOLYGON (((-0.072590 51.502318,-0.072271 51.502174,-0.072257 51.502168,-0.072385 51.502075,-0.072706 51.502238,-0.072612 51.502327,-0.072590 51.502318)))",Anise warehouse,329,POINT(-0.072486 51.502201),listed-building-outline,471312,1996-05-31,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB652.pdf,,II,,,, +listed-building-outline,,42102714,2021-12-08,,"MULTIPOLYGON (((-0.032688 51.494469,-0.032588 51.494014,-0.032719 51.493989,-0.032768 51.494086,-0.034067 51.493815,-0.034213 51.494117,-0.032825 51.494383,-0.032853 51.494442,-0.032688 51.494469)))","South lock, hydraulic capstans and mooring posts",329,POINT(-0.033367 51.494119),listed-building-outline,471328,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB660.pdf,,II,,,, +listed-building-outline,,42102715,2021-12-08,,"MULTIPOLYGON (((-0.068849 51.496262,-0.068674 51.496178,-0.069038 51.496119,-0.069243 51.496222,-0.068885 51.496281,-0.068849 51.496262)))",Railway Bridge,329,POINT(-0.068960 51.496200),listed-building-outline,471352,1979-07-03,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB687.pdf,,II,,,, +listed-building-outline,,42102716,2021-12-08,,"MULTIPOLYGON (((-0.035595 51.495466,-0.034258 51.495724,-0.033991 51.495807,-0.032561 51.496105,-0.032548 51.495643,-0.032569 51.495546,-0.032921 51.495533,-0.035365 51.495064,-0.035595 51.495466)))","Greenland lock including gates, bollards and capstans",329,POINT(-0.033971 51.495568),listed-building-outline,471363,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB695.pdf,,II,,,, +listed-building-outline,,42102717,2021-12-08,,"MULTIPOLYGON (((-0.082126 51.489001,-0.082586 51.488791,-0.082626 51.488812,-0.081241 51.489438,-0.081155 51.489503,-0.081115 51.489471,-0.082126 51.489001)))",Raised pavement in front of numbers 20-54,329,POINT(-0.081905 51.489122),listed-building-outline,471369,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB699.pdf,,II,,,, +listed-building-outline,,42102718,2021-12-08,,"MULTIPOLYGON (((-0.071988 51.463148,-0.071971 51.463171,-0.072030 51.463256,-0.071814 51.463315,-0.071523 51.462922,-0.071827 51.462843,-0.071876 51.462917,-0.071815 51.462933,-0.071988 51.463148)))",St John’s and St Clements school,329,POINT(-0.071787 51.463075),listed-building-outline,470531,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB11.pdf,,II,,,, +listed-building-outline,,42102719,2021-12-08,,"MULTIPOLYGON (((-0.072901 51.501724,-0.072956 51.501667,-0.072887 51.501642,-0.072915 51.501613,-0.073011 51.501614,-0.073208 51.501487,-0.073396 51.501585,-0.073208 51.501741,-0.073105 51.501695,-0.073026 51.501770,-0.072901 51.501724)),((-0.072774 51.501570,-0.072670 51.501514,-0.072927 51.501343,-0.073093 51.501434,-0.073066 51.501452,-0.073116 51.501481,-0.073004 51.501556,-0.072953 51.501525,-0.072886 51.501575,-0.072828 51.501545,-0.072774 51.501570)))",Butlers grinders and operators warehouse,329,POINT(-0.073038 51.501562),listed-building-outline,471309,1994-08-02,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB596.pdf,,II,,,, +listed-building-outline,,42102720,2021-12-08,,"MULTIPOLYGON (((-0.070435 51.502029,-0.070376 51.502083,-0.070078 51.502005,-0.070124 51.501926,-0.070435 51.502029)))",Reeds Wharf warehouse,329,POINT(-0.070247 51.502008),listed-building-outline,470592,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB55.pdf,,II,,,, +listed-building-outline,,42102721,2021-12-08,,"MULTIPOLYGON (((-0.069576 51.468074,-0.069253 51.468133,-0.069218 51.468126,-0.069190 51.468048,-0.069539 51.467995,-0.069576 51.468074)))",Girdlers almshouses,329,POINT(-0.069379 51.468064),listed-building-outline,470779,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB195.pdf,,II,,,, +listed-building-outline,,42102722,2021-12-08,,"MULTIPOLYGON (((-0.069538 51.467994,-0.069517 51.467951,-0.069175 51.468003,-0.069518 51.467950,-0.069538 51.467994)))","Walls, gates and railings to Girdlers almshouses",329,POINT(-0.069425 51.467967),listed-building-outline,470780,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB195.pdf,,II,,,, +listed-building-outline,,42102723,2021-12-08,,"MULTIPOLYGON (((-0.093981 51.480288,-0.093976 51.480233,-0.093924 51.480234,-0.093963 51.480212,-0.093935 51.480052,-0.094078 51.480048,-0.094146 51.480801,-0.094033 51.480803,-0.093981 51.480288)))",,329,POINT(-0.094050 51.480412),listed-building-outline,470753,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB173.pdf,,II,,,, +listed-building-outline,,42102724,2021-12-08,,"MULTIPOLYGON (((-0.034101 51.505376,-0.033745 51.505376,-0.033396 51.505458,-0.033267 51.505266,-0.033336 51.505249,-0.033070 51.504823,-0.032965 51.504851,-0.032928 51.504789,-0.033099 51.504745,-0.033131 51.504795,-0.033530 51.504692,-0.033813 51.505116,-0.033752 51.505145,-0.033750 51.505213,-0.034048 51.505196,-0.034101 51.505376),(-0.033490 51.505208,-0.033663 51.505167,-0.033451 51.504838,-0.033280 51.504882,-0.033490 51.505208)))","Canada Wharf and Columbia Wharf, including former engine house and boiler to south",329,POINT(-0.033525 51.505102),listed-building-outline,471252,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/Canadacolumbia.pdf,,II,,,, +listed-building-outline,,42102725,2021-12-08,,"MULTIPOLYGON (((-0.084858 51.450587,-0.084852 51.450582,-0.084862 51.450581,-0.084863 51.450584,-0.084858 51.450587)))","Monument to John Willes, Dulwich Old Burial Ground",329,POINT(-0.084858 51.450583),listed-building-outline,470898,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB282.pdf,,II,,,, +listed-building-outline,,42102726,2021-12-08,,"MULTIPOLYGON (((-0.084772 51.450558,-0.084767 51.450553,-0.084777 51.450552,-0.084778 51.450556,-0.084772 51.450558)))","Monument to John Graham, Dulwich Old Burial Ground",329,POINT(-0.084773 51.450555),listed-building-outline,470897,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB281.pdf,,II,,,, +listed-building-outline,,42102727,2021-12-08,,"MULTIPOLYGON (((-0.084747 51.450468,-0.084742 51.450463,-0.084752 51.450462,-0.084753 51.450465,-0.084747 51.450468)))","Monument to Emily Kingsley, Dulwich Old Burial Ground",329,POINT(-0.084748 51.450465),listed-building-outline,470894,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB280.pdf,,II,,,, +listed-building-outline,,42102728,2021-12-08,,"MULTIPOLYGON (((-0.084619 51.450448,-0.084613 51.450443,-0.084623 51.450442,-0.084624 51.450445,-0.084619 51.450448)))","Monument to Anne flint, Dulwich Old Burial Ground",329,POINT(-0.084619 51.450444),listed-building-outline,470893,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB279.pdf,,II,,,, +listed-building-outline,,42102729,2021-12-08,,"MULTIPOLYGON (((-0.084645 51.450502,-0.084640 51.450497,-0.084650 51.450496,-0.084651 51.450500,-0.084645 51.450502)))","Unidentified monument, Dulwich Old Burial Ground",329,POINT(-0.084646 51.450499),listed-building-outline,470903,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB285.pdf,,II,,,, +listed-building-outline,,42102730,2021-12-08,,"MULTIPOLYGON (((-0.084548 51.450411,-0.084543 51.450406,-0.084553 51.450405,-0.084554 51.450408,-0.084548 51.450411)))","Monument to Louisa Schroder, Dulwich Old Burial Ground",329,POINT(-0.084549 51.450408),listed-building-outline,470900,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB283.pdf,,II,,,, +listed-building-outline,,42102731,2021-12-08,,"MULTIPOLYGON (((-0.073816 51.443537,-0.073818 51.443539,-0.073601 51.443611,-0.073403 51.443651,-0.073356 51.443717,-0.073198 51.443723,-0.073353 51.443716,-0.073402 51.443650,-0.073816 51.443537)),((-0.073185 51.443723,-0.073185 51.443725,-0.073090 51.443731,-0.073002 51.443664,-0.072803 51.443657,-0.072649 51.443645,-0.072127 51.443581,-0.073002 51.443662,-0.073092 51.443729,-0.073185 51.443723)),((-0.073198 51.443722,-0.073185 51.443723,-0.073185 51.443719,-0.073197 51.443717,-0.073198 51.443722)),((-0.073185 51.443725,-0.073198 51.443723,-0.073198 51.443726,-0.073186 51.443727,-0.073185 51.443725)))",Roseberry gate to Dulwich park and attached railings,329,POINT(-0.072950 51.443627),listed-building-outline,470873,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB263.pdf,,II,,,, +listed-building-outline,,42102732,2021-12-08,,"MULTIPOLYGON (((-0.085255 51.450615,-0.085203 51.450642,-0.085201 51.450640,-0.085255 51.450615)))",Gates to Dulwich Old Burial Ground,329,POINT(-0.085220 51.450632),listed-building-outline,470904,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB286.pdf,,II,,,, +listed-building-outline,,42102733,2021-12-08,,"MULTIPOLYGON (((-0.059278 51.450343,-0.059277 51.450342,-0.059279 51.450341,-0.059279 51.450342,-0.059278 51.450343)))","Monument to Rebekah Horniman, Camberwell Old Cemetery",329,POINT(-0.059278 51.450342),listed-building-outline,470932,1992-05-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB312.pdf,,II,,,, +listed-building-outline,,42102734,2021-12-08,,"MULTIPOLYGON (((-0.059861 51.450505,-0.059860 51.450504,-0.059862 51.450504,-0.059863 51.450505,-0.059861 51.450505)))","Monument to James John Berkeley, Camberwell Old Cemetery",329,POINT(-0.059861 51.450505),listed-building-outline,470930,1992-05-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB311.pdf,,II,,,, +listed-building-outline,,42102735,2021-12-08,,"MULTIPOLYGON (((-0.059322 51.449984,-0.059321 51.449983,-0.059323 51.449982,-0.059323 51.449983,-0.059322 51.449984)))","Monument to Charles waters, Camberwell Old Cemetery",329,POINT(-0.059322 51.449983),listed-building-outline,470929,1992-05-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB310.pdf,,II,,,, +listed-building-outline,,42102736,2021-12-08,,"MULTIPOLYGON (((-0.059187 51.451217,-0.059178 51.451209,-0.059197 51.451209,-0.059195 51.451215,-0.059187 51.451217)))","Monument to members of public killed by zeppelin, Camberwell Old Cemetery",329,POINT(-0.059189 51.451212),listed-building-outline,470931,1992-05-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB311.pdf,,II,,,, +listed-building-outline,,42102737,2021-12-08,,"MULTIPOLYGON (((-0.072191 51.485440,-0.072197 51.485396,-0.072289 51.485400,-0.072296 51.485343,-0.072246 51.485341,-0.072250 51.485313,-0.072420 51.485309,-0.072403 51.485452,-0.072191 51.485440)))",Numbers 1 and 3 and attached railings,329,POINT(-0.072326 51.485384),listed-building-outline,470954,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB329.pdf,,II,,,, +listed-building-outline,,42102738,2021-12-08,,"MULTIPOLYGON (((-0.087720 51.470409,-0.087718 51.470409,-0.087709 51.470392,-0.087711 51.470392,-0.087720 51.470409)))",Gate posts to number 83 (Clintonville),329,POINT(-0.087715 51.470401),listed-building-outline,470983,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB360.pdf,,II,,,, +listed-building-outline,,42102739,2021-12-08,,"MULTIPOLYGON (((-0.046472 51.459798,-0.046067 51.459526,-0.046047 51.459538,-0.045966 51.459460,-0.046168 51.459340,-0.046668 51.459680,-0.046472 51.459798)),((-0.046055 51.460087,-0.046034 51.460073,-0.046013 51.460048,-0.045812 51.459782,-0.045902 51.459414,-0.046451 51.459112,-0.047064 51.459514,-0.047005 51.459479,-0.046979 51.459495,-0.046825 51.459390,-0.046794 51.459408,-0.046525 51.459194,-0.046412 51.459259,-0.046343 51.459213,-0.046479 51.459133,-0.046451 51.459116,-0.045905 51.459414,-0.045814 51.459781,-0.045887 51.459787,-0.045932 51.459845,-0.045875 51.459861,-0.046062 51.460085,-0.047062 51.459518,-0.046172 51.460037,-0.046090 51.460083,-0.046055 51.460087)),((-0.045936 51.459880,-0.046049 51.459846,-0.046102 51.459920,-0.045991 51.459954,-0.045936 51.459880)),((-0.046091 51.460059,-0.046024 51.460013,-0.046140 51.459946,-0.046191 51.460001,-0.046091 51.460059)))","Ivydale road school, caretakers cottage, related buildings and wall",329,POINT(-0.046331 51.459580),listed-building-outline,471029,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB408.pdf,,II,,,, +listed-building-outline,,42102740,2021-12-08,,"MULTIPOLYGON (((-0.052202 51.461043,-0.052202 51.461043,-0.052203 51.461043,-0.052203 51.461043,-0.052202 51.461043)))","Monument to Vincent Figgins, Nunhead Cemetery",329,POINT(-0.052202 51.461043),listed-building-outline,471059,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB440.pdf,,II,,,, +listed-building-outline,,42102741,2021-12-08,,"MULTIPOLYGON (((-0.101142 51.492896,-0.101255 51.492810,-0.101973 51.492342,-0.101984 51.492339,-0.102000 51.492340,-0.102006 51.492341,-0.101142 51.492896)))","Railings, gates and piers to old St Marys churchyard",329,POINT(-0.101624 51.492578),listed-building-outline,471141,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB509.pdf,,II,,,, +listed-building-outline,,42102742,2021-12-08,,"MULTIPOLYGON (((-0.054472 51.501350,-0.054487 51.501367,-0.054414 51.501368,-0.054472 51.501350)))",Monument to prince lee boo approximately 10 metres west of west tower church of St Mary,329,POINT(-0.054458 51.501362),listed-building-outline,471287,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB627.pdf,,II,,,, +listed-building-outline,,42102743,2021-12-08,,"MULTIPOLYGON (((-0.085737 51.432297,-0.085737 51.432297,-0.085738 51.432297,-0.085738 51.432297,-0.085737 51.432297)))",Sungazer sculpture at kingsdale school,329,POINT(-0.085737 51.432297),listed-building-outline,470533,1998-04-15,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB14.pdf,,II,,,, +listed-building-outline,,42102744,2021-12-08,,"MULTIPOLYGON (((-0.060170 51.480066,-0.060139 51.480072,-0.059876 51.479552,-0.059902 51.479519,-0.059855 51.479428,-0.059805 51.479406,-0.059685 51.479163,-0.059805 51.479406,-0.059855 51.479427,-0.059902 51.479519,-0.059876 51.479552,-0.060139 51.480072,-0.060170 51.480066)),((-0.059629 51.479050,-0.059555 51.478900,-0.059529 51.478846,-0.059569 51.478838,-0.059529 51.478846,-0.059629 51.479050)),((-0.059629 51.479050,-0.059661 51.479115,-0.059685 51.479163,-0.059629 51.479050)))",Railings and gates to Caroline Gardens,329,POINT(-0.058469 51.476981),listed-building-outline,470546,1962-02-28,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB23.pdf,,II,,,, +listed-building-outline,,42102745,2021-12-08,,"MULTIPOLYGON (((-0.050352 51.453084,-0.049254 51.453469,-0.048509 51.453797,-0.047837 51.454161,-0.047735 51.454142,-0.047599 51.454218,-0.047579 51.454251,-0.047612 51.454290,-0.046832 51.454834,-0.046498 51.455108,-0.046094 51.455503,-0.045660 51.456021,-0.045316 51.456591,-0.045300 51.456611,-0.045250 51.456634,-0.045176 51.456636,-0.044758 51.456537,-0.044651 51.456509,-0.044559 51.456474,-0.044521 51.456454,-0.042485 51.455286,-0.042511 51.455233,-0.042386 51.455154,-0.042320 51.455135,-0.042250 51.455161,-0.042209 51.455161,-0.042158 51.455143,-0.042097 51.455117,-0.042218 51.455159,-0.042319 51.455131,-0.042392 51.455152,-0.042515 51.455233,-0.042490 51.455285,-0.044567 51.456474,-0.045162 51.456629,-0.045256 51.456627,-0.045333 51.456557,-0.045490 51.456269,-0.045702 51.455955,-0.046140 51.455442,-0.046469 51.455126,-0.046808 51.454843,-0.047603 51.454290,-0.047573 51.454251,-0.047596 51.454214,-0.047741 51.454138,-0.047835 51.454156,-0.048490 51.453801,-0.049133 51.453513,-0.049495 51.453372,-0.050352 51.453084)))","Gates, piers and railings, Camberwell new cemetery",329,POINT(-0.046281 51.455130),listed-building-outline,470679,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB107.pdf,,II,,,, +listed-building-outline,,42102746,2021-12-08,,"MULTIPOLYGON (((-0.087174 51.463747,-0.087017 51.463586,-0.086753 51.463693,-0.087017 51.463585,-0.087174 51.463747)))",Garden wall to south west of number 29 (champion lodge),329,POINT(-0.086981 51.463628),listed-building-outline,470770,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB188.pdf,,II,,,, +listed-building-outline,,42102747,2021-12-08,,"MULTIPOLYGON (((-0.085425 51.482664,-0.085433 51.482702,-0.085548 51.482677,-0.085599 51.482675,-0.085622 51.482680,-0.085636 51.482692,-0.085739 51.482683,-0.085719 51.482496,-0.085674 51.482488,-0.085721 51.482495,-0.085756 51.482649,-0.085749 51.482675,-0.085737 51.482686,-0.085633 51.482694,-0.085556 51.482679,-0.085431 51.482704,-0.085425 51.482664)),((-0.085670 51.482414,-0.085694 51.482395,-0.085676 51.482335,-0.085633 51.482333,-0.085679 51.482333,-0.085697 51.482397,-0.085670 51.482414)))",Piers and railings to groundwork trust offices,329,POINT(-0.085682 51.482615),listed-building-outline,471460,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB783.pdf,,II,,,, +listed-building-outline,,42102748,2021-12-08,,"MULTIPOLYGON (((-0.054704 51.478553,-0.054547 51.478494,-0.054665 51.478372,-0.054699 51.478385,-0.054640 51.478445,-0.054763 51.478492,-0.054704 51.478553)))",,329,POINT(-0.054655 51.478478),listed-building-outline,471151,1975-05-14,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB518.pdf,,II,,,, +listed-building-outline,,42102749,2021-12-08,,"MULTIPOLYGON (((-0.051463 51.499024,-0.051004 51.499278,-0.050807 51.499133,-0.050900 51.499084,-0.050794 51.499017,-0.050871 51.498977,-0.050745 51.498886,-0.051175 51.498660,-0.051463 51.499024)))",London hydraulic power company former pumping Station,329,POINT(-0.051094 51.498973),listed-building-outline,471228,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB581.pdf,,II,,,, +listed-building-outline,,42102750,2021-12-08,,"MULTIPOLYGON (((-0.053659 51.501727,-0.054160 51.501607,-0.054200 51.501679,-0.054281 51.501733,-0.054405 51.501685,-0.054418 51.501704,-0.054021 51.501857,-0.053775 51.501900,-0.053659 51.501727)))",Thames Tunnel mills including detached chimney,329,POINT(-0.053979 51.501755),listed-building-outline,471243,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB593.pdf,,II,,,, +listed-building-outline,,42102751,2021-12-08,,"MULTIPOLYGON (((-0.034098 51.504523,-0.034069 51.504524,-0.034083 51.504424,-0.034039 51.504298,-0.034078 51.504293,-0.034119 51.504423,-0.034098 51.504523)))","Forecourt wall, gate piers and gates at number 265 (Nelson House)",329,POINT(-0.034085 51.504403),listed-building-outline,471250,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB600.pdf,,II,,,, +listed-building-outline,,42102752,2021-12-08,,"MULTIPOLYGON (((-0.033247 51.504669,-0.033100 51.504671,-0.033071 51.504628,-0.033083 51.504587,-0.033778 51.504539,-0.033964 51.504553,-0.033960 51.504600,-0.033819 51.504637,-0.033247 51.504669)))","Nelson dock patent slip, including gates",329,POINT(-0.033512 51.504606),listed-building-outline,471264,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB605.pdf,,II,,,, +listed-building-outline,,42102753,2021-12-08,,"MULTIPOLYGON (((-0.033948 51.504046,-0.033621 51.504150,-0.032524 51.504198,-0.032506 51.504220,-0.032387 51.504169,-0.032350 51.504107,-0.032425 51.504018,-0.032425 51.503977,-0.032508 51.503969,-0.032523 51.504001,-0.033274 51.503932,-0.033844 51.503960,-0.033918 51.503986,-0.033948 51.504046)))",Nelson dry dock including gate,329,POINT(-0.033114 51.504064),listed-building-outline,471265,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB605.pdf,,II,,,, +listed-building-outline,,42102754,2021-12-08,,"MULTIPOLYGON (((-0.047648 51.504154,-0.047345 51.503672,-0.047349 51.503618,-0.047305 51.503591,-0.047605 51.503410,-0.047687 51.503488,-0.048014 51.504032,-0.047988 51.504099,-0.047697 51.504201,-0.047648 51.504154)))","Surrey lock including gates, bollards and capstans",329,POINT(-0.047665 51.503817),listed-building-outline,471266,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB606.pdf,,II,,,, +listed-building-outline,,42102755,2021-12-08,,"MULTIPOLYGON (((-0.052070 51.461104,-0.052070 51.461103,-0.052071 51.461103,-0.052071 51.461104,-0.052070 51.461104)))","Monument to John Allan, Nunhead Cemetery",329,POINT(-0.052070 51.461104),listed-building-outline,471054,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB438.pdf,,II,,,, +listed-building-outline,,42102756,2021-12-08,,"MULTIPOLYGON (((-0.052555 51.461544,-0.052555 51.461543,-0.052556 51.461543,-0.052556 51.461543,-0.052555 51.461544)))","Monument to Oppenheim and Schroeter, Nunhead Cemetery",329,POINT(-0.052555 51.461543),listed-building-outline,471056,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB439.pdf,,II,,,, +listed-building-outline,,42102757,2021-12-08,,"MULTIPOLYGON (((-0.051550 51.463173,-0.051550 51.463172,-0.051551 51.463172,-0.051550 51.463172,-0.051550 51.463173)))","Monument to Sophia Kempton, Nunhead Cemetery",329,POINT(-0.051550 51.463172),listed-building-outline,471057,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB439.pdf,,II,,,, +listed-building-outline,,42102758,2021-12-08,,"MULTIPOLYGON (((-0.052053 51.463541,-0.052052 51.463540,-0.052053 51.463540,-0.052053 51.463541,-0.052053 51.463541)))","Monument to Thomas Humphreys, Nunhead Cemetery",329,POINT(-0.052053 51.463540),listed-building-outline,471058,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB440.pdf,,II,,,, +listed-building-outline,,42102759,2021-12-08,,"MULTIPOLYGON (((-0.051750 51.463212,-0.051749 51.463211,-0.051750 51.463211,-0.051750 51.463212,-0.051750 51.463212)))","Monument to Henry Daniel, Nunhead Cemetery",329,POINT(-0.051750 51.463211),listed-building-outline,471053,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB437.pdf,,II,,,, +listed-building-outline,,42102760,2021-12-08,,"MULTIPOLYGON (((-0.052291 51.463679,-0.052291 51.463679,-0.052292 51.463679,-0.052292 51.463679,-0.052291 51.463679)))","Monument to Maria Poom, Nunhead Cemetery",329,POINT(-0.052291 51.463679),listed-building-outline,471055,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB438.pdf,,II,,,, +listed-building-outline,,42102761,2021-12-08,,"MULTIPOLYGON (((-0.080071 51.474442,-0.079856 51.474493,-0.079738 51.474277,-0.079797 51.474263,-0.079781 51.474235,-0.079725 51.474270,-0.079641 51.474122,-0.079688 51.474111,-0.079677 51.474091,-0.079883 51.474064,-0.079896 51.474028,-0.079999 51.474041,-0.080191 51.474000,-0.080236 51.474093,-0.080183 51.474101,-0.080200 51.474140,-0.079819 51.474214,-0.079852 51.474250,-0.079934 51.474223,-0.080071 51.474442)))",South London art gallery,329,POINT(-0.079919 51.474215),listed-building-outline,471188,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB543.pdf,,II,,,, +listed-building-outline,,42102762,2021-12-08,,"MULTIPOLYGON (((-0.079790 51.473978,-0.079707 51.474018,-0.079639 51.474034,-0.079550 51.474039,-0.079790 51.473978)))","Forecourt wall and railings to numbers 61, 63 and 65 (south London art gallery)",329,POINT(-0.079673 51.474015),listed-building-outline,471189,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB544.pdf,,II,,,, +listed-building-outline,,42102763,2021-12-08,,"MULTIPOLYGON (((-0.077787 51.474052,-0.077625 51.474067,-0.077602 51.473958,-0.077763 51.473943,-0.077787 51.474052)))",Former Peckham fire Station,329,POINT(-0.077694 51.474005),listed-building-outline,505336,2008-11-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB547.pdf,,II,,,, +listed-building-outline,,42102764,2021-12-08,,"MULTIPOLYGON (((-0.087801 51.452826,-0.087799 51.452825,-0.087802 51.452825,-0.087802 51.452826,-0.087801 51.452826)))",Striding man sculpture in forecourt of William Penn school,329,POINT(-0.087801 51.452825),listed-building-outline,471221,1998-04-15,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB576.pdf,,II,,,, +listed-building-outline,,42102765,2021-12-08,,"MULTIPOLYGON (((-0.082575 51.476652,-0.082493 51.476662,-0.082402 51.476328,-0.082480 51.476318,-0.082404 51.476329,-0.082494 51.476661,-0.082575 51.476652)))",Front and side walls and gates to Aged Pilgrims Friendly Society’s home,329,POINT(-0.082449 51.476484),listed-building-outline,471301,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB642.pdf,,II,,,, +listed-building-outline,,42102766,2021-12-08,,"MULTIPOLYGON (((-0.080357 51.429606,-0.080358 51.429614,-0.080355 51.429623,-0.080318 51.429651,-0.080293 51.429656,-0.080357 51.429606)))",Gates to Kingswood House at corner of Lyall avenue,329,POINT(-0.080331 51.429633),listed-building-outline,471303,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB643.pdf,,II,,,, +listed-building-outline,,42102767,2021-12-08,,"MULTIPOLYGON (((-0.070844 51.433253,-0.070657 51.433322,-0.070624 51.433288,-0.070671 51.433270,-0.070648 51.433246,-0.070753 51.433207,-0.070676 51.433127,-0.070752 51.433100,-0.070725 51.433067,-0.070835 51.433028,-0.070816 51.433004,-0.070842 51.432982,-0.071017 51.432920,-0.071146 51.432918,-0.071177 51.432954,-0.071122 51.432973,-0.071151 51.433004,-0.071134 51.433032,-0.071078 51.433029,-0.071091 51.433044,-0.070922 51.433117,-0.070830 51.433118,-0.070853 51.433144,-0.070774 51.433170,-0.070844 51.433253)),((-0.070667 51.433211,-0.070581 51.433244,-0.070507 51.433190,-0.070613 51.433150,-0.070667 51.433211)))",Beltwood House,329,POINT(-0.070865 51.433090),listed-building-outline,471378,1993-05-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB708.pdf,,II,,,, +listed-building-outline,,42102768,2021-12-08,,"MULTIPOLYGON (((-0.064747 51.499506,-0.064699 51.499482,-0.064814 51.499390,-0.064770 51.499342,-0.064927 51.499232,-0.065003 51.499243,-0.065044 51.499210,-0.064952 51.499165,-0.065023 51.499108,-0.064878 51.499040,-0.064920 51.498999,-0.065132 51.499099,-0.065081 51.499140,-0.065220 51.499191,-0.065140 51.499256,-0.065191 51.499280,-0.064900 51.499508,-0.064810 51.499563,-0.064726 51.499522,-0.064747 51.499506)))",Riverside School,329,POINT(-0.064963 51.499306),listed-building-outline,470924,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB305.pdf,,II,,,, +listed-building-outline,,42102769,2021-12-08,,"MULTIPOLYGON (((-0.078785 51.495430,-0.078833 51.495440,-0.078706 51.495619,-0.078604 51.495586,-0.078659 51.495519,-0.078718 51.495537,-0.078785 51.495430)))",,329,POINT(-0.078717 51.495537),listed-building-outline,470970,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB346.pdf,,II,,,, +listed-building-outline,,42102770,2021-12-08,,"MULTIPOLYGON (((-0.087818 51.454593,-0.088317 51.454291,-0.088211 51.454227,-0.087747 51.454553,-0.087701 51.454526,-0.085736 51.455896,-0.087121 51.454900,-0.088179 51.454207,-0.088210 51.454168,-0.088187 51.454153,-0.088227 51.454128,-0.088287 51.454122,-0.088525 51.454271,-0.088353 51.454315,-0.087763 51.454697,-0.085949 51.455965,-0.087860 51.454619,-0.087818 51.454593),(-0.088238 51.454374,-0.088342 51.454309,-0.088333 51.454303,-0.088238 51.454374),(-0.088195 51.454217,-0.088187 51.454213,-0.088087 51.454278,-0.088092 51.454282,-0.088195 51.454217)))",North Dulwich station including attached bridge and platforms,329,POINT(-0.087754 51.454588),listed-building-outline,471223,1987-07-29,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB577.pdf,,II,,,, +listed-building-outline,,42102771,2021-12-08,,"MULTIPOLYGON (((-0.053341 51.473141,-0.053347 51.473072,-0.053492 51.473075,-0.053483 51.473190,-0.053442 51.473189,-0.053446 51.473145,-0.053415 51.473143,-0.053411 51.473188,-0.053370 51.473186,-0.053372 51.473143,-0.053341 51.473141)))","Numbers 237, 239 and 241 and attached handrails",329,POINT(-0.053420 51.473124),listed-building-outline,471217,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB573.pdf,,II,,,, +listed-building-outline,,42102772,2021-12-08,,"MULTIPOLYGON (((-0.053713 51.473217,-0.053657 51.473213,-0.053661 51.473176,-0.053486 51.473167,-0.053491 51.473084,-0.053713 51.473096,-0.053713 51.473217)))",Number 235 and attached handrails,329,POINT(-0.053609 51.473138),listed-building-outline,471216,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB572.pdf,,II,,,, +listed-building-outline,,42102773,2021-12-08,,"MULTIPOLYGON (((-0.078310 51.502503,-0.078311 51.502503,-0.078775 51.502817,-0.078774 51.502818,-0.078310 51.502503)),((-0.077833 51.502179,-0.077993 51.502290,-0.078186 51.502418,-0.077995 51.502292,-0.077833 51.502179)))",Gate piers and railings to church yard of former church of St John,329,POINT(-0.078477 51.502616),listed-building-outline,505614,2009-12-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkNL3.pdf,,II,,,, +listed-building-outline,,42102774,2021-12-08,,"MULTIPOLYGON (((-0.089925 51.505433,-0.089928 51.505433,-0.089928 51.505435,-0.089924 51.505435,-0.089925 51.505433)),((-0.088905 51.505885,-0.088907 51.505886,-0.088907 51.505888,-0.088903 51.505888,-0.088905 51.505885)),((-0.089869 51.505444,-0.089871 51.505445,-0.089871 51.505446,-0.089867 51.505447,-0.089869 51.505444)),((-0.089837 51.505471,-0.089840 51.505472,-0.089840 51.505473,-0.089836 51.505474,-0.089837 51.505471)),((-0.088918 51.505861,-0.088920 51.505862,-0.088921 51.505863,-0.088917 51.505864,-0.088918 51.505861)),((-0.089825 51.505483,-0.089827 51.505484,-0.089827 51.505485,-0.089823 51.505485,-0.089825 51.505483)),((-0.088898 51.505894,-0.088900 51.505895,-0.088900 51.505897,-0.088896 51.505897,-0.088898 51.505894)),((-0.089852 51.505460,-0.089854 51.505461,-0.089854 51.505462,-0.089850 51.505462,-0.089852 51.505460)),((-0.088912 51.505873,-0.088914 51.505874,-0.088915 51.505875,-0.088911 51.505876,-0.088912 51.505873)),((-0.089892 51.505435,-0.089895 51.505436,-0.089894 51.505437,-0.089890 51.505437,-0.089892 51.505435)))","Six bollards at entrance to Green Dragon Court, 3 bollards and one lamp post at rear of Globe public house",329,POINT(-0.089449 51.505641),listed-building-outline,506964,2009-06-05,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkNL4.pdf,,II,,,, +listed-building-outline,,42102775,2021-12-08,,"MULTIPOLYGON (((-0.096469 51.490603,-0.096879 51.490496,-0.097012 51.490684,-0.096825 51.490740,-0.096767 51.490655,-0.096471 51.490736,-0.096533 51.490800,-0.096350 51.490866,-0.096218 51.490722,-0.096498 51.490642,-0.096469 51.490603)))",The Walworth Clinic,329,POINT(-0.096627 51.490669),listed-building-outline,507681,2010-02-22,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkNL6.pdf,,II,,,, +listed-building-outline,,42102776,2021-12-08,,"MULTIPOLYGON (((-0.040545 51.495228,-0.040545 51.495227,-0.040546 51.495227,-0.040546 51.495228,-0.040545 51.495228)))","Capstan, Greenland dock",329,POINT(-0.040545 51.495227),listed-building-outline,471361,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB639.pdf,,II,,,, +listed-building-outline,,42102777,2021-12-08,,"MULTIPOLYGON (((-0.077702 51.422069,-0.077582 51.422255,-0.077486 51.422231,-0.077450 51.422288,-0.077422 51.422281,-0.077471 51.422204,-0.077204 51.422137,-0.077314 51.421969,-0.077702 51.422069)))",Pedestrian subway under Crystal Palace Parade (that part in LB Southwark),329,POINT(-0.077456 51.422110),listed-building-outline,91570,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB249.pdf,,II,,,, +listed-building-outline,,42102778,2021-12-08,,"MULTIPOLYGON (((-0.085708 51.446748,-0.085590 51.446742,-0.085626 51.446349,-0.085658 51.446341,-0.085691 51.446188,-0.085749 51.446192,-0.085748 51.446233,-0.086483 51.446278,-0.086468 51.446362,-0.086436 51.446360,-0.086427 51.446403,-0.086274 51.446379,-0.086254 51.446487,-0.086316 51.446491,-0.086309 51.446437,-0.086394 51.446443,-0.086378 51.446496,-0.086410 51.446537,-0.086356 51.446660,-0.086137 51.446665,-0.086189 51.446414,-0.085762 51.446383,-0.085764 51.446515,-0.085743 51.446514,-0.085708 51.446748)))",Dulwich Old College,329,POINT(-0.086010 51.446427),listed-building-outline,470817,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB260.pdf,,II,,,, +listed-building-outline,,42102779,2021-12-08,,"MULTIPOLYGON (((-0.085297 51.446571,-0.085273 51.446418,-0.085268 51.446394,-0.085271 51.446395,-0.085297 51.446571)))","Old college gate to Dulwich Park, and attached railings",329,POINT(-0.085278 51.446449),listed-building-outline,470821,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB221.pdf,,II,,,, +listed-building-outline,,42102780,2021-12-08,,"MULTIPOLYGON (((-0.085299 51.447427,-0.085295 51.447460,-0.085011 51.447418,-0.085023 51.447326,-0.085310 51.447339,-0.085268 51.447425,-0.085299 51.447427)))",Number 117 and attached railings,329,POINT(-0.085160 51.447386),listed-building-outline,470889,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB277.pdf,,II,,,, +listed-building-outline,,42102781,2021-12-08,,"MULTIPOLYGON (((-0.085795 51.447363,-0.085776 51.447363,-0.085738 51.447359,-0.085654 51.447347,-0.085795 51.447363)))",Entrance gates and piers of Dulwich Old College,329,POINT(-0.085736 51.447357),listed-building-outline,470819,1954-06-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB220.pdf,,II,,,, +listed-building-outline,,42102782,2021-12-08,,"MULTIPOLYGON (((-0.083993 51.440631,-0.083990 51.440632,-0.083884 51.440423,-0.083888 51.440422,-0.083993 51.440631)))",Entrance gates and piers of Dulwich College to the east of the main building,329,POINT(-0.083937 51.440523),listed-building-outline,470816,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB217.pdf,,II,,,, +listed-building-outline,,42102783,2021-12-08,,"MULTIPOLYGON (((-0.044589 51.494530,-0.044439 51.494497,-0.044752 51.494052,-0.044887 51.494088,-0.044589 51.494530)))",Turntable and machinery of former swing road bridge,329,POINT(-0.044665 51.494295),listed-building-outline,471227,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB580.pdf,,II,,,, +listed-building-outline,,42102784,2021-12-08,,"MULTIPOLYGON (((-0.071633 51.501405,-0.071756 51.501303,-0.071647 51.501252,-0.071528 51.501348,-0.071357 51.501268,-0.071481 51.501144,-0.071576 51.501193,-0.071603 51.501173,-0.071503 51.501123,-0.071731 51.500958,-0.071889 51.501037,-0.071708 51.501133,-0.071861 51.501207,-0.071983 51.501104,-0.072201 51.501220,-0.072092 51.501266,-0.071805 51.501501,-0.071633 51.501405)))","Vogans mill, north east block",329,POINT(-0.071768 51.501232),listed-building-outline,471100,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB485.pdf,,II,,,, +listed-building-outline,,42102785,2021-12-08,,"MULTIPOLYGON (((-0.071633 51.501405,-0.071756 51.501303,-0.071647 51.501252,-0.071528 51.501348,-0.071357 51.501268,-0.071481 51.501144,-0.071576 51.501193,-0.071603 51.501173,-0.071503 51.501123,-0.071731 51.500958,-0.071889 51.501037,-0.071708 51.501133,-0.071861 51.501207,-0.071983 51.501104,-0.072201 51.501220,-0.072092 51.501266,-0.071805 51.501501,-0.071633 51.501405)))","Vogans mill, south west warehouse block (behind tower block to street)",329,POINT(-0.071768 51.501232),listed-building-outline,471112,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB486.pdf,,II,,,, +listed-building-outline,,42102786,2021-12-08,,"MULTIPOLYGON (((-0.071633 51.501405,-0.071756 51.501303,-0.071647 51.501252,-0.071528 51.501348,-0.071357 51.501268,-0.071481 51.501144,-0.071576 51.501193,-0.071603 51.501173,-0.071503 51.501123,-0.071731 51.500958,-0.071889 51.501037,-0.071708 51.501133,-0.071861 51.501207,-0.071983 51.501104,-0.072201 51.501220,-0.072092 51.501266,-0.071805 51.501501,-0.071633 51.501405)))",Vogans mill,329,POINT(-0.071768 51.501232),listed-building-outline,471099,1983-07-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB484.pdf,,II,,,, +listed-building-outline,,42102787,2021-12-08,,"MULTIPOLYGON (((-0.070730 51.502075,-0.071171 51.501767,-0.070946 51.501639,-0.071070 51.501529,-0.071500 51.501770,-0.070804 51.502209,-0.070633 51.502153,-0.070730 51.502075)))","New Concordia Wharf, St Saviours dock range",329,POINT(-0.071087 51.501872),listed-building-outline,471114,1982-02-09,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB488.pdf,,II,,,, +listed-building-outline,,42102788,2021-12-08,,"MULTIPOLYGON (((-0.070730 51.502075,-0.071171 51.501767,-0.070946 51.501639,-0.071070 51.501529,-0.071500 51.501770,-0.070804 51.502209,-0.070633 51.502153,-0.070730 51.502075)))","New Concordia Wharf, south block",329,POINT(-0.071087 51.501872),listed-building-outline,471116,1982-02-09,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB490.pdf,,II,,,, +listed-building-outline,,42102789,2021-12-08,,"MULTIPOLYGON (((-0.070605 51.501900,-0.070854 51.501711,-0.070964 51.501771,-0.070860 51.501837,-0.070897 51.501856,-0.070839 51.501891,-0.070914 51.501931,-0.070809 51.502010,-0.070605 51.501900)))","New Concordia Wharf, north east block with water tower and chimney",329,POINT(-0.070793 51.501865),listed-building-outline,471115,1982-02-09,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB489.pdf,,II,,,, +listed-building-outline,,42102790,2021-12-08,,"MULTIPOLYGON (((-0.053130 51.464218,-0.053144 51.464225,-0.053027 51.464302,-0.053013 51.464294,-0.053130 51.464218)))","Entrance gate piers, gates and railings to Nunhead cemetery",329,POINT(-0.053078 51.464260),listed-building-outline,471052,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB436.pdf,,II,,,, +listed-building-outline,,42102791,2021-12-08,,"MULTIPOLYGON (((-0.073963 51.486422,-0.073967 51.486360,-0.073694 51.486352,-0.073683 51.486428,-0.073691 51.486350,-0.073969 51.486357,-0.073963 51.486422)))","Wall with gate posts and gate, and garden wall to numbers 1 and 3",329,POINT(-0.073827 51.486360),listed-building-outline,471404,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB734.pdf,,II,,,, +listed-building-outline,,42102792,2021-12-08,,"MULTIPOLYGON (((-0.033944 51.495689,-0.033979 51.495758,-0.033941 51.495739,-0.033882 51.495770,-0.033936 51.495731,-0.033790 51.495441,-0.033710 51.495433,-0.033723 51.495416,-0.033788 51.495437,-0.033809 51.495417,-0.033944 51.495689)))",Footbridge over Greenland Dock,329,POINT(-0.033869 51.495578),listed-building-outline,471362,1992-05-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB694.pdf,,II,,,, +listed-building-outline,,42102793,2021-12-08,,"MULTIPOLYGON (((-0.085893 51.446788,-0.085863 51.446793,-0.085855 51.446770,-0.085886 51.446766,-0.085893 51.446788)))",War memorial at Dulwich Old College,329,POINT(-0.085874 51.446779),listed-building-outline,508023,2010-05-19,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB508023.pdf,,II,,,, +listed-building-outline,,42102794,2021-12-08,,"MULTIPOLYGON (((-0.084230 51.440287,-0.084180 51.440295,-0.084114 51.440255,-0.084112 51.440164,-0.084160 51.440154,-0.084238 51.440197,-0.084230 51.440287)))",War memorial east of Dulwich College,329,POINT(-0.084173 51.440225),listed-building-outline,508022,2010-05-19,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB508022.pdf,,II,,,, +listed-building-outline,,42102795,2021-12-08,,"MULTIPOLYGON (((-0.091138 51.473907,-0.090969 51.473885,-0.091029 51.473805,-0.091078 51.473797,-0.091155 51.473583,-0.091229 51.473592,-0.091138 51.473907)))",Camberwell police Station and attached lamp bracket,329,POINT(-0.091121 51.473767),listed-building-outline,470698,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB119.pdf,,II,,,, +listed-building-outline,,42102796,2021-12-08,,"MULTIPOLYGON (((-0.060478 51.498977,-0.060445 51.498975,-0.060450 51.498955,-0.060482 51.498957,-0.060478 51.498977)))",War Memorial,329,POINT(-0.060464 51.498966),listed-building-outline,508051,2010-09-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/Slb_Wlane.pdf,,II,,,, +listed-building-outline,,42102797,2021-12-08,,"MULTIPOLYGON (((-0.070877 51.498049,-0.070845 51.498007,-0.070902 51.498042,-0.070877 51.498049)))","War Memorial of 22nd Battalion, The London Regiment (The Queen's)",329,POINT(-0.070875 51.498033),listed-building-outline,508030,2010-09-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/Slb_O_J_M.pdf,,II,,,, +listed-building-outline,,42102798,2021-12-08,,"MULTIPOLYGON (((-0.073028 51.466274,-0.073106 51.466232,-0.073055 51.466201,-0.073134 51.466147,-0.073174 51.466172,-0.073269 51.466106,-0.073471 51.466219,-0.073101 51.466472,-0.072966 51.466392,-0.073050 51.466334,-0.073001 51.466306,-0.073028 51.466274)),((-0.073016 51.466550,-0.072875 51.466422,-0.072804 51.466293,-0.072875 51.466421,-0.073041 51.466545,-0.073504 51.466228,-0.073712 51.466087,-0.073042 51.466546,-0.073016 51.466550)))",Southwark educational services centre and perimeter wall,329,POINT(-0.073196 51.466286),listed-building-outline,470557,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB34.pdf,,II,,,, +listed-building-outline,,42102799,2021-12-08,,"MULTIPOLYGON (((-0.089171 51.467724,-0.089190 51.467754,-0.089038 51.467777,-0.088971 51.467676,-0.088686 51.467747,-0.088721 51.467802,-0.088575 51.467838,-0.088540 51.467783,-0.088261 51.467852,-0.088325 51.467953,-0.088183 51.468008,-0.088049 51.467791,-0.089053 51.467541,-0.089171 51.467724)))",William Booth memorial training college (main block),329,POINT(-0.088598 51.467744),listed-building-outline,470773,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB190.pdf,,II,,,, +listed-building-outline,,42102800,2021-12-08,,"MULTIPOLYGON (((-0.086506 51.465917,-0.086451 51.465921,-0.086374 51.465851,-0.086522 51.465766,-0.086545 51.465790,-0.086471 51.465822,-0.086521 51.465871,-0.086615 51.465852,-0.086564 51.465875,-0.086583 51.465912,-0.086528 51.465937,-0.086506 51.465917)))",,329,POINT(-0.086483 51.465865),listed-building-outline,470764,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB184.pdf,,II,,,, +listed-building-outline,,42102801,2021-12-08,,"MULTIPOLYGON (((-0.084619 51.468721,-0.084505 51.468643,-0.084571 51.468599,-0.084528 51.468563,-0.084593 51.468533,-0.084758 51.468635,-0.084619 51.468721)))",Number 167 and attached railings,329,POINT(-0.084623 51.468629),listed-building-outline,470725,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB145.pdf,,II,,,, +listed-building-outline,,42102802,2021-12-08,,"MULTIPOLYGON (((-0.073117 51.478056,-0.073057 51.477923,-0.073123 51.477912,-0.073139 51.477943,-0.073271 51.477919,-0.073252 51.477879,-0.073179 51.477892,-0.073139 51.477805,-0.073320 51.477765,-0.073422 51.477994,-0.073225 51.478010,-0.073237 51.478036,-0.073117 51.478056)))",Former St Luke’s church of England primary school (Camden schools),329,POINT(-0.073245 51.477919),listed-building-outline,471360,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB693.pdf,,II,,,, +listed-building-outline,,42102803,2021-12-08,,"MULTIPOLYGON (((-0.094772 51.503324,-0.094769 51.503320,-0.094776 51.503320,-0.094776 51.503322,-0.094772 51.503324)))",Mosaic roundel at Octavia House,329,POINT(-0.094773 51.503321),listed-building-outline,506590,2009-12-24,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkNL1.pdf,,II,,,, +listed-building-outline,,42102804,2021-12-08,,"MULTIPOLYGON (((-0.088471 51.464336,-0.088366 51.464376,-0.088241 51.464291,-0.088225 51.464233,-0.087971 51.463976,-0.088144 51.463927,-0.088187 51.463969,-0.088135 51.463989,-0.088193 51.464080,-0.088306 51.464036,-0.088362 51.464092,-0.088393 51.464080,-0.088498 51.464185,-0.088385 51.464228,-0.088471 51.464336)))",The Platanes (now king's college hall),329,POINT(-0.088262 51.464151),listed-building-outline,507126,2009-10-28,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkNL2.pdf,,II,,,, +listed-building-outline,,42102805,2021-12-08,,"MULTIPOLYGON (((-0.051207 51.463174,-0.051150 51.463194,-0.050974 51.463078,-0.050968 51.463038,-0.051046 51.463040,-0.051067 51.463027,-0.051048 51.462984,-0.051134 51.462979,-0.051230 51.463062,-0.051328 51.463093,-0.051282 51.463139,-0.051358 51.463169,-0.051275 51.463215,-0.051207 51.463174)))",Chapel of Nunhead cemetery,329,POINT(-0.051158 51.463098),listed-building-outline,471050,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB435.pdf,,II,,,, +listed-building-outline,,42102806,2021-12-08,,"MULTIPOLYGON (((-0.053197 51.463703,-0.053197 51.463703,-0.053198 51.463703,-0.053198 51.463703,-0.053197 51.463703)))","The Scottish martyrs memorial, Nunhead Cemetery",329,POINT(-0.053198 51.463703),listed-building-outline,471062,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB441.pdf,,II,,,, +listed-building-outline,,42102807,2021-12-08,,"MULTIPOLYGON (((-0.051655 51.461385,-0.051655 51.461384,-0.051656 51.461384,-0.051655 51.461385,-0.051655 51.461385)))","Stearns mausoleum, Nunhead Cemetery",329,POINT(-0.051655 51.461384),listed-building-outline,471061,1998-09-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB441.pdf,,II,,,, +listed-building-outline,,42102808,2021-12-08,,"MULTIPOLYGON (((-0.067985 51.479373,-0.068036 51.479281,-0.068039 51.479282,-0.067985 51.479373)))",Wall and gateposts to number 116,329,POINT(-0.068020 51.479312),listed-building-outline,471179,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB536.pdf,,II,,,, +listed-building-outline,,42102809,2021-12-08,,"MULTIPOLYGON (((-0.083405 51.473936,-0.083389 51.473830,-0.083211 51.473830,-0.083141 51.473886,-0.083121 51.473892,-0.083067 51.473897,-0.083066 51.473911,-0.083102 51.474407,-0.083104 51.474467,-0.083064 51.473911,-0.083065 51.473896,-0.083140 51.473885,-0.083211 51.473829,-0.083390 51.473829,-0.083405 51.473936)))",Forecourt wall and railings to number 29 (Southwark council strategic services),329,POINT(-0.083125 51.474075),listed-building-outline,471183,1972-09-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB539.pdf,,II,,,, +listed-building-outline,,42102810,2021-12-08,,"MULTIPOLYGON (((-0.084726 51.475532,-0.084617 51.475561,-0.084347 51.475181,-0.084443 51.475153,-0.084570 51.475191,-0.084563 51.475230,-0.084637 51.475361,-0.084765 51.475476,-0.084726 51.475532)),((-0.084436 51.475119,-0.084320 51.475139,-0.084219 51.474976,-0.084155 51.474987,-0.084140 51.474951,-0.084232 51.474948,-0.084147 51.474761,-0.084364 51.474729,-0.084375 51.474754,-0.084309 51.474766,-0.084370 51.474907,-0.084421 51.474899,-0.084435 51.474931,-0.084383 51.474941,-0.084414 51.475010,-0.084398 51.475037,-0.084446 51.475058,-0.084414 51.475069,-0.084436 51.475119)))","St Gile’s hospital, administrative block with attached ward block",329,POINT(-0.084431 51.475145),listed-building-outline,471277,1993-04-15,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB618.pdf,,II,,,, +listed-building-outline,,42102811,2021-12-08,,"MULTIPOLYGON (((-0.085286 51.475973,-0.085308 51.475947,-0.085211 51.475799,-0.085108 51.475674,-0.084986 51.475548,-0.084950 51.475507,-0.084882 51.475421,-0.084857 51.475427,-0.084852 51.475426,-0.084837 51.475418,-0.084679 51.475211,-0.084680 51.475197,-0.084694 51.475188,-0.084635 51.475103,-0.084697 51.475189,-0.084682 51.475211,-0.084838 51.475417,-0.084883 51.475419,-0.084952 51.475507,-0.085110 51.475673,-0.085213 51.475799,-0.085308 51.475940,-0.085313 51.475959,-0.085286 51.475973)),((-0.084530 51.474909,-0.084475 51.474782,-0.084437 51.474671,-0.084484 51.474802,-0.084530 51.474909)),((-0.084574 51.474989,-0.084538 51.474927,-0.084530 51.474909,-0.084568 51.474979,-0.084574 51.474989)),((-0.084603 51.475044,-0.084588 51.475018,-0.084574 51.474989,-0.084583 51.475006,-0.084603 51.475044)),((-0.084603 51.475044,-0.084637 51.475103,-0.084609 51.475056,-0.084603 51.475044)))",Wall and gates fronting St Gile’s hospital administrative and ward blocks,329,POINT(-0.084975 51.475533),listed-building-outline,471278,1993-04-15,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB619.pdf,,II,,,, +listed-building-outline,,42102812,2021-12-08,,"MULTIPOLYGON (((-0.058517 51.493857,-0.058619 51.493819,-0.058720 51.493838,-0.058727 51.493875,-0.058694 51.493889,-0.058900 51.494084,-0.058937 51.494076,-0.058918 51.494040,-0.059206 51.493979,-0.059248 51.494055,-0.058756 51.494171,-0.058555 51.493979,-0.058512 51.493998,-0.058455 51.493946,-0.058569 51.493905,-0.058517 51.493857)),((-0.058241 51.494309,-0.058075 51.494229,-0.058151 51.494140,-0.058260 51.494143,-0.058409 51.494096,-0.058416 51.494051,-0.058521 51.494017,-0.058643 51.494185,-0.058343 51.494273,-0.058278 51.494326,-0.058241 51.494309)),((-0.058068 51.494152,-0.057976 51.494182,-0.057943 51.494144,-0.058112 51.494089,-0.058129 51.494106,-0.058054 51.494136,-0.058068 51.494152)))",Southwark Park school,329,POINT(-0.058585 51.494089),listed-building-outline,1414020,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB674.pdf,,II,,,, +listed-building-outline,,42102813,2021-12-08,,"MULTIPOLYGON (((-0.091831 51.495197,-0.091459 51.495284,-0.091207 51.495092,-0.091420 51.494883,-0.091574 51.494909,-0.091807 51.494948,-0.091831 51.495197)))",Geoffrey Chaucer school,329,POINT(-0.091545 51.495081),listed-building-outline,470997,1993-03-30,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SwarkLB374.pdf,,II,,,, +listed-building-outline,,42102814,2021-12-08,,"MULTIPOLYGON (((-0.099725 51.496103,-0.099521 51.496104,-0.099521 51.496058,-0.099499 51.496058,-0.099358 51.496058,-0.099362 51.496383,-0.099162 51.496383,-0.099164 51.496328,-0.099140 51.496328,-0.099155 51.496093,-0.099119 51.496093,-0.099119 51.496062,-0.099001 51.496062,-0.099002 51.496107,-0.098802 51.496108,-0.098774 51.495699,-0.098796 51.495699,-0.098796 51.495654,-0.098885 51.495653,-0.098879 51.495594,-0.099155 51.495592,-0.099155 51.495387,-0.099133 51.495387,-0.099152 51.495243,-0.099358 51.495242,-0.099363 51.495591,-0.099522 51.495590,-0.099524 51.495513,-0.099722 51.495513,-0.099725 51.496103),(-0.099499 51.496058,-0.099543 51.495610,-0.099363 51.495611,-0.099358 51.495654,-0.099155 51.495655,-0.099155 51.495612,-0.098904 51.495613,-0.098906 51.495653,-0.098995 51.495653,-0.099022 51.496045,-0.099119 51.496045,-0.099149 51.495963,-0.099367 51.495961,-0.099380 51.496041,-0.099499 51.496058)),((-0.098812 51.496202,-0.098796 51.496180,-0.098798 51.496173,-0.098813 51.496176,-0.098812 51.496202)),((-0.098823 51.496224,-0.098866 51.496262,-0.098844 51.496244,-0.098823 51.496224)),((-0.098812 51.496202,-0.098816 51.496208,-0.098819 51.496217,-0.098812 51.496204,-0.098812 51.496202)),((-0.098887 51.496214,-0.098902 51.496222,-0.098909 51.496227,-0.098900 51.496222,-0.098887 51.496214)),((-0.099070 51.496182,-0.099069 51.496189,-0.099064 51.496207,-0.099070 51.496182)),((-0.098885 51.496169,-0.098881 51.496174,-0.098875 51.496185,-0.098879 51.496176,-0.098885 51.496169)),((-0.099070 51.496182,-0.099072 51.496161,-0.099072 51.496167,-0.099070 51.496182)),((-0.099003 51.496194,-0.099001 51.496201,-0.098998 51.496206,-0.099003 51.496194)),((-0.098956 51.496273,-0.098943 51.496275,-0.098935 51.496275,-0.098956 51.496273)),((-0.098959 51.496232,-0.098946 51.496234,-0.098939 51.496234,-0.098959 51.496232)),((-0.098998 51.496206,-0.098995 51.496210,-0.098990 51.496216,-0.098998 51.496206)),((-0.098987 51.496268,-0.098974 51.496271,-0.098970 51.496272,-0.098987 51.496268)),((-0.098912 51.496151,-0.098918 51.496150,-0.098928 51.496149,-0.098912 51.496151)),((-0.098875 51.496185,-0.098875 51.496198,-0.098875 51.496193,-0.098875 51.496185)),((-0.098902 51.496156,-0.098890 51.496165,-0.098885 51.496169,-0.098891 51.496164,-0.098902 51.496156)),((-0.098906 51.496154,-0.098912 51.496151,-0.098902 51.496156,-0.098906 51.496154)),((-0.098990 51.496216,-0.098984 51.496220,-0.098980 51.496223,-0.098990 51.496216)),((-0.098970 51.496272,-0.098966 51.496272,-0.098956 51.496273,-0.098970 51.496272)),((-0.098973 51.496227,-0.098965 51.496230,-0.098959 51.496232,-0.098973 51.496227)),((-0.099040 51.496243,-0.099044 51.496237,-0.099057 51.496222,-0.099040 51.496243)))",Metro Central Heights,329,POINT(-0.099272 51.495830),listed-building-outline,1405570,2013-07-08,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/LBMCH.pdf,,II,,,, +listed-building-outline,,42102815,2021-12-08,,"MULTIPOLYGON (((-0.104408 51.502542,-0.104100 51.502539,-0.104102 51.502436,-0.104411 51.502438,-0.104408 51.502542)))",Former Sons of Temperance Friendly Society Building,329,POINT(-0.104256 51.502489),listed-building-outline,1416122,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/fstfsb.pdf,,II,,,, +listed-building-outline,,42102816,2021-12-08,,"MULTIPOLYGON (((-0.108636 51.498134,-0.108501 51.498070,-0.108586 51.497978,-0.109114 51.498239,-0.108649 51.498296,-0.108355 51.498168,-0.108492 51.498078,-0.108542 51.498103,-0.108459 51.498124,-0.108577 51.498181,-0.108636 51.498134),(-0.108848 51.498206,-0.108723 51.498161,-0.108652 51.498218,-0.108663 51.498225,-0.108848 51.498206)))",Archbishop's House and Cathedral House,329,POINT(-0.108706 51.498165),listed-building-outline,1418437,2014-02-25,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/ABH.pdf,,II,,,, +listed-building-outline,,42102817,2021-12-08,,"MULTIPOLYGON (((-0.094302 51.504241,-0.094194 51.504222,-0.093573 51.504061,-0.093678 51.503922,-0.094406 51.504104,-0.094302 51.504241)))",Roman Catholic Church of the Most Precious Blood,329,POINT(-0.093990 51.504084),listed-building-outline,1418445,2014-04-17,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/CMPB.pdf,,II,,,, +listed-building-outline,,42102818,2021-12-08,,"MULTIPOLYGON (((-0.050901 51.495035,-0.050763 51.494924,-0.051391 51.494642,-0.051463 51.494701,-0.050982 51.494931,-0.051034 51.494972,-0.050901 51.495035)))",Swedish Seamen's Mission,329,POINT(-0.051087 51.494839),listed-building-outline,1420139,2014-12-16,geography,,,II,,,, +listed-building-outline,,42102819,2021-12-08,,"MULTIPOLYGON (((-0.097405 51.474692,-0.097353 51.474746,-0.097279 51.474717,-0.097255 51.474740,-0.097465 51.474823,-0.097282 51.475003,-0.097084 51.474920,-0.097034 51.474968,-0.096866 51.474900,-0.097064 51.474698,-0.097304 51.474638,-0.097405 51.474692)))",Sacred Heart Roman Catholic Church,329,POINT(-0.097180 51.474825),listed-building-outline,1422505,2015-04-01,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SacredHeart.pdf,,II,,,, +listed-building-outline,,42102820,2021-12-08,,"MULTIPOLYGON (((-0.085065 51.451092,-0.085051 51.451082,-0.085065 51.451074,-0.085079 51.451084,-0.085065 51.451092)))",Stone plaque originally affised to the village lock up,329,POINT(-0.085065 51.451083),listed-building-outline,1423384,2015-03-06,geography,,,II,,,, +listed-building-outline,,42102821,2021-12-08,,"MULTIPOLYGON (((-0.090611 51.504583,-0.090511 51.504544,-0.090584 51.504489,-0.090664 51.504531,-0.090611 51.504583)))",,329,POINT(-0.090591 51.504537),listed-building-outline,1423541,2015-01-07,geography,,,II,,,, +listed-building-outline,,42102822,2021-12-08,,"MULTIPOLYGON (((-0.085951 51.451888,-0.085785 51.451771,-0.085936 51.451684,-0.085971 51.451709,-0.086180 51.451576,-0.086325 51.451677,-0.085951 51.451888)))",St Barnabas Parish Hall,329,POINT(-0.086055 51.451734),listed-building-outline,1424955,2015-04-13,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/StatutorylistdescriptionStBarnabusParishHall23DulwichVillage.pdf,,II,,,, +listed-building-outline,,42102823,2021-12-08,,"MULTIPOLYGON (((-0.071546 51.500060,-0.071449 51.500066,-0.071451 51.500127,-0.071347 51.500128,-0.071359 51.499994,-0.071578 51.499994,-0.071591 51.500060,-0.071546 51.500060)),((-0.071245 51.499895,-0.072054 51.499895,-0.072094 51.499873,-0.072059 51.499898,-0.071245 51.499895)),((-0.072351 51.500043,-0.072343 51.500030,-0.072091 51.499878,-0.072353 51.500028,-0.072351 51.500043)),((-0.071957 51.500194,-0.071777 51.500230,-0.071638 51.500228,-0.071779 51.500224,-0.071957 51.500194)),((-0.072045 51.500184,-0.072256 51.500143,-0.072352 51.500056,-0.072262 51.500148,-0.072045 51.500184)),((-0.071575 51.500224,-0.071461 51.500215,-0.071574 51.500217,-0.071575 51.500224)))",Presbytery and boundary wall to the Roman Catholic church of the Most Holy Trinity,329,POINT(-0.071546 51.500050),listed-building-outline,1426592,2015-04-27,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/,,II,,,, +listed-building-outline,,42102824,2021-12-08,,"MULTIPOLYGON (((-0.050851 51.496896,-0.051014 51.496814,-0.050592 51.496488,-0.050760 51.496402,-0.051194 51.496744,-0.051239 51.496721,-0.051296 51.496766,-0.051119 51.496868,-0.051143 51.496886,-0.050881 51.497016,-0.050847 51.497021,-0.050648 51.496861,-0.050707 51.496831,-0.050804 51.496919,-0.050851 51.496896)))",Former Dock Manager's Office and 1-14 Dock Offices,329,POINT(-0.050925 51.496720),listed-building-outline,508047,2010-09-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/Slb_dock_office.pdf,,II,,,, +listed-building-outline,,42102825,2021-12-08,,"MULTIPOLYGON (((-0.032516 51.493431,-0.032502 51.493434,-0.032469 51.493361,-0.032482 51.493360,-0.032516 51.493431)))",Parish Boundary Stone,329,POINT(-0.032493 51.493397),listed-building-outline,203483,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/Slb_st_Geo_Whf.pdf,,II,,,, +listed-building-outline,,42102826,2021-12-08,,"MULTIPOLYGON (((-0.082927 51.473677,-0.081819 51.473645,-0.081818 51.473635,-0.082926 51.473668,-0.082927 51.473677)))",Railings along pavement to the front of Nos 30-34,329,POINT(-0.082363 51.473656),listed-building-outline,508102,2010-03-09,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/Listed%20Buildings/Slb_peckhamrd_railings.pdf,,II,,,, +listed-building-outline,,42102827,2021-12-08,,"MULTIPOLYGON (((-0.090817 51.498113,-0.090650 51.498178,-0.090519 51.498070,-0.090595 51.498027,-0.090817 51.498113)))",The Roebuck Public House,329,POINT(-0.090655 51.498101),listed-building-outline,508137,2010-03-09,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/Listed%20Buildings/SLB_GtDoverSt_Roebuck.pdf,,II,,,, +listed-building-outline,,42102828,2021-12-08,,"MULTIPOLYGON (((-0.095622 51.502879,-0.095490 51.502844,-0.095550 51.502742,-0.095690 51.502768,-0.095622 51.502879)))",Lord Clyde Public House,329,POINT(-0.095589 51.502808),listed-building-outline,508136,2010-03-09,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/Listed%20Buildings/SLB_clennanst_lrdclyd.pdf,,II,,,, +listed-building-outline,,42102829,2021-12-08,,"MULTIPOLYGON (((-0.091565 51.500657,-0.091596 51.500691,-0.091373 51.500757,-0.091346 51.500722,-0.091565 51.500657)))",,329,POINT(-0.091470 51.500707),listed-building-outline,508049,2010-05-11,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/Listed%20Buildings/SLB_Tabardst_19.pdf,,II,,,, +listed-building-outline,,42102830,2021-12-08,,"MULTIPOLYGON (((-0.105339 51.506107,-0.105404 51.506114,-0.105414 51.506356,-0.105223 51.506363,-0.105222 51.506330,-0.104916 51.506307,-0.104912 51.506180,-0.105174 51.506156,-0.105173 51.506116,-0.105339 51.506107)))",Christ Church,329,POINT(-0.105195 51.506237),listed-building-outline,508925,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/Listed%20Buildings/SLB_christch.pdf,,II,,,, +listed-building-outline,,42102831,2021-12-08,,"MULTIPOLYGON (((-0.080891 51.502123,-0.082674 51.502559,-0.084526 51.503195,-0.082668 51.502569,-0.080891 51.502123)))","Railway viaduct arches, CRUCIFIX LANE",329,POINT(-0.082710 51.502604),listed-building-outline,1400290,2011-06-07,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/Listed%20Buildings/Crucifixlnarch.pdf,,II,,,, +listed-building-outline,,42102832,2021-12-08,,"MULTIPOLYGON (((-0.052280 51.458299,-0.051979 51.458303,-0.051962 51.458096,-0.052100 51.458091,-0.052102 51.458114,-0.052164 51.458112,-0.052172 51.458160,-0.052269 51.458157,-0.052280 51.458299)))",The Ivy House public,329,POINT(-0.052109 51.458208),listed-building-outline,1408530,2012-04-20,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/Listed%20Buildings/Ivyhse.pdf,,II,,,, +listed-building-outline,,42102833,2021-12-08,,"MULTIPOLYGON (((-0.088325 51.478070,-0.088065 51.478131,-0.087963 51.477962,-0.088227 51.477897,-0.088325 51.478070)))","Dining and Assembly Hall, Brunswick Park Primary School",329,POINT(-0.088145 51.478015),listed-building-outline,1400750,2011-05-04,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/Listed%20Buildings/Brunswickprk.pdf,,II,,,, +listed-building-outline,,42102835,2021-12-08,,"MULTIPOLYGON (((-0.034846 51.500283,-0.034861 51.500274,-0.034875 51.500283,-0.034860 51.500292,-0.034846 51.500283)))",Rotherhithe (Holy Trinity) War Memorial,329,POINT(-0.034861 51.500283),listed-building-outline,1448374,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/Rotherhithe(HolyTrinity)WarMemorial.pdf,,II,,,, +listed-building-outline,,42102836,2021-12-08,,"MULTIPOLYGON (((-0.054149 51.501199,-0.054168 51.501186,-0.054186 51.501199,-0.054167 51.501212,-0.054149 51.501199)))",Rotherhithe (St Mary the Virgin) War Memorial,329,POINT(-0.054167 51.501199),listed-building-outline,1448388,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/Rotherhithe(StMaryTheVirgin)WarMemorial.pdf,,II,,,, +listed-building-outline,,42102837,2021-12-08,,"MULTIPOLYGON (((-0.080746 51.458864,-0.080755 51.458858,-0.080763 51.458864,-0.080754 51.458869,-0.080746 51.458864)))",Southwark Military Hospital War Memorial Cross,329,POINT(-0.080755 51.458864),listed-building-outline,1444313,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/SouthwarkMilitaryHospitalWarMemorial.PDF,,II,,,, +listed-building-outline,,42102838,2021-12-08,,"MULTIPOLYGON (((-0.091144 51.504163,-0.091359 51.504199,-0.091332 51.504248,-0.091231 51.504234,-0.091117 51.504204,-0.091144 51.504163)))",54 Borough High Street,329,POINT(-0.091240 51.504206),listed-building-outline,1428761,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/Statutorylistdescription54BoroughHighStreet.pdf,,II,,,, +listed-building-outline,,42102839,2021-12-08,,"MULTIPOLYGON (((-0.059219 51.451185,-0.059239 51.451174,-0.059257 51.451185,-0.059238 51.451196,-0.059219 51.451185)))",Camberwell Old Cemetery War Memorial,329,POINT(-0.059238 51.451185),listed-building-outline,1448367,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/StatutoryListDescriptionCamberwellOldCemeteryWarMemorial.pdf,,II,,,, +listed-building-outline,,42102840,2021-12-08,,"MULTIPOLYGON (((-0.067478 51.443102,-0.067504 51.443086,-0.067530 51.443103,-0.067503 51.443119,-0.067478 51.443102)))",Dulwich (St Peter's) War Memorial,329,POINT(-0.067504 51.443103),listed-building-outline,1448357,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/Dulwich(StPeter's)WarMemorial.pdf,,II,,,, +listed-building-outline,,42102841,2021-12-08,,"MULTIPOLYGON (((-0.078397 51.432337,-0.078403 51.432334,-0.078409 51.432337,-0.078403 51.432341,-0.078397 51.432337)))",Dulwich (St Stephen's) War Memorial,329,POINT(-0.078403 51.432337),listed-building-outline,1448360,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/Dulwich(StStephen's)WarMemorial.pdf,,II,,,, +listed-building-outline,,42102842,2021-12-08,,"MULTIPOLYGON (((-0.074847 51.458646,-0.074567 51.458631,-0.074581 51.458578,-0.074860 51.458599,-0.074847 51.458646)))",Former David Greig shop at 65 Lordship Lane,329,POINT(-0.074711 51.458613),listed-building-outline,1445116,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/Statutorylistdescription65LordshipLane.pdf,,II,,,, +listed-building-outline,,42102843,2021-12-08,,"MULTIPOLYGON (((-0.085491 51.481759,-0.085506 51.481751,-0.085521 51.481759,-0.085506 51.481767,-0.085491 51.481759)))",Burgess Park War Memorial,329,POINT(-0.085506 51.481759),listed-building-outline,1444716,,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/StatutorylistdescriptionBurgessParkWarMemorial.pdf,,II,,,, +listed-building-outline,,42102844,2021-12-08,,"MULTIPOLYGON (((-0.074001 51.501351,-0.074127 51.501210,-0.074356 51.501317,-0.074543 51.501161,-0.075025 51.501426,-0.074803 51.501561,-0.075028 51.501711,-0.075201 51.501486,-0.075292 51.501514,-0.075322 51.501478,-0.075431 51.501522,-0.075430 51.501547,-0.075134 51.501930,-0.075075 51.501936,-0.074576 51.501663,-0.074600 51.501622,-0.074562 51.501517,-0.074478 51.501518,-0.074441 51.501457,-0.074222 51.501474,-0.074001 51.501351),(-0.074532 51.501414,-0.074627 51.501466,-0.074666 51.501437,-0.074571 51.501385,-0.074532 51.501414)),((-0.073080 51.501376,-0.073195 51.501295,-0.073099 51.501224,-0.073303 51.501137,-0.074139 51.501535,-0.074114 51.501573,-0.074147 51.501677,-0.074238 51.501678,-0.074252 51.501735,-0.074490 51.501721,-0.074644 51.501824,-0.074366 51.502059,-0.074181 51.501980,-0.074297 51.501859,-0.074098 51.501736,-0.073959 51.501821,-0.073984 51.501834,-0.073945 51.501876,-0.073809 51.501819,-0.073841 51.501760,-0.073777 51.501712,-0.073906 51.501622,-0.073362 51.501354,-0.073223 51.501452,-0.073080 51.501376)),((-0.074196 51.501174,-0.074315 51.501077,-0.074482 51.501153,-0.074278 51.501139,-0.074225 51.501188,-0.074196 51.501174)),((-0.073524 51.501566,-0.073542 51.501553,-0.073780 51.501683,-0.073761 51.501695,-0.073524 51.501566)),((-0.073308 51.501452,-0.073326 51.501441,-0.073504 51.501537,-0.073486 51.501551,-0.073308 51.501452)),((-0.074004 51.501872,-0.074020 51.501859,-0.074173 51.501929,-0.074158 51.501943,-0.074004 51.501872)),((-0.074317 51.501589,-0.074344 51.501580,-0.074392 51.501610,-0.074368 51.501620,-0.074317 51.501589)))",The Circle,329,POINT(-0.074330 51.501547),listed-building-outline,1447515,2018-01-31,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/TheCircle.pdf,,II,,,, +listed-building-outline,,42102845,2021-12-08,,"MULTIPOLYGON (((-0.089108 51.503008,-0.088975 51.502974,-0.088985 51.502964,-0.089108 51.503008)))",Guy's Hospital War Memorial,329,POINT(-0.089023 51.502982),listed-building-outline,1448371,2019-01-03,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/1448371.pdf,,II,,,, +listed-building-outline,,42102846,2021-12-08,,"MULTIPOLYGON (((-0.108321 51.497410,-0.108301 51.497377,-0.108398 51.497353,-0.108434 51.497407,-0.108321 51.497410)))","East Lodge, Southwark",329,POINT(-0.108368 51.497386),listed-building-outline,1474430,2021-04-16,geography,https://geo.southwark.gov.uk/connect/analyst/Includes/ListedBuildings/East_Lodge_Barkham_Terrace.pdf,,II,,,, +listed-building-outline,,42102847,2021-12-08,,"MULTIPOLYGON (((-0.072319 51.502010,-0.072224 51.502097,-0.072176 51.502077,-0.072147 51.502103,-0.071912 51.501989,-0.072028 51.501889,-0.072203 51.501964,-0.072205 51.501921,-0.072301 51.501962,-0.072270 51.501990,-0.072319 51.502010)))","22 Shad Thames, London",329,POINT(-0.072122 51.501998),listed-building-outline,1475166,2021-05-21,geography,https://services.historicengland.org.uk/webfiles/GetFiles.aspx?av=98C21522-668E-464F-B138-84EF404204E3&cn=736DB284-E465-403E-B5DD-0B164BBF708D,,II,,,, diff --git a/tests/data/listed-building/dataset/locally-listed-building-hoisted.csv b/tests/data/listed-building/dataset/locally-listed-building-hoisted.csv new file mode 100644 index 00000000..66fd95c7 --- /dev/null +++ b/tests/data/listed-building/dataset/locally-listed-building-hoisted.csv @@ -0,0 +1,2 @@ +dataset,end_date,entity,entry_date,geojson,geometry,name,organisation_entity,point,prefix,reference,start_date,typology,documentation_url,listed_building_grade,locally_listed_building,wikidata,wikipedia +locally-listed-building,,41100447,2021-12-23,,"MULTIPOLYGON (((1.025641 51.354931,1.025825 51.355022,1.025780 51.355060,1.025370 51.354861,1.025418 51.354823,1.025641 51.354931)))","The Yard Cottage, The Street,, Barham, CT4 6NY",,POINT(1.025598 51.354941),locally-listed-building,,,geography,,,,, diff --git a/tests/integration/test_package_dataset.py b/tests/integration/test_package_dataset.py index a37b5d74..eae00fec 100644 --- a/tests/integration/test_package_dataset.py +++ b/tests/integration/test_package_dataset.py @@ -107,9 +107,7 @@ def test_package_dataset( output_dir = tmp_path.joinpath("dataset_output") output_dir.mkdir() sqlite_path = output_dir.joinpath(f"{dataset_name}.sqlite3") - sqlite_path.touch() csv_path = output_dir.joinpath(f"{dataset_name}.csv") - csv_path.touch() # Call api = DigitalLandApi( @@ -119,11 +117,54 @@ def test_package_dataset( specification_dir=str(specification_path), ) api.dataset_create_cmd(input_paths, sqlite_path, organisation_path) - api.dataset_dump_cmd(sqlite_path, csv_path) # Assert with csv_path.open() as actual, expected_csv_result.open() as expected: - actual_dict_list = list(DictReader(actual)) - expected_dict_list = list(DictReader(expected)) - assert actual_dict_list == expected_dict_list + actual_dict_reader = DictReader(actual) + expected_dict_reader = DictReader(expected) + assert actual_dict_reader.fieldnames == expected_dict_reader.fieldnames + assert list(actual_dict_reader) == list(expected_dict_reader) + + +@pytest.mark.parametrize( + "dataset_name", + [ + "listed-building-grade", + "listed-building-outline", + "locally-listed-building", + ], +) +def test_package_dataset_hoisted( + # Parametrize args + dataset_name, + # Runtime filesystem dependencies generated by previous steps + pipeline_dir, + # Test assertion directories + dataset_dir, + # Pytest fixtures + tmp_path, +): + # Setup + expected_hoisted_csv_result = dataset_dir.joinpath(f"{dataset_name}-hoisted.csv") + + csv_path = dataset_dir.joinpath(f"{dataset_name}.csv") + + output_dir = tmp_path.joinpath("dataset_output") + output_dir.mkdir() + hoisted_csv_path = output_dir.joinpath(f"{dataset_name}-hoisted.csv") + + # Call + api = DigitalLandApi( + debug=False, + dataset=dataset_name, + pipeline_dir=pipeline_dir, + specification_dir=str(specification_path), + ) + api.dataset_dump_hoisted_cmd(csv_path, hoisted_csv_path) + + with hoisted_csv_path.open() as actual, expected_hoisted_csv_result.open() as expected: + actual_dict_reader = DictReader(actual) + expected_dict_reader = DictReader(expected) + assert actual_dict_reader.fieldnames == expected_dict_reader.fieldnames + assert list(actual_dict_reader) == list(expected_dict_reader)